/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito Sans", sans-serif;
    --nav-font: "Raleway", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #031119; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #d43d5c; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #eeeeee; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #000000; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #444444; /* The default color of the main navmenu links */
    --nav-hover-color: #d43d5c; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #d43d5c; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #ffffff;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--heading-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid var(--accent-color);
        border-top-color: var(--surface-color);
        animation: php-email-form-loading 1s linear infinite;
    }

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

    .header .header-container {
        background: var(--surface-color);
        border-radius: 50px;
        padding: 0px 25px 0px 30px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }

    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-height: 80px;
            margin-right: 8px;
        }

        .header .logo h1 {
            font-size: 20px;
            margin: 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--heading-color);
        }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        color: #fff;
        background: var(--accent-color);
        font-size: 14px;
        padding: 8px 20px;
        margin: 0 0 0 30px;
        border-radius: 50px;
        transition: 0.3s;
    }

        .header .btn-getstarted:hover,
        .header .btn-getstarted:focus:hover {
            color: #fff;
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

@media (max-width: 1200px) {
    .header {
        padding-top: 10px;
    }

        .header .header-container {
            margin-left: 10px;
            margin-right: 10px;
        }

        .header .logo {
            order: 1;
        }

        .header .btn-getstarted {
            order: 2;
            margin: 0 10px 0 0;
            padding: 6px 15px;
        }

        .header .navmenu {
            order: 3;
        }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            padding: 18px 15px;
            font-size: 16px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu li:last-child a {
            padding-right: 0;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-hover-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

    .footer .footer-top {
        padding-top: 50px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .footer .footer-about .logo {
        line-height: 1;
        margin-bottom: 25px;
    }

        .footer .footer-about .logo img {
            max-height: 40px;
            margin-right: 6px;
        }

        .footer .footer-about .logo span {
            color: var(--heading-color);
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: var(--heading-font);
        }

    .footer .footer-about p {
        font-size: 14px;
        font-family: var(--heading-font);
    }

    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 16px;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        margin-right: 10px;
        transition: 0.3s;
    }

        .footer .social-links a:hover {
            color: var(--accent-color);
            border-color: var(--accent-color);
        }

    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-links ul i {
                padding-right: 2px;
                font-size: 12px;
                line-height: 0;
            }

            .footer .footer-links ul li {
                padding: 10px 0;
                display: flex;
                align-items: center;
            }

                .footer .footer-links ul li:first-child {
                    padding-top: 0;
                }

            .footer .footer-links ul a {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                display: inline-block;
                line-height: 1;
            }

                .footer .footer-links ul a:hover {
                    color: var(--accent-color);
                }

    .footer .footer-contact p {
        margin-bottom: 5px;
    }

    .footer .copyright {
        padding-top: 25px;
        padding-bottom: 25px;
        background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    }

        .footer .copyright p {
            margin-bottom: 0;
        }

    .footer .credits {
        margin-top: 6px;
        font-size: 13px;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #preloader div {
        width: 4px;
        height: 40px;
        background-color: var(--accent-color);
        margin: 0 4px;
    }

        #preloader div:nth-child(1) {
            animation: animate-preloader 1s ease-in-out -0.45s infinite;
        }

        #preloader div:nth-child(2) {
            animation: animate-preloader 1s ease-in-out -0.3s infinite;
        }

        #preloader div:nth-child(3) {
            animation: animate-preloader 1s ease-in-out -0.15s infinite;
        }

        #preloader div:nth-child(4) {
            animation: animate-preloader 1s infinite;
        }

@keyframes animate-preloader {

    0%, 100% {
        transform: scaleY(0.3);
    }

    50% {
        transform: scaleY(1);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

    .page-title::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
        z-index: 1;
    }

    .page-title h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        justify-content: center;
        padding: 0;
        margin: 0;
        font-size: 16px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 50%);
            }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
        line-height: 1px;
        margin: 0;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        position: relative;
    }

        .section-title h2::after {
            content: "";
            width: 120px;
            height: 1px;
            display: inline-block;
            background: var(--accent-color);
            margin: 4px 10px;
        }

    .section-title div {
        color: var(--heading-color);
        margin: 0;
        margin: 0;
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: var(--heading-font);
    }

/*--------------------------------------------------------------
# Hero-4 Section
--------------------------------------------------------------*/

.hero-4 {
    padding: 120px 0 60px 0;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    /* Video background */
    .hero-4 .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-4 video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Dark overlay over video */
    .hero-4 .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.80); /* dark semi-transparent layer */
        z-index: 2;
    }

    /* Content wrapper */
    .hero-4 .hero-content {
        width: 100%;
        position: relative;
        z-index: 3;
        color: #fff; /* All text white */
    }

    /* Headings and paragraph */
    .hero-4 h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        color: #fff;
    }

    .hero-4 h5 {
        color: #fff;
        font-weight: 500;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .hero-4 p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        color: #fff;
        line-height: 1.6;
    }

    /* Buttons */
    /* CTA buttons container */
    .hero-4 .cta-button {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

        .hero-4 .cta-button .btn {
            flex: 1 1 auto;
            min-width: 180px;
            text-align: center;
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

    /* Explore Button - white background, colored text */
    .hero-4 .btn.explore-btn {
        background: #fff !important;
        color: #d43d5c !important;
        border: 1px solid #fff !important;
    }

        .hero-4 .btn.explore-btn:hover {
            background: transparent !important;
            color: #fff !important;
        }

    /* Get Started Button - transparent with white border */
    .hero-4 .btn.get-started-btn {
        background: transparent !important;
        color: #fff !important;
        border: 1px solid #fff !important;
    }

        .hero-4 .btn.get-started-btn:hover {
            background: #fff !important;
            color: #d43d5c !important; 
            transform: translateY(-2px);
        }

@media (max-width: 576px) {
    .hero-4 .cta-button {
        flex-direction: column;
        gap:0;
    }

        .hero-4 .cta-button .btn {
            width: 100%;
            max-width: 250px;
        }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-4 .hero-content {
        padding-top: 40px;
    }
    .hero-4 {
        padding: 80px 0;
        min-height: 80vh;
    }
}

@media (max-width: 768px) {
    .hero-4 .hero-content {
        padding-top: 30px;
    }
    .hero-4 h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-4 p {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero-4 h1 {
        font-size: 2rem;
    }

    .hero-4 .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin:10px;
    }
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    padding-top: 20px;
    padding-bottom: 60px;
}

    .stats .stats-overview {
        height: 100%;
        padding: 50px;
    }

        .stats .stats-overview h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

            .stats .stats-overview h3::after {
                content: "";
                position: absolute;
                display: block;
                width: 60px;
                height: 4px;
                background: var(--accent-color);
                bottom: 0;
                left: 0;
                right: 0;
                margin: 0 auto;
            }

@media (min-width: 992px) {
    .stats .stats-overview h3::after {
        margin: 0;
    }
}

.stats .stats-overview p {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.7;
    margin-bottom: 0;
}

.stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stats .stats-card {
    background: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .stats .stats-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .stats .stats-card .stats-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
    }

        .stats .stats-card .stats-icon i {
            font-size: 24px;
            color: var(--accent-color);
        }

    .stats .stats-card .stats-content {
        flex-grow: 1;
    }

        .stats .stats-card .stats-content .stats-number {
            display: flex;
            align-items: baseline;
        }

            .stats .stats-card .stats-content .stats-number .purecounter {
                font-size: 32px;
                font-weight: 700;
                color: var(--heading-color);
                margin: 0;
                line-height: 1;
            }

            .stats .stats-card .stats-content .stats-number .plus {
                font-size: 24px;
                font-weight: 700;
                color: var(--accent-color);
                margin-left: 2px;
            }

        .stats .stats-card .stats-content p {
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin: 5px 0 0;
            font-weight: 500;
            font-family: var(--heading-font);
        }

@media (max-width: 768px) {
    .stats .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stats .stats-card {
        padding: 15px;
    }

        .stats .stats-card .stats-icon {
            width: 50px;
            height: 50px;
        }

            .stats .stats-card .stats-icon i {
                font-size: 20px;
            }

        .stats .stats-card .stats-content .stats-number .purecounter {
            font-size: 28px;
        }

        .stats .stats-card .stats-content .stats-number .plus {
            font-size: 20px;
        }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    padding-top: 50px;
    padding-bottom: 50px;
}

    .about .about-image {
        border-radius: 8px;
        overflow: hidden;
    }

        .about .about-image .experience-badge {
            position: absolute;
            bottom: 30px;
            right: -30px;
            background: var(--accent-color);
            color: var(--contrast-color);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            min-width: 140px;
        }

            .about .about-image .experience-badge .years {
                font-size: 2.5rem;
                font-weight: 700;
                line-height: 1;
                display: block;
                margin-bottom: 5px;
            }

            .about .about-image .experience-badge .text {
                font-size: 0.9rem;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

@media (max-width: 768px) {
    .about .about-image .experience-badge {
        right: 0;
        bottom: 20px;
        padding: 1rem;
        min-width: 120px;
    }

        .about .about-image .experience-badge .years {
            font-size: 2rem;
        }
}

.about .about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .about .about-content h2 {
        font-size: 1.8rem;
    }
}

.about .about-content .lead {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.about .about-content p {
    margin-bottom: 1rem;
}

.about .about-content .feature-item {
    padding: 1.25rem;
    background-color: var(--surface-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

    .about .about-content .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .about .about-content .feature-item i {
        font-size: 1.75rem;
        color: var(--accent-color);
        margin-bottom: 0.75rem;
        display: block;
    }

    .about .about-content .feature-item h5 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .about .about-content .feature-item p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

.about .about-content .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    color: #fff;
}

    .about .about-content .btn-primary:hover {
        background-color: color-mix(in srgb, var(--accent-color), black 10%);
        border-color: color-mix(in srgb, var(--accent-color), black 10%);
    }

.about .testimonial-section {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

    .about .testimonial-section .testimonial-intro h3 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        font-weight: 700;
    }

    .about .testimonial-section .testimonial-intro p {
        margin-bottom: 1.5rem;
    }

    .about .testimonial-section .testimonial-intro .swiper-nav-buttons {
        display: flex;
        gap: 10px;
    }

        .about .testimonial-section .testimonial-intro .swiper-nav-buttons button {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--surface-color);
            border: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .about .testimonial-section .testimonial-intro .swiper-nav-buttons button:hover {
                background-color: var(--accent-color);
                border-color: var(--accent-color);
                color: var(--contrast-color);
            }

            .about .testimonial-section .testimonial-intro .swiper-nav-buttons button i {
                font-size: 1.25rem;
            }

    .about .testimonial-section .testimonial-slider {
        overflow: hidden;
    }

        .about .testimonial-section .testimonial-slider .swiper-wrapper {
            height: auto !important;
        }

    .about .testimonial-section .testimonial-item {
        background-color: var(--surface-color);
        border-radius: 10px;
        padding: 2rem;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        height: 100%;
    }

        .about .testimonial-section .testimonial-item .rating {
            color: #ffc107;
            font-size: 1rem;
        }

        .about .testimonial-section .testimonial-item p {
            font-style: italic;
            margin-bottom: 0;
            font-size: 1rem;
            line-height: 1.6;
        }

        .about .testimonial-section .testimonial-item .client-info .client-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .about .testimonial-section .testimonial-item .client-info h6 {
            font-weight: 600;
        }

        .about .testimonial-section .testimonial-item .client-info span {
            font-size: 0.85rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding-bottom: 50px;
}

    .hero-3 .badge-wrapper .d-inline-flex {
        padding: 0.5rem 0.75rem;
        border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero-3 .badge-wrapper .d-inline-flex .icon-circle {
            height: 24px;
            width: 24px;
            border-radius: 50%;
            background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .hero-3 .badge-wrapper .d-inline-flex .icon-circle i {
                font-size: 0.875rem;
                color: var(--heading-color);
            }

        .hero-3 .badge-wrapper .d-inline-flex .badge-text {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--heading-color);
        }

@media (max-width: 767.98px) {
    .hero-3 .badge-wrapper .d-inline-flex .badge-text {
        font-size: 0.75rem;
    }
}

.hero-3 .hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
    .hero-3 .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-3 .hero-title {
        font-size: 1.75rem;
    }
}

.hero-3 .hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--default-color);
    margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
    .hero-3 .hero-description {
        font-size: 1rem;
    }
}

.hero-3 .cta-wrapper .btn-primary {
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

    .hero-3 .cta-wrapper .btn-primary:hover {
        background-color: color-mix(in srgb, var(--accent-color), #000 10%);
        border-color: color-mix(in srgb, var(--accent-color), #000 10%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.hero-3 .hero-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .hero-3 .hero-image:hover {
        transform: translateY(-5px);
    }

    .hero-3 .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

.hero-3 .feature-boxes {
    margin-top: 3rem;
}

    .hero-3 .feature-boxes .feature-box {
        padding: 1.5rem;
        border-radius: 12px;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
        height: 100%;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

@media (min-width: 576px) {
    .hero-3 .feature-boxes .feature-box {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
}

.hero-3 .feature-boxes .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero-3 .feature-boxes .feature-box .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .hero-3 .feature-boxes .feature-box .feature-icon i {
        font-size: 1.75rem;
        color: var(--heading-color);
    }

.hero-3 .feature-boxes .feature-box .feature-content {
    flex: 1;
}

    .hero-3 .feature-boxes .feature-box .feature-content .feature-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--heading-color);
        margin-bottom: 0.75rem;
    }

    .hero-3 .feature-boxes .feature-box .feature-content .feature-text {
        font-size: 0.95rem;
        color: var(--default-color);
        margin-bottom: 0;
    }

@media (max-width: 767.98px) {
    .hero-3 .feature-boxes .feature-box {
        padding: 1.25rem;
    }

        .hero-3 .feature-boxes .feature-box .feature-icon {
            width: 50px;
            height: 50px;
        }

            .hero-3 .feature-boxes .feature-box .feature-icon i {
                font-size: 1.5rem;
            }

        .hero-3 .feature-boxes .feature-box .feature-title {
            font-size: 1.125rem;
        }

        .hero-3 .feature-boxes .feature-box .feature-text {
            font-size: 0.875rem;
        }
}

/*--------------------------------------------------------------
# Tmcfeatures Section
--------------------------------------------------------------*/
.tmcfeatures {
    padding-top: 50px;
    padding-bottom: 20px;
}

    .tmcfeatures .service-header {
        margin-bottom: 60px;
    }

        .tmcfeatures .service-header .service-intro .service-heading {
            font-size: 48px;
            margin-bottom: 0;
            font-weight: 700;
            line-height: 1.2;
            color: var(--heading-color);
        }

            .tmcfeatures .service-header .service-intro .service-heading div {
                display: block;
                position: relative;
            }

            .tmcfeatures .service-header .service-intro .service-heading span {
                display: block;
                color: var(--accent-color);
            }

@media (max-width: 992px) {
    .tmcfeatures .service-header .service-intro .service-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .tmcfeatures .service-header .service-intro .service-heading {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

.tmcfeatures .service-header .service-summary p {
    margin-bottom: 25px;
    color: var(--default-color);
}

.tmcfeatures .service-header .service-summary .service-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .tmcfeatures .service-header .service-summary .service-btn i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .tmcfeatures .service-header .service-summary .service-btn:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
        color: #fff;
    }

        .tmcfeatures .service-header .service-summary .service-btn:hover i {
            transform: translateX(5px);
        }

@media (max-width: 992px) {
    .tmcfeatures .service-header .service-summary {
        margin-top: 30px;
    }
}

.tmcfeatures .service-card {
    padding: 40px 40px 40px 40px;
    margin-bottom: 30px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

    .tmcfeatures .service-card .service-icon {
        margin-bottom: 25px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        width: 64px;
        height: 64px;
    }

        .tmcfeatures .service-card .service-icon i {
            font-size: 32px;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

    .tmcfeatures .service-card h3 {
        font-size: 28px;
        margin-bottom: 15px;
        font-weight: 700;
    }

        .tmcfeatures .service-card h3 a {
            color: var(--heading-color);
            transition: color 0.3s ease;
        }

            .tmcfeatures .service-card h3 a span {
                display: block;
            }

            .tmcfeatures .service-card h3 a:hover {
                color: var(--accent-color);
            }

    .tmcfeatures .service-card p {
        color: var(--default-color);
        transition: color 0.3s ease;
        margin-bottom: 0;
    }

    .tmcfeatures .service-card .card-action {
        position: absolute;
        top: 0;
        right: 0;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--accent-color);
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

        .tmcfeatures .service-card .card-action i {
            font-size: 24px;
            color: var(--contrast-color);
            transition: transform 0.3s ease;
        }

        .tmcfeatures .service-card .card-action:hover i {
            transform: rotate(45deg);
        }

    .tmcfeatures .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-color);
        clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .tmcfeatures .service-card:hover {
        border-color: transparent;
    }

        .tmcfeatures .service-card:hover::before {
            opacity: 1;
            visibility: visible;
            background-color: var(--surface-color);
        }

        .tmcfeatures .service-card:hover h3 a {
            color: var(--accent-color);
        }

            .tmcfeatures .service-card:hover h3 a:hover {
                color: var(--accent-color);
            }

        .tmcfeatures .service-card:hover p {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

        .tmcfeatures .service-card:hover .card-action {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .tmcfeatures .service-card:hover .service-icon i {
            transform: scale(1.1);
        }

@media (max-width: 768px) {
    .tmcfeatures .service-card {
        padding: 150px 25px 25px;
    }

        .tmcfeatures .service-card h3 {
            font-size: 24px;
        }

        .tmcfeatures .service-card .service-icon {
            position: absolute;
            top: 40px;
            left: 25px;
        }
}

@media (max-width: 768px) {
    .tmcfeatures {
        padding: 70px 0 50px;
    }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps {
    padding-top: 20px;
    padding-bottom: 60px;
}

    .steps .steps-wrapper {
        position: relative;
        padding: 20px 0;
    }

        .steps .steps-wrapper::before {
            content: "";
            position: absolute;
            width: 2px;
            background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

    .steps .step-item {
        margin-bottom: 50px;
        width: 100%;
        position: relative;
    }

        .steps .step-item:last-child {
            margin-bottom: 0;
        }

        .steps .step-item:nth-child(even) .step-content {
            flex-direction: row-reverse;
        }

    .steps .step-content {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .steps .step-icon {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        background-color: var(--surface-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
        transition: all 0.3s ease-in-out;
    }

        .steps .step-icon i {
            font-size: 32px;
            color: var(--accent-color);
            transition: transform 0.3s ease-in-out;
        }

    .steps .step-info {
        flex: 1;
        background-color: var(--surface-color);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease-in-out;
    }

        .steps .step-info:hover {
            transform: translateY(-5px);
        }

    .steps .step-number {
        display: inline-block;
        font-family: var(--heading-font);
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .steps h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
        color: var(--heading-color);
    }

    .steps p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

@media (max-width: 991px) {
    .steps .steps-wrapper::before {
        left: 25px;
    }

    .steps .step-item .step-content {
        flex-direction: row !important;
    }

    .steps .step-icon {
        width: 60px;
        height: 60px;
    }

        .steps .step-icon i {
            font-size: 24px;
        }

    .steps .step-info {
        padding: 20px;
    }

    .steps h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .steps .step-content {
        gap: 20px;
    }

    .steps .step-icon {
        width: 50px;
        height: 50px;
    }

        .steps .step-icon i {
            font-size: 20px;
        }

    .steps .step-info {
        padding: 15px;
    }

    .steps h3 {
        font-size: 1.2rem;
    }

    .steps p {
        font-size: 0.95rem;
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding-top: 50px;
    position: relative;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-radius: 1rem;
    overflow: hidden;
    padding-bottom: 50px;
}

    .call-to-action .badge {
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        color: var(--accent-color);
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        font-weight: 500;
        border-radius: 2rem;
    }

    .call-to-action h2 {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        font-weight: 700;
        line-height: 1.2;
        margin: 0;
    }

    .call-to-action p {
        font-size: 1.125rem;
        line-height: 1.6;
        opacity: 0.9;
    }

    .call-to-action .features .feature-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background-color: var(--surface-color);
        border-radius: 0.5rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

        .call-to-action .features .feature-item:hover {
            transform: translateY(-2px);
        }

        .call-to-action .features .feature-item i {
            color: var(--accent-color);
            font-size: 1.25rem;
        }

        .call-to-action .features .feature-item span {
            font-weight: 500;
        }

    .call-to-action .cta-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-weight: 500;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }

        .call-to-action .cta-buttons .btn.btn-primary {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: #fff;
        }

            .call-to-action .cta-buttons .btn.btn-primary:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
                border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
                transform: translateY(-2px);
            }

        .call-to-action .cta-buttons .btn.btn-outline {
            border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
            color: var(--accent-color);
        }

            .call-to-action .cta-buttons .btn.btn-outline:hover {
                background-color: var(--accent-color);
                border-color: var(--accent-color);
                color: #fff;
                transform: translateY(-2px);
            }

    .call-to-action .content-right {
        flex-shrink: 0;
        max-width: 100%;
        width: 450px;
    }

        .call-to-action .content-right img {
            width: 100%;
            height: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .call-to-action .content-right .floating-card {
            position: absolute;
            bottom: 2rem;
            right: -1rem;
            background: var(--surface-color);
            padding: 1rem;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: float 3s ease-in-out infinite;
        }

            .call-to-action .content-right .floating-card .card-icon {
                width: 3rem;
                height: 3rem;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
                border-radius: 0.75rem;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .call-to-action .content-right .floating-card .card-icon i {
                    color: var(--accent-color);
                    font-size: 1.5rem;
                }

            .call-to-action .content-right .floating-card .card-content {
                display: flex;
                flex-direction: column;
            }

                .call-to-action .content-right .floating-card .card-content .stats-number {
                    font-size: 1.25rem;
                    font-weight: 700;
                    color: var(--accent-color);
                }

                .call-to-action .content-right .floating-card .card-content .stats-text {
                    font-size: 0.875rem;
                    opacity: 0.8;
                }

    .call-to-action .decoration {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
        z-index: 0;
    }

        .call-to-action .decoration .circle-1,
        .call-to-action .decoration .circle-2 {
            position: absolute;
            border-radius: 50%;
            background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        }

        .call-to-action .decoration .circle-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            opacity: 0.5;
        }

        .call-to-action .decoration .circle-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            opacity: 0.3;
        }

@media (max-width: 991.98px) {
    .call-to-action {
        padding: 2rem;
    }

        .call-to-action .content-right {
            width: 100%;
            margin-top: 2rem;
        }

            .call-to-action .content-right .floating-card {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: -3rem;
                margin-right: 1rem;
                z-index: 1;
            }
}


@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Tmctestimonials Section
--------------------------------------------------------------*/
.tmctestimonials .section-header {
    margin-bottom: 50px;
}

.tmctestimonials .testimonials-carousel,
.tmctestimonials .testimonials-slider {
    overflow: hidden;
}

.tmctestimonials .testimonial-item {
    text-align: center;
}

    .tmctestimonials .testimonial-item .testimonial-img {
        width: 120px;
        border-radius: 50%;
        border: 4px solid var(--background-color);
        margin: 0 auto;
    }

    .tmctestimonials .testimonial-item h3 {
        font-size: 20px;
        font-weight: bold;
        margin: 10px 0 5px 0;
    }

    .tmctestimonials .testimonial-item h4 {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin: 0 0 15px 0;
    }

    .tmctestimonials .testimonial-item .stars {
        margin-bottom: 15px;
    }

        .tmctestimonials .testimonial-item .stars i {
            color: #ffc107;
            margin: 0 1px;
        }

    .tmctestimonials .testimonial-item .quote-icon-left,
    .tmctestimonials .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 26px;
        line-height: 0;
    }

    .tmctestimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .tmctestimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .tmctestimonials .testimonial-item p {
        font-style: italic;
        margin: 0 auto 15px auto;
    }

.tmctestimonials .swiper-wrapper {
    height: auto;
}

.tmctestimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .tmctestimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        opacity: 1;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    }

    .tmctestimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

@media (min-width: 992px) {
    .tmctestimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Tmcpricing Section
--------------------------------------------------------------*/
.tmcpricing {
    --card-border-radius: 20px;
}

    .tmcpricing .row {
        justify-content: center;
    }

    .tmcpricing .pricing-card {
        height: 100%;
        background: var(--surface-color);
        border-radius: var(--card-border-radius);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        position: relative;
        transition: all 0.4s;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .tmcpricing .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .tmcpricing .pricing-card.popular {
            border: 2px solid var(--accent-color);
        }

            .tmcpricing .pricing-card.popular .plan-cta .btn-plan {
                background-color: var(--accent-color);
                color: #fff;
            }

                .tmcpricing .pricing-card.popular .plan-cta .btn-plan:hover {
                    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
                }

        .tmcpricing .pricing-card .popular-tag {
            position: absolute;
            top: 20px;
            right: -35px;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            font-size: 13px;
            font-weight: 600;
            padding: 8px 40px;
            transform: rotate(45deg);
        }

    .tmcpricing .plan-header {
        padding: 30px 30px 20px;
        text-align: center;
    }

        .tmcpricing .plan-header .plan-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        }

            .tmcpricing .plan-header .plan-icon i {
                font-size: 28px;
                color: var(--accent-color);
            }

        .tmcpricing .plan-header h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .tmcpricing .plan-header p {
            font-size: 15px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

    .tmcpricing .plan-pricing {
        text-align: center;
        padding: 10px 30px 20px;
        position: relative;
    }

        .tmcpricing .plan-pricing .currency {
            font-size: 24px;
            vertical-align: top;
            line-height: 1;
            color: var(--heading-color);
            font-weight: 600;
        }

        .tmcpricing .plan-pricing .amount {
            font-size: 60px;
            font-weight: 700;
            color: var(--heading-color);
            line-height: 1;
        }

        .tmcpricing .plan-pricing .period {
            font-size: 16px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

    .tmcpricing .plan-features {
        padding: 20px 30px;
        flex: 1;
    }

        .tmcpricing .plan-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .tmcpricing .plan-features ul li {
                padding: 12px 0;
                font-size: 15px;
                display: flex;
                align-items: center;
                gap: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
            }

                .tmcpricing .plan-features ul li.disabled {
                    color: color-mix(in srgb, var(--default-color), transparent 60%);
                }

                .tmcpricing .plan-features ul li i {
                    font-size: 18px;
                }

                    .tmcpricing .plan-features ul li i.bi-check-circle-fill {
                        color: var(--accent-color);
                    }

                    .tmcpricing .plan-features ul li i.bi-x-circle-fill {
                        color: color-mix(in srgb, var(--default-color), transparent 60%);
                    }

    .tmcpricing .plan-cta {
        padding: 10px 30px 30px;
        text-align: center;
    }

        .tmcpricing .plan-cta .btn-plan {
            display: inline-block;
            width: 100%;
            padding: 14px 32px;
            background-color: color-mix(in srgb, var(--default-color), transparent 95%);
            color: var(--default-color);
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
        }

            .tmcpricing .plan-cta .btn-plan:hover {
                background-color: color-mix(in srgb, var(--default-color), transparent 80%);
            }

@media (max-width: 992px) {
    .tmcpricing .pricing-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .tmcpricing .plan-pricing .amount {
        font-size: 48px;
    }

    .tmcpricing .plan-header {
        padding: 25px 20px 15px;
    }

    .tmcpricing .plan-features,
    .tmcpricing .plan-pricing,
    .tmcpricing .plan-cta {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/*--------------------------------------------------------------
# Tmcfaq Section
--------------------------------------------------------------*/
.tmcfaq .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.tmcfaq .faq-description {
    font-size: 1rem;
    color: var(--default-color);
    margin-bottom: 2rem;
}

.tmcfaq .faq-arrow {
    color: var(--accent-color);
}

.tmcfaq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

    .tmcfaq .faq-container .faq-item:last-child {
        margin-bottom: 0;
    }

    .tmcfaq .faq-container .faq-item h3 {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        margin: 0 30px 0 0;
        transition: 0.3s;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

        .tmcfaq .faq-container .faq-item h3 .num {
            color: var(--accent-color);
            padding-right: 5px;
        }

        .tmcfaq .faq-container .faq-item h3:hover {
            color: var(--accent-color);
        }

    .tmcfaq .faq-container .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.3s ease-in-out;
        visibility: hidden;
        opacity: 0;
    }

        .tmcfaq .faq-container .faq-item .faq-content p {
            margin-bottom: 0;
            overflow: hidden;
        }

    .tmcfaq .faq-container .faq-item .faq-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 16px;
        line-height: 0;
        transition: 0.3s;
        cursor: pointer;
    }

        .tmcfaq .faq-container .faq-item .faq-toggle:hover {
            color: var(--accent-color);
        }

.tmcfaq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.tmcfaq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.tmcfaq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
    background-color: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .contact .contact-info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .contact .contact-info-box .icon-box {
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        color: var(--accent-color);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .contact .contact-info-box .icon-box i {
            font-size: 24px;
        }

    .contact .contact-info-box .info-content h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .contact .contact-info-box .info-content p {
        margin-bottom: 5px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 15px;
        line-height: 1.5;
    }

        .contact .contact-info-box .info-content p:last-child {
            margin-bottom: 0;
        }

.contact .map-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

    .contact .map-section iframe {
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
    }

.contact .form-container-overlap {
    position: relative;
    margin-top: -150px;
    margin-bottom: 60px;
    z-index: 10;
}

.contact .contact-form-wrapper {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

    .contact .contact-form-wrapper h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }

        .contact .contact-form-wrapper h2:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

    .contact .contact-form-wrapper .form-group {
        margin-bottom: 20px;
    }

        .contact .contact-form-wrapper .form-group .input-with-icon {
            position: relative;
        }

            .contact .contact-form-wrapper .form-group .input-with-icon i {
                position: absolute;
                left: 15px;
                top: 50%;
                transform: translateY(-50%);
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                font-size: 18px;
                z-index: 10;
            }

                .contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
                    top: 28px;
                }

            .contact .contact-form-wrapper .form-group .input-with-icon textarea + i {
                top: 25px;
                transform: none;
            }

            .contact .contact-form-wrapper .form-group .input-with-icon .form-control {
                border-radius: 8px;
                padding: 12px 15px 12px 45px;
                height: 3.5rem;
                color: var(--default-color);
                background-color: var(--surface-color);
                font-size: 15px;
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            }

                .contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
                    border-color: var(--accent-color);
                    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
                }

                .contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                }

            .contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
                height: 180px;
                resize: none;
                padding-top: 15px;
            }

    .contact .contact-form-wrapper .btn-submit {
        background-color: var(--accent-color);
        border: none;
        color: var(--contrast-color);
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
    }

        .contact .contact-form-wrapper .btn-submit:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
        }

        .contact .contact-form-wrapper .btn-submit:active {
            transform: translateY(0);
            box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .contact .contact-form-wrapper .loading,
    .contact .contact-form-wrapper .error-message,
    .contact .contact-form-wrapper .sent-message {
        margin-top: 10px;
        margin-bottom: 20px;
    }

@media (max-width: 992px) {
    .contact .form-container-overlap {
        margin-top: -120px;
    }

    .contact .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact .contact-info-box {
        margin-bottom: 20px;
    }

    .contact .form-container-overlap {
        margin-top: -100px;
    }

    .contact .contact-form-wrapper {
        padding: 25px;
    }

        .contact .contact-form-wrapper h2 {
            font-size: 24px;
        }

    .contact .map-section {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .contact .form-container-overlap {
        margin-top: -80px;
    }

    .contact .contact-form-wrapper {
        padding: 20px;
    }

    .contact .btn-submit {
        width: 100%;
    }

    .contact .map-section {
        height: 400px;
    }
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
    width: 100%;
    min-height: 50vh;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
    background-size: cover;
}

    .hero-2 h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 300;
    }

        .hero-2 h1 span {
            color: var(--accent-color);
        }

    .hero-2 p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 5px 0 30px 0;
        font-size: 20px;
        font-weight: 400;
    }

    .hero-2 .btn-get-started {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-family: var(--heading-font);
        font-weight: 400;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px;
        border-radius: 50px;
        transition: 0.5s;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

        .hero-2 .btn-get-started:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }

    .hero-2 .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-left: 25px;
        color: var(--default-color);
        font-weight: 500;
    }

        .hero-2 .btn-watch-video i {
            color: var(--accent-color);
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-right: 8px;
        }

        .hero-2 .btn-watch-video:hover {
            color: var(--accent-color);
        }

            .hero-2 .btn-watch-video:hover i {
                color: color-mix(in srgb, var(--accent-color), transparent 15%);
            }

    .hero-2 .animated {
        margin-bottom: 60px;
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@media (min-width: 992px) {
    .hero-2 .animated {
        max-width: 45%;
    }
}

@media (max-width: 991px) {
    .hero-2 .animated {
        max-width: 60%;
    }
}

@media (max-width: 575px) {
    .hero-2 .animated {
        max-width: 80%;
    }
}

@media (max-width: 640px) {
    .hero-2 h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-2 p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero-2 .btn-get-started,
    .hero-2 .btn-watch-video {
        font-size: 13px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Consultation Form Section
--------------------------------------------------------------*/
.consultation-form .cta-wrapper {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

    .consultation-form .cta-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--accent-color), color-mix(in srgb, var(--accent-color), #fff 30%));
    }

@media (max-width: 992px) {
    .consultation-form .cta-wrapper {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .consultation-form .cta-wrapper {
        padding: 30px 20px;
    }
}

.consultation-form .cta-content {
    padding-right: 30px;
}

@media (max-width: 992px) {
    .consultation-form .cta-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.consultation-form .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .consultation-form .cta-content h2 {
        font-size: 2rem;
    }
}

.consultation-form .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--default-color);
}

.consultation-form .cta-content .cta-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

    .consultation-form .cta-content .cta-stats .stat-item .number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--accent-color);
        display: block;
        line-height: 1.2;
    }

@media (max-width: 768px) {
    .consultation-form .cta-content .cta-stats .stat-item .number {
        font-size: 2rem;
    }
}

.consultation-form .cta-content .cta-stats .stat-item .text {
    font-size: 0.9rem;
    color: var(--default-color);
}

.consultation-form .cta-form {
    background-color: color-mix(in srgb, var(--surface-color), #000 3%);
    border-radius: 10px;
    padding: 30px;
}

    .consultation-form .cta-form h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--heading-color);
    }

@media (max-width: 768px) {
    .consultation-form .cta-form h3 {
        font-size: 1.5rem;
    }
}

.consultation-form .cta-form p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--default-color);
}

.consultation-form .cta-form .form-control {
    height: 50px;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    background-color: var(--surface-color);
    color: var(--default-color);
    font-size: 14px;
}

    .consultation-form .cta-form .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: none;
    }

    .consultation-form .cta-form .form-control::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 70%);
    }

.consultation-form .cta-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.consultation-form .cta-form button[type=submit] {
    background-color: var(--accent-color);
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

    .consultation-form .cta-form button[type=submit]:hover {
        background-color: color-mix(in srgb, var(--accent-color), #000 10%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

/*--------------------------------------------------------------
# Pricingheader Section
--------------------------------------------------------------*/
.pricingheader {
    width: 100%;
    min-height: 30vh;
    position: relative;
    padding: 120px 0 20px 0;
    display: flex;
    align-items: center;
    background-size: cover;
}

    .pricingheader h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 300;
    }

        .pricingheader h1 span {
            color: var(--accent-color);
        }

    .pricingheader p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 5px 0 30px 0;
        font-size: 20px;
        font-weight: 400;
    }

    .pricingheader .btn-get-started {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-family: var(--heading-font);
        font-weight: 400;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px;
        border-radius: 50px;
        transition: 0.5s;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

        .pricingheader .btn-get-started:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }

    .pricingheader .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-left: 25px;
        color: var(--default-color);
        font-weight: 500;
    }

        .pricingheader .btn-watch-video i {
            color: var(--accent-color);
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-right: 8px;
        }

        .pricingheader .btn-watch-video:hover {
            color: var(--accent-color);
        }

            .pricingheader .btn-watch-video:hover i {
                color: color-mix(in srgb, var(--accent-color), transparent 15%);
            }

    .pricingheader .animated {
        margin-bottom: 60px;
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@media (min-width: 992px) {
    .pricingheader .animated {
        max-width: 45%;
    }
}

@media (max-width: 991px) {
    .pricingheader .animated {
        max-width: 60%;
    }
}

@media (max-width: 575px) {
    .pricingheader .animated {
        max-width: 80%;
    }
}

@media (max-width: 640px) {
    .pricingheader h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .pricingheader p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .pricingheader .btn-get-started,
    .pricingheader .btn-watch-video {
        font-size: 13px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
    --card-border-radius: 20px;
}

    .pricing .row {
        justify-content: center;
    }

    .pricing .pricing-card {
        height: 100%;
        background: var(--surface-color);
        border-radius: var(--card-border-radius);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        position: relative;
        transition: all 0.4s;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .pricing .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .pricing .pricing-card.popular {
            border: 2px solid var(--accent-color);
        }

            .pricing .pricing-card.popular .plan-cta .btn-plan {
                background-color: var(--accent-color);
                color: #fff;
            }

                .pricing .pricing-card.popular .plan-cta .btn-plan:hover {
                    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
                }

        .pricing .pricing-card .popular-tag {
            position: absolute;
            top: 20px;
            right: -35px;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            font-size: 13px;
            font-weight: 600;
            padding: 8px 40px;
            transform: rotate(45deg);
        }

    .pricing .plan-header {
        padding: 30px 30px 20px;
        text-align: center;
    }

        .pricing .plan-header .plan-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        }

            .pricing .plan-header .plan-icon i {
                font-size: 28px;
                color: var(--accent-color);
            }

        .pricing .plan-header h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .pricing .plan-header p {
            font-size: 15px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

    .pricing .plan-pricing {
        text-align: center;
        padding: 10px 30px 20px;
        position: relative;
    }

        .pricing .plan-pricing .currency {
            font-size: 24px;
            vertical-align: top;
            line-height: 1;
            color: var(--heading-color);
            font-weight: 600;
        }

        .pricing .plan-pricing .amount {
            font-size: 60px;
            font-weight: 700;
            color: var(--heading-color);
            line-height: 1;
        }

        .pricing .plan-pricing .period {
            font-size: 16px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

    .pricing .plan-features {
        padding: 20px 30px;
        flex: 1;
    }

        .pricing .plan-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .pricing .plan-features ul li {
                padding: 12px 0;
                font-size: 15px;
                display: flex;
                align-items: center;
                gap: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
            }

                .pricing .plan-features ul li.disabled {
                    color: color-mix(in srgb, var(--default-color), transparent 60%);
                }

                .pricing .plan-features ul li i {
                    font-size: 18px;
                }

                    .pricing .plan-features ul li i.bi-check-circle-fill {
                        color: var(--accent-color);
                    }

                    .pricing .plan-features ul li i.bi-x-circle-fill {
                        color: color-mix(in srgb, var(--default-color), transparent 60%);
                    }

    .pricing .plan-cta {
        padding: 10px 30px 30px;
        text-align: center;
    }

        .pricing .plan-cta .btn-plan {
            display: inline-block;
            width: 100%;
            padding: 14px 32px;
            background-color: color-mix(in srgb, var(--default-color), transparent 95%);
            color: #fff;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
        }

            .pricing .plan-cta .btn-plan:hover {
                background-color: color-mix(in srgb, var(--default-color), transparent 80%);
            }

@media (max-width: 992px) {
    .pricing .pricing-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .pricing .plan-pricing .amount {
        font-size: 48px;
    }

    .pricing .plan-header {
        padding: 25px 20px 15px;
    }

    .pricing .plan-features,
    .pricing .plan-pricing,
    .pricing .plan-cta {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/*--------------------------------------------------------------
# Pricingdtsl1 Section
--------------------------------------------------------------*/
.pricingdtsl1 {
    padding-top: 10px;
    width: 100%;
    min-height: 20vh;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    padding-bottom: 26px;
}

    .pricingdtsl1 h1 {
        margin: 0 0 48px 0;
        font-size: 58px;
        font-weight: 300;
    }

        .pricingdtsl1 h1 span {
            color: var(--accent-color);
        }

    .pricingdtsl1 p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 5px 0 30px 0;
        font-size: 20px;
        font-weight: 400;
    }

    .pricingdtsl1 .btn-get-started {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-family: var(--heading-font);
        font-weight: 400;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px;
        border-radius: 50px;
        transition: 0.5s;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

        .pricingdtsl1 .btn-get-started:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }

    .pricingdtsl1 .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-left: 25px;
        color: var(--default-color);
        font-weight: 500;
    }

        .pricingdtsl1 .btn-watch-video i {
            color: var(--accent-color);
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-right: 8px;
        }

        .pricingdtsl1 .btn-watch-video:hover {
            color: var(--accent-color);
        }

            .pricingdtsl1 .btn-watch-video:hover i {
                color: color-mix(in srgb, var(--accent-color), transparent 15%);
            }

    .pricingdtsl1 .animated {
        margin-bottom: 60px;
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@media (min-width: 992px) {
    .pricingdtsl1 .animated {
        max-width: 45%;
    }
}

@media (max-width: 991px) {
    .pricingdtsl1 .animated {
        max-width: 60%;
    }
}

@media (max-width: 575px) {
    .pricingdtsl1 .animated {
        max-width: 80%;
    }
}

@media (max-width: 640px) {
    .pricingdtsl1 h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .pricingdtsl1 p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .pricingdtsl1 .btn-get-started,
    .pricingdtsl1 .btn-watch-video {
        font-size: 13px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Pricingdtls2 Section
--------------------------------------------------------------*/
.pricingdtls2 {
    padding-top: 27px;
    width: 100%;
    min-height: 20vh;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    padding-bottom: 24px;
}

    .pricingdtls2 h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 300;
    }

        .pricingdtls2 h1 span {
            color: var(--accent-color);
        }

    .pricingdtls2 p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 5px 0 30px 0;
        font-size: 20px;
        font-weight: 400;
    }

    .pricingdtls2 .btn-get-started {
        color: #fff;
        background: var(--accent-color);
        font-family: var(--heading-font);
        font-weight: 400;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px;
        border-radius: 50px;
        transition: 0.5s;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

        .pricingdtls2 .btn-get-started:hover {
            color: #fff;
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }

    .pricingdtls2 .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-left: 25px;
        color: var(--default-color);
        font-weight: 500;
    }

        .pricingdtls2 .btn-watch-video i {
            color: var(--accent-color);
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-right: 8px;
        }

        .pricingdtls2 .btn-watch-video:hover {
            color: var(--accent-color);
        }

            .pricingdtls2 .btn-watch-video:hover i {
                color: color-mix(in srgb, var(--accent-color), transparent 15%);
            }

    .pricingdtls2 .animated {
        margin-bottom: 60px;
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@media (min-width: 992px) {
    .pricingdtls2 .animated {
        max-width: 45%;
    }
}

@media (max-width: 991px) {
    .pricingdtls2 .animated {
        max-width: 60%;
    }
}

@media (max-width: 575px) {
    .pricingdtls2 .animated {
        max-width: 80%;
    }
}

@media (max-width: 640px) {
    .pricingdtls2 h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .pricingdtls2 p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .pricingdtls2 .btn-get-started,
    .pricingdtls2 .btn-watch-video {
        font-size: 13px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .about-intro {
    margin-bottom: 0px;
}

    .about-2 .about-intro h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 0px;
        background: var(--heading-color);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.1;
    }

@media (max-width: 768px) {
    .about-2 .about-intro h2 {
        font-size: 2.2rem;
    }
}

.about-2 .about-intro .lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
}

@media (max-width: 768px) {
    .about-2 .about-intro .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .about-2 .about-intro {
        margin-bottom: 10px;
    }
}

.about-2 .content-wrapper {
    position: relative;
}

.about-2 .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .about-2 .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.about-2 .stats-grid .stat-card {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 10px 10px;
    text-align: center;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .about-2 .stats-grid .stat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
        transition: left 0.6s ease;
    }

    .about-2 .stats-grid .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    }

        .about-2 .stats-grid .stat-card:hover::before {
            left: 100%;
        }

    .about-2 .stats-grid .stat-card .stat-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 25%));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
    }

        .about-2 .stats-grid .stat-card .stat-icon i {
            font-size: 26px;
            color: var(--contrast-color);
        }

    .about-2 .stats-grid .stat-card .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--heading-color);
        margin-bottom: 8px;
        line-height: 1;
    }

@media (max-width: 768px) {
    .about-2 .stats-grid .stat-card .stat-number {
        font-size: 2rem;
    }
}

.about-2 .stats-grid .stat-card .stat-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .about-2 .stats-grid .stat-card {
        padding: 25px 15px;
    }
}

.about-2 .mission-text {
    margin-bottom: 40px;
}

    .about-2 .mission-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        margin: 0;
        font-style: italic;
    }

@media (max-width: 768px) {
    .about-2 .mission-text p {
        font-size: 1rem;
    }
}

.about-2 .action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .about-2 .action-buttons .btn-primary,
    .about-2 .action-buttons .btn-outline {
        padding: 16px 32px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

@media (max-width: 576px) {

    .about-2 .action-buttons .btn-primary,
    .about-2 .action-buttons .btn-outline {
        flex: 1;
        justify-content: center;
        min-width: 160px;
    }
}

.about-2 .action-buttons .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

    .about-2 .action-buttons .btn-primary:hover {
        background: color-mix(in srgb, var(--accent-color), #000 20%);
        border-color: color-mix(in srgb, var(--accent-color), #000 20%);
        transform: translateY(-2px);
        color: var(--contrast-color);
    }

.about-2 .action-buttons .btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

    .about-2 .action-buttons .btn-outline:hover {
        background: var(--accent-color);
        color: var(--contrast-color);
        transform: translateY(-2px);
    }

.about-2 .image-stack {
    position: relative;
    height: 100px;
}

@media (max-width: 991px) {
    .about-2 .image-stack {
        margin-top: 60px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .about-2 .image-stack {
        height: 100px;
    }
}

.about-2 .image-stack .image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 70%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    z-index: 2;
}

    .about-2 .image-stack .image-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-2 .image-stack .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65%;
    height: 55%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 80%);
    border: 5px solid var(--surface-color);
    z-index: 3;
}

    .about-2 .image-stack .image-overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-2 .image-stack .floating-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

@media (max-width: 991px) {
    .about-2 .image-stack .floating-element {
        top: 80%;
        left: 80%;
    }
}

.about-2 .image-stack .floating-element .experience-badge {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    min-width: 120px;
    animation: float 6s ease-in-out infinite;
}

    .about-2 .image-stack .floating-element .experience-badge .number {
        display: block;
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--accent-color);
        line-height: 1;
        margin-bottom: 5px;
    }

    .about-2 .image-stack .floating-element .experience-badge .text {
        display: block;
        font-size: 0.8rem;
        color: var(--default-color);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

@media (max-width: 768px) {
    .about-2 .image-stack .floating-element .experience-badge {
        padding: 20px;
        min-width: 100px;
    }

        .about-2 .image-stack .floating-element .experience-badge .number {
            font-size: 1.8rem;
        }

        .about-2 .image-stack .floating-element .experience-badge .text {
            font-size: 0.7rem;
        }
}

@keyframes float {

    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-15px);
    }
}

@media (max-width: 991px) {
    .about-2 .row:last-child {
        flex-direction: column-reverse;
    }
}

/*--------------------------------------------------------------
# Comparison Table Section
--------------------------------------------------------------*/
.comparison-table {
    padding-top: 20px;
    margin: 30px 0;
    padding-bottom: 60px;
}

    .comparison-table .table-responsive {
        border-radius: 12px;
        background-color: var(--surface-color);
    }

    .comparison-table .table {
        margin-bottom: 0;
    }

        .comparison-table .table th,
        .comparison-table .table td {
            padding: 20px;
            text-align: center;
            vertical-align: middle;
            border-color: color-mix(in srgb, var(--default-color), transparent 90%);
            background-color: var(--surface-color);
            color: var(--default-color);
        }

            .comparison-table .table th:first-child,
            .comparison-table .table td:first-child {
                text-align: left;
            }

        .comparison-table .table th {
            border-top: none;
            background-color: var(--surface-color);
        }

        .comparison-table .table .features-column {
            min-width: 200px;
        }

            .comparison-table .table .features-column h5 {
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                font-size: 1rem;
                margin: 0;
            }

        .comparison-table .table .plan-column {
            min-width: 220px;
            position: relative;
        }

            .comparison-table .table .plan-column.popular {
                background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
            }

                .comparison-table .table .plan-column.popular .popular-badge {
                    border: 1px solid var(--accent-color);
                    color: var(--accent-color);
                    padding: 4px 15px;
                    border-radius: 20px;
                    font-size: 0.875rem;
                    font-weight: 500;
                    display: inline-block;
                    margin: 0 auto 15px auto;
                }

            .comparison-table .table .plan-column h4 {
                margin: 0 0 20px;
                font-size: 1.25rem;
            }

            .comparison-table .table .plan-column .btn {
                padding: 8px 24px;
                border-radius: 6px;
                font-weight: 500;
                transition: all 0.3s ease;
            }

                .comparison-table .table .plan-column .btn.btn-outline {
                    border: 2px solid var(--accent-color);
                    color: var(--accent-color);
                    background: transparent;
                }

                    .comparison-table .table .plan-column .btn.btn-outline:hover {
                        background-color: var(--accent-color);
                        color: var(--contrast-color);
                    }

                .comparison-table .table .plan-column .btn.btn-solid {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    border: 2px solid var(--accent-color);
                }

                    .comparison-table .table .plan-column .btn.btn-solid:hover {
                        background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
                        border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
                    }

        .comparison-table .table tbody tr:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
        }

        .comparison-table .table tbody tr td {
            font-size: 0.9375rem;
        }

            .comparison-table .table tbody tr td.feature-name {
                font-weight: 500;
            }

            .comparison-table .table tbody tr td .bi-check-lg {
                color: #28a745;
                font-size: 1.25rem;
            }

            .comparison-table .table tbody tr td .bi-x-lg {
                color: #dc3545;
                font-size: 1.25rem;
            }

@media (max-width: 991.98px) {
    .comparison-table .table .plan-column {
        min-width: 180px;
    }
}

@media (max-width: 767.98px) {
    .comparison-table .table-responsive {
        border-radius: 8px;
    }

    .comparison-table .table th,
    .comparison-table .table td {
        padding: 15px 10px;
    }

    .comparison-table .table .features-column {
        min-width: 140px;
    }

    .comparison-table .table .plan-column {
        min-width: 140px;
    }

        .comparison-table .table .plan-column h4 {
            font-size: 1.125rem;
        }

        .comparison-table .table .plan-column .btn {
            padding: 6px 16px;
            font-size: 0.875rem;
        }

    .comparison-table .table tbody tr td {
        font-size: 0.875rem;
    }
}
