
/* 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: "Raleway",  sans-serif;
  --nav-font: "Lato",  sans-serif; */
    --default-font: 'DM Sans';
    --heading-font: 'DM Sans';
    --nav-font: 'DM Sans';
}

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('DMSans-Regular.ttf') format('truetype'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    src: url('DMSans-Medium.ttf') format('truetype'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    src: url('DMSans-SemiBold.ttf') format('truetype'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: bold;
    src: url('DMSans-Bold.ttf') format('truetype'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* 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: #f8f8ff; /* Background color for the entire website, including individual sections */
    --default-color: #475569; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #1e293b; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #393186; /* 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: #ffffff; /* 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: #ffffff; /* 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: #475569; /* The default color of the main navmenu links */
    --nav-hover-color: #393186; /* 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: #475569; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #393186; /* 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: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #0d131f;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #1e293b;
    --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(--accent-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 {
    --surface-color: #1b2430;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 4px 0;
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-height: 80px;
            margin-right: 8px;
            /* transition: all 0.1s; */
        }

        .header .logo h1 {
            font-size: 30px;
            margin: 0;
            font-weight: 600;
            color: var(--heading-color);
        }

        .header .logo span {
            font-size: 34px;
            padding-left: 2px;
            color: var(--accent-color);
        }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-size: 14px;
        padding: 10px 30px;
        margin: 0;
        border-radius: 50px;
        transition: 0.3s;
    }

        .header .btn-getstarted:hover,
        .header .btn-getstarted:focus:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .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: 500;
            display: flex;
            align-items: center;
            justify-content: start;
            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);
            font-weight: 800;
        }

        .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: 60px 0 30px;
    position: relative;
}

    .footer .footer-top {
        padding-bottom: 40px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .footer .footer-info .logo {
        line-height: 1;
    }

        .footer .footer-info .logo span {
            color: var(--heading-color);
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 0.5px;
            font-family: var(--heading-font);
        }

    .footer .footer-info p {
        margin-bottom: 0;
        font-size: 14px;
        line-height: 1.6;
    }

    .footer .social-links {
        display: flex;
        gap: 12px;
    }

        .footer .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background-color: color-mix(in srgb, var(--default-color), transparent 95%);
            font-size: 16px;
            color: var(--default-color);
            transition: all 0.3s ease;
        }

            .footer .social-links a:hover {
                color: var(--contrast-color);
                background-color: var(--accent-color);
                transform: translateY(-3px);
            }

    .footer h4 {
        font-size: 16px;
        font-weight: 600;
        position: relative;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }

        .footer h4:after {
            content: "";
            position: absolute;
            display: block;
            width: 30px;
            height: 2px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }

    .footer h5 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .footer .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer .footer-links ul li {
            padding: 8px 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.2;
            transition: all 0.3s ease;
            position: relative;
        }

            .footer .footer-links ul a:hover {
                color: var(--accent-color);
                transform: translateX(5px);
            }

    .footer .footer-newsletter p {
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .footer .footer-newsletter form {
        margin-top: 25px;
    }

        .footer .footer-newsletter form .position-relative {
            display: flex;
            margin-bottom: 15px;
        }

        .footer .footer-newsletter form input[type=email] {
            height: 44px;
            border-radius: 8px;
            padding: 10px 15px;
            width: 100%;
            color: var(--default-color);
            background-color: var(--surface-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            font-size: 14px;
        }

            .footer .footer-newsletter form input[type=email]:focus {
                outline: none;
                border-color: var(--accent-color);
            }

            .footer .footer-newsletter form input[type=email]::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

        .footer .footer-newsletter form .btn-subscribe {
            position: absolute;
            right: 5px;
            top: 5px;
            bottom: 5px;
            border: 0;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            transition: 0.3s;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
        }

            .footer .footer-newsletter form .btn-subscribe:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
            }

            .footer .footer-newsletter form .btn-subscribe i {
                font-size: 18px;
            }

    .footer .footer-bottom {
        padding-top: 25px;
    }

        .footer .footer-bottom .copyright p {
            margin-bottom: 0;
            font-size: 13px;
        }

        .footer .footer-bottom .credits {
            padding-top: 5px;
        }

        .footer .footer-bottom .legal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: flex-end;
        }

@media (max-width: 767.98px) {
    .footer .footer-bottom .legal-links {
        justify-content: center;
        margin-bottom: 15px;
    }
}

.footer .footer-bottom .legal-links a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 13px;
    transition: color 0.3s ease;
}

    .footer .footer-bottom .legal-links a:hover {
        color: var(--accent-color);
    }

@media (max-width: 991.98px) {

    .footer .footer-links,
    .footer .footer-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .footer .trust-badges {
        text-align: left !important;
        margin-top: 20px;
    }

    .footer .copyright,
    .footer .credits {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        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;
    }

/*--------------------------------------------------------------
# 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 {
    text-align: center;
    padding: 20px 0;
}

    .page-title .breadcrumbs {
        margin-bottom: 1.5rem;
    }

        .page-title .breadcrumbs .breadcrumb {
            justify-content: center;
            margin: 0;
            padding: 0;
            background: none;
        }

            .page-title .breadcrumbs .breadcrumb .breadcrumb-item {
                font-size: 0.9rem;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
            }

                .page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
                    color: var(--accent-color);
                }

                .page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
                    color: inherit;
                    text-decoration: none;
                    transition: color 0.3s ease;
                }

                    .page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
                        color: var(--accent-color);
                    }

                    .page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
                        font-size: 0.9rem;
                        margin-right: 0.2rem;
                    }

                .page-title .breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
                    color: color-mix(in srgb, var(--default-color), transparent 50%);
                }

    .page-title .title-wrapper {
        max-width: 800px;
        margin: 0 auto;
        padding: 1rem 0;
    }

        .page-title .title-wrapper h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--heading-color);
        }

        .page-title .title-wrapper p {
            font-size: 1.1rem;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin: 0;
            line-height: 1.6;
        }

@media (max-width: 768px) {
    .page-title .title-wrapper h1 {
        font-size: 2rem;
    }

    .page-title .title-wrapper p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-title .title-wrapper h1 {
        font-size: 1.75rem;
    }
}

/*--------------------------------------------------------------
# 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 {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

        .section-title h2:after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

    .hero::before {
        content: "";
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 50%;
        height: 100%;
        background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero::after {
        content: "";
        position: absolute;
        top: 10%;
        right: -5%;
        width: 40%;
        height: 80%;
        background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, transparent 60%);
        pointer-events: none;
    }

    .hero .hero-content {
        position: relative;
        z-index: 2;
    }

        .hero .hero-content .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
        }

            .hero .hero-content .hero-tag .tag-dot {
                width: 10px;
                height: 10px;
                background: var(--accent-color);
                border-radius: 50%;
                animation: pulse 2s infinite;
            }

            .hero .hero-content .hero-tag .tag-text {
                font-size: 0.875rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1.5px;
                color: var(--accent-color);
            }

        .hero .hero-content .hero-headline {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 24px;
            color: var(--heading-color);
        }

@media (max-width: 1200px) {
    .hero .hero-content .hero-headline {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero .hero-content .hero-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero .hero-content .hero-headline {
        font-size: 2rem;
    }
}

.hero .hero-content .hero-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 40px;
    max-width: 520px;
}

@media (max-width: 768px) {
    .hero .hero-content .hero-text {
        font-size: 1rem;
        margin-bottom: 32px;
    }
}

.hero .hero-content .hero-cta {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .hero .hero-content .hero-cta {
        gap: 24px;
    }
}

.hero .hero-content .hero-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .hero .hero-content .hero-cta .cta-button i {
        transition: transform 0.3s ease;
    }

    .hero .hero-content .hero-cta .cta-button:hover {
        background: color-mix(in srgb, var(--accent-color), black 12%);
        transform: translateY(-2px);
        box-shadow: 0 16px 40px color-mix(in srgb, var(--accent-color), transparent 55%);
    }

        .hero .hero-content .hero-cta .cta-button:hover i {
            transform: translateX(4px);
        }

.hero .hero-content .hero-cta .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--heading-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .hero .hero-content .hero-cta .cta-link i {
        font-size: 1.5rem;
        color: var(--accent-color);
        transition: transform 0.3s ease;
    }

    .hero .hero-content .hero-cta .cta-link:hover {
        color: var(--accent-color);
    }

        .hero .hero-content .hero-cta .cta-link:hover i {
            transform: scale(1.1);
        }

.hero .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

@media (max-width: 576px) {
    .hero .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.hero .stats-grid .stat-card {
    background: var(--surface-color);
    padding: 28px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
}

    .hero .stats-grid .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 88%);
        border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    }

    .hero .stats-grid .stat-card.stat-card-primary {
        background: var(--accent-color);
        border-color: var(--accent-color);
    }

        .hero .stats-grid .stat-card.stat-card-primary .stat-icon-wrap {
            background: color-mix(in srgb, var(--contrast-color), transparent 80%);
        }

            .hero .stats-grid .stat-card.stat-card-primary .stat-icon-wrap i {
                color: var(--contrast-color);
            }

        .hero .stats-grid .stat-card.stat-card-primary .stat-info .stat-value,
        .hero .stats-grid .stat-card.stat-card-primary .stat-info .stat-title {
            color: var(--contrast-color);
        }

        .hero .stats-grid .stat-card.stat-card-primary:hover {
            background: color-mix(in srgb, var(--accent-color), black 10%);
            box-shadow: 0 20px 50px color-mix(in srgb, var(--accent-color), transparent 50%);
        }

    .hero .stats-grid .stat-card.stat-card-accent {
        background: color-mix(in srgb, var(--accent-color), transparent 92%);
        border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero .stats-grid .stat-card.stat-card-accent:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 88%);
        }

    .hero .stats-grid .stat-card .stat-icon-wrap {
        width: 56px;
        height: 56px;
        min-width: 56px;
        background: color-mix(in srgb, var(--accent-color), transparent 88%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .hero .stats-grid .stat-card .stat-icon-wrap i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

    .hero .stats-grid .stat-card .stat-info .stat-value {
        display: block;
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--heading-color);
        line-height: 1.2;
        margin-bottom: 4px;
    }

    .hero .stats-grid .stat-card .stat-info .stat-title {
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 35%);
    }

@keyframes pulse {

    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 100px 0 60px;
    }

        .hero .hero-content {
            text-align: center;
            margin-bottom: 48px;
        }

            .hero .hero-content .hero-text {
                margin-left: auto;
                margin-right: auto;
            }

            .hero .hero-content .hero-cta {
                justify-content: center;
            }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    padding-top: 60px;
    background-color: var(--background-color);
    overflow: hidden;
    padding-bottom: 60px;
}

    .about .about-images-wrapper {
        position: relative;
        padding-bottom: 60px;
        padding-right: 60px;
        z-index: 1;
    }

@media (max-width: 992px) {
    .about .about-images-wrapper {
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 40px;
    }
}

.about .image-main {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px -10px color-mix(in srgb, var(--default-color), transparent 90%);
}

    .about .image-main img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .about .image-main:hover img {
        transform: scale(1.03);
    }

.about .image-offset {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 8px solid var(--background-color);
    z-index: 3;
    box-shadow: 0 15px 30px -5px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 992px) {
    .about .image-offset {
        display: none;
    }
}

.about .image-offset img {
    width: 100%;
    height: auto;
    display: block;
}

.about .experience-badge {
    position: absolute;
    top: 40px;
    left: -30px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 24px 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 4;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
    animation: float-badge 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .about .experience-badge {
        left: 20px;
        top: 20px;
        padding: 16px 20px;
    }
}

.about .experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}

.about .experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.about .shape-pattern {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-image: radial-gradient(color-mix(in srgb, var(--accent-color), transparent 85%) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.7;
}

@media (min-width: 1200px) {
    .about .about-content {
        padding-left: 40px;
    }
}

.about .section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 12px;
    position: relative;
    padding-left: 45px;
}

    .about .section-subtitle::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 35px;
        height: 2px;
        background: var(--accent-color);
        transform: translateY(-50%);
    }

.about h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about h2 {
        font-size: 1.75rem;
    }
}

.about .lead-text {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 16px;
    font-weight: 500;
}

.about .description {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    line-height: 1.7;
}

.about .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .about .features-grid {
        grid-template-columns: 1fr;
    }
}

.about .feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-color);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

    .about .feature-card i {
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    .about .feature-card span {
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--heading-color);
    }

    .about .feature-card:hover {
        border-color: var(--accent-color);
        transform: translateX(5px);
    }

.about .stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
    .about .stats-row {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
}

.about .stat-box {
    display: flex;
    flex-direction: column;
}

    .about .stat-box .number {
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--accent-color);
        line-height: 1.2;
    }

    .about .stat-box .label {
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-weight: 500;
    }

.about .action-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about .btn-primary-custom {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

    .about .btn-primary-custom:hover {
        background: var(--accent-color);
        transform: translateY(-2px);
    }

        .about .btn-primary-custom:hover i {
            transition: 0.3s;
            transform: translateX(4px);
        }

.about .contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .about .contact-info .icon-box {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        color: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: 0.3s;
    }

    .about .contact-info .text {
        display: flex;
        flex-direction: column;
        font-size: 0.875rem;
    }

        .about .contact-info .text span {
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            font-size: 0.8rem;
        }

        .about .contact-info .text a {
            font-weight: 700;
            color: var(--heading-color);
            font-size: 1rem;
        }

            .about .contact-info .text a:hover {
                color: var(--accent-color);
            }

    .about .contact-info:hover .icon-box {
        background: var(--accent-color);
        color: var(--contrast-color);
    }

@keyframes float-badge {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
    padding: 100px 0;
    background-color: var(--background-color);
}

@media (max-width: 768px) {
    .services {
        padding: 64px 0;
    }
}

.services .service-card {
    position: relative;
    padding: 32px;
    border-radius: 16px;
    background: var(--surface-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .services .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

        .services .service-card:hover .icon-wrapper {
            background: var(--accent-color);
        }

            .services .service-card:hover .icon-wrapper i {
                color: var(--contrast-color);
            }

        .services .service-card:hover .service-link i {
            transform: translateX(4px);
        }

    .services .service-card.featured {
        background: var(--accent-color);
        transform: scale(1.02);
    }

@media (min-width: 992px) {
    .services .service-card.featured {
        transform: scale(1.05);
    }
}

.services .service-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

@media (min-width: 992px) {
    .services .service-card.featured:hover {
        transform: scale(1.05) translateY(-8px);
    }
}

.services .service-card.featured .icon-wrapper {
    background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
}

    .services .service-card.featured .icon-wrapper i {
        color: var(--contrast-color);
    }

.services .service-card.featured h3 {
    color: var(--contrast-color);
}

.services .service-card.featured p {
    color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
}

.services .service-card.featured .service-link {
    color: var(--contrast-color);
}

    .services .service-card.featured .service-link:hover {
        color: var(--contrast-color);
    }

.services .service-card .featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
    color: var(--contrast-color);
}

    .services .service-card .featured-badge i {
        font-size: 10px;
    }

.services .service-card .icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent-color) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

    .services .service-card .icon-wrapper i {
        font-size: 28px;
        color: var(--accent-color);
        transition: all 0.3s ease;
    }

.services .service-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.services .service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 24px;
    flex-grow: 1;
    display: none;
}

.services .service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

    .services .service-card .service-link i {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .services .service-card .service-link:hover {
        color: color-mix(in srgb, var(--accent-color) 80%, black);
    }

@media (max-width: 768px) {
    .services .service-card {
        padding: 24px;
    }

        .services .service-card .icon-wrapper {
            width: 48px;
            height: 48px;
        }

            .services .service-card .icon-wrapper i {
                font-size: 24px;
            }

        .services .service-card h3 {
            font-size: 18px;
        }
}

.services .stats-row {
    margin-top: 64px;
    padding: 48px 32px;
    background: color-mix(in srgb, var(--accent-color) 8%, transparent);
    border-radius: 16px;
}

@media (max-width: 768px) {
    .services .stats-row {
        margin-top: 48px;
        padding: 32px 24px;
    }
}

.services .stats-row .stat-item {
    text-align: center;
}

    .services .stats-row .stat-item .stat-number {
        display: block;
        font-size: 36px;
        font-weight: 800;
        line-height: 1;
        color: var(--accent-color);
        margin-bottom: 8px;
    }

@media (max-width: 768px) {
    .services .stats-row .stat-item .stat-number {
        font-size: 28px;
    }
}

.services .stats-row .stat-item .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--default-color);
}

@media (max-width: 768px) {
    .services .stats-row .stat-item .stat-label {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .portfolio {
        padding: 64px 0;
    }
}

.portfolio .filters-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .portfolio .filters-wrapper {
        margin-bottom: 32px;
    }
}

.portfolio .portfolio-filters {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    margin: 0;
    list-style: none;
    background: var(--surface-color);
    border-radius: 50px;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color) 8%, transparent);
}

@media (max-width: 768px) {
    .portfolio .portfolio-filters {
        border-radius: 16px;
        padding: 8px;
        gap: 6px;
    }
}

.portfolio .portfolio-filters li {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--default-color);
    background: transparent;
}

@media (max-width: 768px) {
    .portfolio .portfolio-filters li {
        padding: 10px 16px;
        font-size: 13px;
    }
}

.portfolio .portfolio-filters li:hover {
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.portfolio .portfolio-filters li.filter-active {
    background: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.portfolio .project-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color) 8%, transparent);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .portfolio .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color) 12%, transparent);
    }

        .portfolio .project-card:hover .image-wrapper img {
            transform: scale(1.08);
        }

        .portfolio .project-card:hover .image-wrapper .hover-overlay {
            opacity: 1;
            visibility: visible;
        }

    .portfolio .project-card.featured .image-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 20%, transparent), transparent);
        z-index: 1;
        pointer-events: none;
    }

    .portfolio .project-card .image-wrapper {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

@media (max-width: 576px) {
    .portfolio .project-card .image-wrapper {
        height: 200px;
    }
}

.portfolio .project-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio .project-card .image-wrapper .hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--default-color) 80%, transparent) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .portfolio .project-card .image-wrapper .hover-overlay .overlay-actions {
        display: flex;
        gap: 12px;
    }

    .portfolio .project-card .image-wrapper .hover-overlay .action-btn {
        width: 48px;
        height: 48px;
        background: var(--surface-color);
        color: var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

        .portfolio .project-card .image-wrapper .hover-overlay .action-btn:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
            transform: scale(1.1);
        }

.portfolio .project-card .image-wrapper .category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: var(--surface-color);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.portfolio .project-card .image-wrapper .featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #ff6b6b));
    color: var(--contrast-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color) 50%, transparent);
    z-index: 2;
}

    .portfolio .project-card .image-wrapper .featured-badge i {
        font-size: 10px;
    }

.portfolio .project-card .project-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 576px) {
    .portfolio .project-card .project-info {
        padding: 20px;
    }
}

.portfolio .project-card .project-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.portfolio .project-card .project-info p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color) 70%, transparent);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.portfolio .project-card .project-info .project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

    .portfolio .project-card .project-info .project-meta .tech-tags {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
    }

        .portfolio .project-card .project-info .project-meta .tech-tags span {
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 50px;
            background: color-mix(in srgb, var(--accent-color) 12%, transparent);
            color: var(--accent-color);
        }

    .portfolio .project-card .project-info .project-meta .year {
        font-size: 13px;
        font-weight: 600;
        color: color-mix(in srgb, var(--default-color) 50%, transparent);
    }

.portfolio .cta-section {
    margin-top: 80px;
    padding: 64px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #6366f1));
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

@media (max-width: 992px) {
    .portfolio .cta-section {
        padding: 48px 32px;
        margin-top: 64px;
    }
}

@media (max-width: 576px) {
    .portfolio .cta-section {
        padding: 40px 24px;
        border-radius: 16px;
    }
}

.portfolio .cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.portfolio .cta-section .cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
    color: var(--contrast-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 24px;
}

    .portfolio .cta-section .cta-label i {
        font-size: 16px;
    }

.portfolio .cta-section h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--contrast-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .portfolio .cta-section h3 {
        font-size: 28px;
    }
}

.portfolio .cta-section p {
    font-size: 18px;
    color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .portfolio .cta-section p {
        font-size: 16px;
    }
}

.portfolio .cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .portfolio .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.portfolio .cta-section .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--surface-color);
    color: var(--accent-color);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .portfolio .cta-section .btn-cta-primary {
        width: 100%;
        justify-content: center;
    }
}

.portfolio .cta-section .btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

    .portfolio .cta-section .btn-cta-primary:hover i {
        transform: translateX(4px);
    }

.portfolio .cta-section .btn-cta-primary i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.portfolio .cta-section .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--contrast-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid color-mix(in srgb, var(--contrast-color) 40%, transparent);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 576px) {
    .portfolio .cta-section .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

.portfolio .cta-section .btn-cta-secondary:hover {
    background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
    border-color: var(--contrast-color);
}

.portfolio .cta-section .btn-cta-secondary i {
    font-size: 20px;
}

.portfolio .cta-section .cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

    .portfolio .cta-section .cta-decoration .floating-shape {
        position: absolute;
        border-radius: 50%;
        background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
    }

        .portfolio .cta-section .cta-decoration .floating-shape.shape-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -50px;
        }

        .portfolio .cta-section .cta-decoration .floating-shape.shape-2 {
            width: 200px;
            height: 200px;
            bottom: -80px;
            left: -60px;
        }

        .portfolio .cta-section .cta-decoration .floating-shape.shape-3 {
            width: 120px;
            height: 120px;
            top: 50%;
            left: 20%;
            transform: translateY(-50%);
        }

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
    padding: 80px 0;
    background-color: var(--background-color);
    position: relative;
}

    .why-us::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        height: 100%;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 96%), transparent);
        pointer-events: none;
    }

    .why-us .sidebar-content {
        position: sticky;
        top: 100px;
    }

        .why-us .sidebar-content .badge-wrapper {
            margin-bottom: 16px;
        }

        .why-us .sidebar-content .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 30%));
            color: var(--contrast-color);
            border-radius: 24px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

            .why-us .sidebar-content .section-badge i {
                font-size: 14px;
            }

        .why-us .sidebar-content h2 {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.25;
            color: var(--heading-color);
            margin-bottom: 24px;
        }

@media (max-width: 768px) {
    .why-us .sidebar-content h2 {
        font-size: 28px;
    }
}

.why-us .sidebar-content .description {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 32px;
}

.why-us .sidebar-content .stat-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

    .why-us .sidebar-content .stat-cards .stat-card {
        background: var(--surface-color);
        padding: 20px 24px;
        border-radius: 16px;
        border-left: 4px solid var(--accent-color);
        box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
        display: flex;
        align-items: center;
        gap: 16px;
        transition: all 0.3s ease;
    }

        .why-us .sidebar-content .stat-cards .stat-card:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
        }

        .why-us .sidebar-content .stat-cards .stat-card .stat-value {
            font-size: 32px;
            font-weight: 800;
            color: var(--accent-color);
            line-height: 1;
            min-width: 90px;
        }

        .why-us .sidebar-content .stat-cards .stat-card .stat-text {
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-weight: 500;
        }

.why-us .sidebar-content .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .why-us .sidebar-content .action-buttons .btn-main {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        background: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 12px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .why-us .sidebar-content .action-buttons .btn-main:hover {
            background: color-mix(in srgb, var(--accent-color), #000 15%);
            transform: translateY(-2px);
            box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color), transparent 55%);
        }

    .why-us .sidebar-content .action-buttons .btn-outline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        background: transparent;
        color: var(--accent-color);
        border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
        border-radius: 12px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .why-us .sidebar-content .action-buttons .btn-outline:hover {
            border-color: var(--accent-color);
            background: color-mix(in srgb, var(--accent-color), transparent 95%);
        }

@media (min-width: 576px) {
    .why-us .sidebar-content .action-buttons {
        flex-direction: row;
    }
}

.why-us .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .why-us .features-grid {
        grid-template-columns: 1fr;
    }
}

.why-us .features-grid .feature-box {
    background: var(--surface-color);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .why-us .features-grid .feature-box:first-child {
        grid-column: span 2;
        display: flex;
        gap: 24px;
        align-items: flex-start;
    }

@media (max-width: 768px) {
    .why-us .features-grid .feature-box:first-child {
        grid-column: span 1;
        flex-direction: column;
    }
}

.why-us .features-grid .feature-box:first-child .feature-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

    .why-us .features-grid .feature-box:first-child .feature-icon i {
        font-size: 40px;
    }

.why-us .features-grid .feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.why-us .features-grid .feature-box.highlight {
    background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 94%), color-mix(in srgb, var(--accent-color), transparent 98%));
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

    .why-us .features-grid .feature-box.highlight .feature-ribbon {
        position: absolute;
        top: 16px;
        right: -32px;
        padding: 6px 40px;
        background: var(--accent-color);
        color: var(--contrast-color);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transform: rotate(45deg);
    }

.why-us .features-grid .feature-box .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #a855f7 40%));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .why-us .features-grid .feature-box .feature-icon i {
        font-size: 28px;
        color: var(--contrast-color);
    }

.why-us .features-grid .feature-box .feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.why-us .features-grid .feature-box .feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 16px;
}

.why-us .features-grid .feature-box .feature-content .feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

    .why-us .features-grid .feature-box .feature-content .feature-link:hover {
        gap: 12px;
    }

    .why-us .features-grid .feature-box .feature-content .feature-link i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

.why-us .process-timeline {
    background: var(--surface-color);
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 32px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

    .why-us .process-timeline .timeline-title {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 24px;
    }

        .why-us .process-timeline .timeline-title i {
            color: var(--accent-color);
            font-size: 20px;
        }

    .why-us .process-timeline .timeline-steps {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
    }

@media (max-width: 768px) {
    .why-us .process-timeline .timeline-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.why-us .process-timeline .timeline-steps .timeline-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .why-us .process-timeline .timeline-steps .timeline-step .step-marker {
        width: 40px;
        height: 40px;
        background: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
        flex-shrink: 0;
    }

    .why-us .process-timeline .timeline-steps .timeline-step .step-info strong {
        display: block;
        font-size: 14px;
        color: var(--heading-color);
    }

    .why-us .process-timeline .timeline-steps .timeline-step .step-info span {
        font-size: 12px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

.why-us .process-timeline .timeline-steps .timeline-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
    min-width: 20px;
    max-width: 60px;
}

@media (max-width: 768px) {
    .why-us .process-timeline .timeline-steps .timeline-connector {
        display: none;
    }
}

.why-us .capabilities-section .capabilities-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.why-us .capabilities-section .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .why-us .capabilities-section .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

.why-us .capabilities-section .capabilities-grid .capability-card {
    background: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
}

    .why-us .capabilities-section .capabilities-grid .capability-card:hover {
        border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
        background: var(--surface-color);
    }

    .why-us .capabilities-section .capabilities-grid .capability-card .capability-icon {
        width: 48px;
        height: 48px;
        background: color-mix(in srgb, var(--accent-color), transparent 88%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

        .why-us .capabilities-section .capabilities-grid .capability-card .capability-icon i {
            font-size: 22px;
            color: var(--accent-color);
        }

    .why-us .capabilities-section .capabilities-grid .capability-card h6 {
        font-size: 15px;
        font-weight: 600;
        color: var(--heading-color);
        margin-bottom: 8px;
    }

    .why-us .capabilities-section .capabilities-grid .capability-card p {
        font-size: 13px;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 35%);
        margin: 0;
    }

@media (max-width: 991px) {
    .why-us .sidebar-content {
        position: static;
        margin-bottom: 48px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    position: relative;
    overflow: hidden;
    /* Left Sidebar */
    /* Testimonials Carousel */
    /* Swiper Pagination */
    /* Responsive Styles */
}

    .testimonials::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
        pointer-events: none;
    }

    .testimonials::after {
        content: "";
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
        pointer-events: none;
    }

    .testimonials .testimonials-sidebar {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-right: 40px;
    }

        .testimonials .testimonials-sidebar .avatar-stack {
            display: flex;
            align-items: center;
            margin-bottom: 32px;
        }

            .testimonials .testimonials-sidebar .avatar-stack .avatar {
                width: 48px;
                height: 48px;
                border-radius: 50%;
                object-fit: cover;
                border: 3px solid var(--surface-color);
                margin-left: -12px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease;
            }

                .testimonials .testimonials-sidebar .avatar-stack .avatar:first-child {
                    margin-left: 0;
                }

                .testimonials .testimonials-sidebar .avatar-stack .avatar:hover {
                    transform: scale(1.1) translateY(-4px);
                    z-index: 5;
                }

            .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 48px;
                height: 48px;
                border-radius: 50%;
                background: var(--accent-color);
                color: var(--contrast-color);
                font-size: 12px;
                font-weight: 700;
                margin-left: -12px;
                border: 3px solid var(--surface-color);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }

        .testimonials .testimonials-sidebar .sidebar-content .satisfied-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: color-mix(in srgb, var(--accent-color), transparent 85%);
            color: var(--accent-color);
            margin-bottom: 24px;
        }

            .testimonials .testimonials-sidebar .sidebar-content .satisfied-badge i {
                font-size: 12px;
            }

        .testimonials .testimonials-sidebar .sidebar-content h3 {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--heading-color);
            margin-bottom: 16px;
        }

        .testimonials .testimonials-sidebar .sidebar-content p {
            font-size: 16px;
            line-height: 1.7;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-bottom: 32px;
        }

        .testimonials .testimonials-sidebar .sidebar-content .btn-view-all {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 50px;
            background: var(--accent-color);
            color: var(--contrast-color);
            font-size: 15px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
        }

            .testimonials .testimonials-sidebar .sidebar-content .btn-view-all i {
                transition: transform 0.3s ease;
            }

            .testimonials .testimonials-sidebar .sidebar-content .btn-view-all:hover {
                background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
                transform: translateY(-3px);
                box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
            }

                .testimonials .testimonials-sidebar .sidebar-content .btn-view-all:hover i {
                    transform: translateX(5px);
                }

    .testimonials .testimonials-carousel {
        padding-bottom: 60px;
    }

        .testimonials .testimonials-carousel .swiper-wrapper {
            height: auto !important;
        }

    .testimonials .testimonial-card {
        background: var(--surface-color);
        border-radius: 20px;
        padding: 32px;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .testimonials .testimonial-card::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #9333ea 40%));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .testimonials .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonials .testimonial-card:hover .quote-mark {
            transform: scale(1.15);
            background: var(--accent-color);
            color: var(--contrast-color);
        }

        .testimonials .testimonial-card .card-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 24px;
        }

            .testimonials .testimonial-card .card-top .stars {
                display: flex;
                gap: 4px;
            }

                .testimonials .testimonial-card .card-top .stars i {
                    color: #f59e0b;
                    font-size: 16px;
                }

            .testimonials .testimonial-card .card-top .quote-mark {
                width: 44px;
                height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 12px;
                background: color-mix(in srgb, var(--accent-color), transparent 88%);
                color: var(--accent-color);
                transition: all 0.4s ease;
            }

                .testimonials .testimonial-card .card-top .quote-mark i {
                    font-size: 22px;
                }

        .testimonials .testimonial-card .testimonial-text {
            font-size: 16px;
            line-height: 1.75;
            color: color-mix(in srgb, var(--default-color), transparent 15%);
            margin-bottom: 28px;
            position: relative;
        }

        .testimonials .testimonial-card .author-info {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-top: 20px;
            border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .testimonials .testimonial-card .author-info .author-img {
                width: 52px;
                height: 52px;
                border-radius: 50%;
                object-fit: cover;
                border: 3px solid color-mix(in srgb, var(--accent-color), transparent 75%);
            }

            .testimonials .testimonial-card .author-info .author-details h5 {
                font-size: 17px;
                font-weight: 600;
                color: var(--heading-color);
                margin: 0 0 4px;
            }

            .testimonials .testimonial-card .author-info .author-details span {
                font-size: 14px;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
            }

    .testimonials .swiper-pagination {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: color-mix(in srgb, var(--default-color), transparent 75%);
            opacity: 1;
            margin: 0 6px;
            border-radius: 50%;
            transition: all 0.4s ease;
        }

            .testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
                width: 32px;
                border-radius: 10px;
                background: var(--accent-color);
            }

@media (max-width: 1199px) {
    .testimonials .testimonials-sidebar {
        padding-right: 24px;
    }

        .testimonials .testimonials-sidebar .sidebar-content h3 {
            font-size: 28px;
        }

    .testimonials .testimonial-card {
        padding: 28px;
    }
}

@media (max-width: 991px) {
    .testimonials .testimonials-sidebar {
        padding-right: 0;
        padding-bottom: 48px;
        text-align: center;
    }

        .testimonials .testimonials-sidebar .avatar-stack {
            justify-content: center;
        }

        .testimonials .testimonials-sidebar .sidebar-content h3 {
            font-size: 26px;
        }

        .testimonials .testimonials-sidebar .sidebar-content p {
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 24px;
        }
}

@media (max-width: 767px) {

    .testimonials .testimonials-sidebar .avatar-stack .avatar,
    .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
        width: 42px;
        height: 42px;
    }

    .testimonials .testimonials-sidebar .sidebar-content .satisfied-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .testimonials .testimonials-sidebar .sidebar-content h3 {
        font-size: 24px;
    }

    .testimonials .testimonials-sidebar .sidebar-content p {
        font-size: 15px;
    }

    .testimonials .testimonials-sidebar .sidebar-content .btn-view-all {
        padding: 12px 28px;
        font-size: 14px;
    }

    .testimonials .testimonial-card {
        padding: 24px;
    }

        .testimonials .testimonial-card .card-top .stars i {
            font-size: 14px;
        }

        .testimonials .testimonial-card .card-top .quote-mark {
            width: 40px;
            height: 40px;
        }

            .testimonials .testimonial-card .card-top .quote-mark i {
                font-size: 18px;
            }

        .testimonials .testimonial-card .testimonial-text {
            font-size: 15px;
            margin-bottom: 24px;
        }

        .testimonials .testimonial-card .author-info {
            gap: 12px;
            padding-top: 16px;
        }

            .testimonials .testimonial-card .author-info .author-img {
                width: 46px;
                height: 46px;
            }

            .testimonials .testimonial-card .author-info .author-details h5 {
                font-size: 15px;
            }

            .testimonials .testimonial-card .author-info .author-details span {
                font-size: 13px;
            }

    .testimonials .testimonials-carousel {
        padding-bottom: 50px;
    }
}

@media (max-width: 575px) {

    .testimonials::before,
    .testimonials::after {
        display: none;
    }

    .testimonials .testimonials-sidebar {
        padding-bottom: 40px;
    }

        .testimonials .testimonials-sidebar .avatar-stack {
            margin-bottom: 24px;
        }

            .testimonials .testimonials-sidebar .avatar-stack .avatar,
            .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
                width: 38px;
                height: 38px;
                margin-left: -10px;
            }

                .testimonials .testimonials-sidebar .avatar-stack .avatar:first-child,
                .testimonials .testimonials-sidebar .avatar-stack .avatar-count:first-child {
                    margin-left: 0;
                }

            .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
                font-size: 11px;
            }

        .testimonials .testimonials-sidebar .sidebar-content h3 {
            font-size: 22px;
        }

        .testimonials .testimonials-sidebar .sidebar-content p {
            font-size: 14px;
        }

    .testimonials .testimonial-card {
        padding: 20px;
    }

        .testimonials .testimonial-card .card-top {
            margin-bottom: 20px;
        }

            .testimonials .testimonial-card .card-top .quote-mark {
                width: 36px;
                height: 36px;
                border-radius: 10px;
            }

                .testimonials .testimonial-card .card-top .quote-mark i {
                    font-size: 16px;
                }

        .testimonials .testimonial-card .testimonial-text {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .testimonials .testimonial-card .author-info .author-img {
            width: 42px;
            height: 42px;
            border-width: 2px;
        }

        .testimonials .testimonial-card .author-info .author-details h5 {
            font-size: 14px;
        }

        .testimonials .testimonial-card .author-info .author-details span {
            font-size: 12px;
        }

    .testimonials .testimonials-carousel {
        padding-bottom: 45px;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 5px;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
            width: 26px;
        }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .team .team-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

        .team .team-card:hover .member-img .social-overlay {
            opacity: 1;
        }

        .team .team-card:hover .member-img img {
            transform: scale(1.05);
        }

    .team .team-card.featured {
        transform: scale(1.03);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    }

        .team .team-card.featured .member-info {
            background: var(--accent-color);
        }

            .team .team-card.featured .member-info .member-badge {
                background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
                color: var(--contrast-color);
            }

            .team .team-card.featured .member-info h4 {
                color: var(--contrast-color);
            }

            .team .team-card.featured .member-info p {
                color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
            }

        .team .team-card.featured:hover {
            transform: scale(1.03) translateY(-8px);
        }

    .team .team-card .member-img {
        position: relative;
        overflow: hidden;
    }

        .team .team-card .member-img img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .team .team-card .member-img .social-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, color-mix(in srgb, var(--accent-color) 90%, transparent) 0%, transparent 60%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 24px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

            .team .team-card .member-img .social-overlay .social-links {
                display: flex;
                gap: 12px;
            }

                .team .team-card .member-img .social-overlay .social-links a {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background: var(--contrast-color);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--accent-color);
                    font-size: 16px;
                    transition: all 0.3s ease;
                }

                    .team .team-card .member-img .social-overlay .social-links a:hover {
                        background: var(--accent-color);
                        color: var(--contrast-color);
                        transform: translateY(-4px);
                    }

    .team .team-card .member-info {
        padding: 24px;
        text-align: center;
        transition: background 0.3s ease;
    }

        .team .team-card .member-info .member-badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: color-mix(in srgb, var(--accent-color) 15%, transparent);
            color: var(--accent-color);
            margin-bottom: 12px;
        }

        .team .team-card .member-info h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--heading-color);
        }

        .team .team-card .member-info p {
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color) 70%, transparent);
            margin: 0;
        }

.team .team-stats {
    margin-top: 80px;
}

    .team .team-stats .stats-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 48px;
        padding: 40px 48px;
        background: var(--surface-color);
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

@media (max-width: 768px) {
    .team .team-stats .stats-wrapper {
        flex-direction: column;
        gap: 32px;
        padding: 32px 24px;
    }
}

.team .team-stats .stat-item {
    text-align: center;
}

    .team .team-stats .stat-item .stat-number {
        display: block;
        font-size: 42px;
        font-weight: 800;
        color: var(--accent-color);
        line-height: 1;
        margin-bottom: 8px;
    }

    .team .team-stats .stat-item .stat-label {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: color-mix(in srgb, var(--default-color) 60%, transparent);
    }

.team .team-stats .stat-divider {
    width: 1px;
    height: 60px;
    background: color-mix(in srgb, var(--default-color) 15%, transparent);
}

@media (max-width: 768px) {
    .team .team-stats .stat-divider {
        width: 80px;
        height: 1px;
    }
}

@media (max-width: 992px) {
    .team {
        padding: 80px 0;
    }

        .team .team-card.featured {
            transform: none;
        }

            .team .team-card.featured:hover {
                transform: translateY(-8px);
            }

        .team .team-stats {
            margin-top: 60px;
        }
}

@media (max-width: 576px) {
    .team {
        padding: 60px 0;
    }

        .team .team-card .member-info {
            padding: 20px;
        }

            .team .team-card .member-info h4 {
                font-size: 18px;
            }

        .team .team-stats {
            margin-top: 48px;
        }

            .team .team-stats .stat-item .stat-number {
                font-size: 36px;
            }

            .team .team-stats .stat-item .stat-label {
                font-size: 12px;
            }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    position: relative;
    overflow: hidden;
}

    .contact::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        /* background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 8%, transparent) 0%, transparent 70%); */
        border-radius: 50%;
        pointer-events: none;
    }

    .contact::after {
        content: "";
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 6%, transparent) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .contact .container {
        position: relative;
        z-index: 1;
    }

    .contact .info-panel {
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 48px;
        background: var(--accent-color);
        border-radius: 24px;
        color: var(--contrast-color);
        position: relative;
        overflow: hidden;
    }

        .contact .info-panel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(135deg, transparent 0%, color-mix(in srgb, #000 15%, transparent) 100%); */
            pointer-events: none;
        }

        .contact .info-panel > * {
            position: relative;
            z-index: 1;
        }

        .contact .info-panel .panel-header {
            margin-bottom: 40px;
        }

            .contact .info-panel .panel-header .section-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 8px 16px;
                background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
                border-radius: 50px;
                font-size: 13px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-bottom: 24px;
            }

                .contact .info-panel .panel-header .section-badge i {
                    font-size: 14px;
                }

            .contact .info-panel .panel-header h3 {
                font-size: 32px;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 16px;
                color: var(--contrast-color);
                letter-spacing: -0.5px;
            }

            .contact .info-panel .panel-header p {
                font-size: 16px;
                line-height: 1.7;
                opacity: 0.9;
                margin: 0;
            }

        .contact .info-panel .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }

        .contact .info-panel .method-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

            .contact .info-panel .method-item:hover {
                background: color-mix(in srgb, var(--contrast-color) 18%, transparent);
                transform: translateX(8px);
            }

            .contact .info-panel .method-item .method-icon {
                width: 48px;
                height: 48px;
                background: var(--contrast-color);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }

                .contact .info-panel .method-item .method-icon i {
                    font-size: 20px;
                    color: var(--accent-color);
                }

            .contact .info-panel .method-item .method-details {
                display: flex;
                flex-direction: column;
                gap: 4px;
            }

                .contact .info-panel .method-item .method-details .method-label {
                    font-size: 12px;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    opacity: 0.8;
                }

                .contact .info-panel .method-item .method-details a,
                .contact .info-panel .method-item .method-details span {
                    font-size: 15px;
                    font-weight: 500;
                    color: var(--contrast-color);
                    text-decoration: none;
                    transition: opacity 0.3s ease;
                }

                    .contact .info-panel .method-item .method-details a:hover,
                    .contact .info-panel .method-item .method-details span:hover {
                        opacity: 0.8;
                    }

        .contact .info-panel .stats-strip {
            display: flex;
            gap: 24px;
            padding: 24px;
            background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
            border-radius: 16px;
            margin-bottom: 32px;
        }

            .contact .info-panel .stats-strip .stat-item {
                flex: 1;
                text-align: center;
            }

                .contact .info-panel .stats-strip .stat-item .stat-number {
                    display: block;
                    font-size: 28px;
                    font-weight: 800;
                    line-height: 1;
                    margin-bottom: 8px;
                }

                .contact .info-panel .stats-strip .stat-item .stat-text {
                    font-size: 12px;
                    font-weight: 500;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    opacity: 0.8;
                }

        .contact .info-panel .social-connect {
            margin-top: auto;
            display: flex;
            align-items: center;
            gap: 16px;
        }

            .contact .info-panel .social-connect > span {
                font-size: 14px;
                font-weight: 600;
                opacity: 0.9;
            }

            .contact .info-panel .social-connect .social-icons {
                display: flex;
                gap: 12px;
            }

                .contact .info-panel .social-connect .social-icons a {
                    width: 40px;
                    height: 40px;
                    background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--contrast-color);
                    transition: all 0.3s ease;
                }

                    .contact .info-panel .social-connect .social-icons a:hover {
                        background: var(--contrast-color);
                        color: var(--accent-color);
                        transform: translateY(-4px);
                    }

                    .contact .info-panel .social-connect .social-icons a i {
                        font-size: 16px;
                    }

    .contact .form-card {
        background: var(--surface-color);
        border-radius: 24px;
        padding: 48px;
        box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color) 10%, transparent);
        height: 100%;
    }

        .contact .form-card .form-card-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 40px;
            padding-bottom: 32px;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
        }

            .contact .form-card .form-card-header .header-icon {
                width: 64px;
                height: 64px;
                background: color-mix(in srgb, var(--accent-color) 12%, transparent);
                border-radius: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }

                .contact .form-card .form-card-header .header-icon i {
                    font-size: 28px;
                    color: var(--accent-color);
                }

            .contact .form-card .form-card-header .header-text h4 {
                font-size: 24px;
                font-weight: 700;
                color: var(--heading-color);
                margin-bottom: 8px;
                letter-spacing: -0.5px;
            }

            .contact .form-card .form-card-header .header-text p {
                font-size: 15px;
                line-height: 1.6;
                color: color-mix(in srgb, var(--default-color) 70%, transparent);
                margin: 0;
            }

        .contact .form-card .php-email-form .input-group-custom label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--heading-color);
            margin-bottom: 10px;
        }

        .contact .form-card .php-email-form .input-group-custom .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

            .contact .form-card .php-email-form .input-group-custom .input-wrapper i {
                position: absolute;
                left: 18px;
                font-size: 18px;
                color: color-mix(in srgb, var(--default-color) 50%, transparent);
                transition: color 0.3s ease;
                z-index: 1;
            }

            .contact .form-card .php-email-form .input-group-custom .input-wrapper input,
            .contact .form-card .php-email-form .input-group-custom .input-wrapper textarea {
                width: 100%;
                height: 56px;
                padding: 16px 16px 16px 52px;
                font-size: 15px;
                color: var(--default-color);
                background: color-mix(in srgb, var(--default-color) 4%, transparent);
                border: 2px solid transparent;
                border-radius: 14px;
                transition: all 0.3s ease;
            }

                .contact .form-card .php-email-form .input-group-custom .input-wrapper input::placeholder,
                .contact .form-card .php-email-form .input-group-custom .input-wrapper textarea::placeholder {
                    color: color-mix(in srgb, var(--default-color) 40%, transparent);
                }

                .contact .form-card .php-email-form .input-group-custom .input-wrapper input:focus,
                .contact .form-card .php-email-form .input-group-custom .input-wrapper textarea:focus {
                    outline: none;
                    background: var(--surface-color);
                    border-color: var(--accent-color);
                    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 12%, transparent);
                }

                    .contact .form-card .php-email-form .input-group-custom .input-wrapper input:focus + i,
                    .contact .form-card .php-email-form .input-group-custom .input-wrapper input:focus ~ i,
                    .contact .form-card .php-email-form .input-group-custom .input-wrapper textarea:focus + i,
                    .contact .form-card .php-email-form .input-group-custom .input-wrapper textarea:focus ~ i {
                        color: var(--accent-color);
                    }

            .contact .form-card .php-email-form .input-group-custom .input-wrapper.textarea-wrapper {
                align-items: flex-start;
            }

                .contact .form-card .php-email-form .input-group-custom .input-wrapper.textarea-wrapper i {
                    top: 18px;
                }

                .contact .form-card .php-email-form .input-group-custom .input-wrapper.textarea-wrapper textarea {
                    height: auto;
                    min-height: 140px;
                    resize: vertical;
                }

        .contact .form-card .php-email-form .form-actions {
            margin-top: 32px;
        }

            .contact .form-card .php-email-form .form-actions .btn-submit {
                width: 100%;
                height: 56px;
                background: var(--accent-color);
                color: var(--contrast-color);
                border: none;
                border-radius: 14px;
                font-size: 16px;
                font-weight: 600;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 12px;
                cursor: pointer;
                transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

                .contact .form-card .php-email-form .form-actions .btn-submit:hover {
                    background: color-mix(in srgb, var(--accent-color) 85%, #000);
                    transform: translateY(-4px);
                    box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color) 40%, transparent);
                }

                    .contact .form-card .php-email-form .form-actions .btn-submit:hover i {
                        transform: translateX(4px);
                    }

                .contact .form-card .php-email-form .form-actions .btn-submit i {
                    font-size: 20px;
                    transition: transform 0.3s ease;
                }

            .contact .form-card .php-email-form .form-actions .secure-note {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                margin-top: 20px;
            }

                .contact .form-card .php-email-form .form-actions .secure-note i {
                    font-size: 14px;
                    color: color-mix(in srgb, var(--accent-color) 70%, transparent);
                }

                .contact .form-card .php-email-form .form-actions .secure-note span {
                    font-size: 13px;
                    color: color-mix(in srgb, var(--default-color) 50%, transparent);
                }

@media (max-width: 992px) {
    .contact .info-panel {
        padding: 40px;
    }

        .contact .info-panel .panel-header h3 {
            font-size: 28px;
        }

        .contact .info-panel .stats-strip {
            gap: 16px;
            padding: 20px;
        }

            .contact .info-panel .stats-strip .stat-item .stat-number {
                font-size: 24px;
            }

    .contact .form-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact .info-panel {
        padding: 32px;
    }

        .contact .info-panel .panel-header {
            margin-bottom: 32px;
        }

            .contact .info-panel .panel-header h3 {
                font-size: 24px;
            }

        .contact .info-panel .contact-methods {
            margin-bottom: 32px;
        }

        .contact .info-panel .stats-strip {
            flex-direction: column;
            gap: 16px;
        }

            .contact .info-panel .stats-strip .stat-item {
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-align: left;
            }

                .contact .info-panel .stats-strip .stat-item .stat-number {
                    margin-bottom: 0;
                    order: 2;
                }

                .contact .info-panel .stats-strip .stat-item .stat-text {
                    order: 1;
                }

        .contact .info-panel .social-connect {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

    .contact .form-card {
        padding: 32px 24px;
    }

        .contact .form-card .form-card-header {
            flex-direction: column;
            gap: 16px;
        }

            .contact .form-card .form-card-header .header-icon {
                width: 56px;
                height: 56px;
            }

                .contact .form-card .form-card-header .header-icon i {
                    font-size: 24px;
                }

            .contact .form-card .form-card-header .header-text h4 {
                font-size: 22px;
            }

        .contact .form-card .php-email-form .input-group-custom .input-wrapper input,
        .contact .form-card .php-email-form .input-group-custom .input-wrapper textarea {
            height: 52px;
            padding: 14px 14px 14px 48px;
        }

        .contact .form-card .php-email-form .form-actions .btn-submit {
            height: 52px;
        }
}

@media (max-width: 576px) {
    .contact .info-panel {
        padding: 24px;
    }

        .contact .info-panel .method-item {
            padding: 14px;
        }

            .contact .info-panel .method-item .method-icon {
                width: 44px;
                height: 44px;
            }

                .contact .info-panel .method-item .method-icon i {
                    font-size: 18px;
                }

    .contact .form-card {
        padding: 24px 20px;
    }

        .contact .form-card .form-card-header {
            margin-bottom: 32px;
            padding-bottom: 24px;
        }

        .contact .form-card .php-email-form .input-group-custom .input-wrapper input,
        .contact .form-card .php-email-form .input-group-custom .input-wrapper textarea {
            font-size: 16px;
        }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
    --card-radius: 16px;
    --section-gap: 80px;
}

    .portfolio-details .hero-image-wrapper {
        position: relative;
        border-radius: var(--card-radius);
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

        .portfolio-details .hero-image-wrapper .portfolio-slider .swiper-wrapper {
            height: auto !important;
        }

        .portfolio-details .hero-image-wrapper .portfolio-slider .swiper-slide img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        .portfolio-details .hero-image-wrapper .portfolio-slider .swiper-button-prev,
        .portfolio-details .hero-image-wrapper .portfolio-slider .swiper-button-next {
            width: 48px;
            height: 48px;
            background: var(--surface-color);
            border-radius: 50%;
            color: var(--heading-color);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

            .portfolio-details .hero-image-wrapper .portfolio-slider .swiper-button-prev::after,
            .portfolio-details .hero-image-wrapper .portfolio-slider .swiper-button-next::after {
                font-size: 16px;
                font-weight: 700;
            }

            .portfolio-details .hero-image-wrapper .portfolio-slider .swiper-button-prev:hover,
            .portfolio-details .hero-image-wrapper .portfolio-slider .swiper-button-next:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
                transform: scale(1.1);
            }

        .portfolio-details .hero-image-wrapper .portfolio-slider .swiper-button-prev {
            left: 16px;
        }

        .portfolio-details .hero-image-wrapper .portfolio-slider .swiper-button-next {
            right: 16px;
        }

        .portfolio-details .hero-image-wrapper .floating-badge {
            position: absolute;
            bottom: 24px;
            left: 24px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: var(--accent-color);
            color: var(--contrast-color);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 40%, transparent);
            z-index: 10;
        }

            .portfolio-details .hero-image-wrapper .floating-badge i {
                font-size: 18px;
            }

    .portfolio-details .project-info-card {
        background: var(--surface-color);
        padding: 40px;
        border-radius: var(--card-radius);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        height: 100%;
    }

        .portfolio-details .project-info-card .project-category {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
        }

            .portfolio-details .project-info-card .project-category .dot {
                width: 8px;
                height: 8px;
                background: var(--accent-color);
                border-radius: 50%;
            }

        .portfolio-details .project-info-card .project-title {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .portfolio-details .project-info-card .project-excerpt {
            font-size: 16px;
            line-height: 1.7;
            color: color-mix(in srgb, var(--default-color) 80%, transparent);
            margin-bottom: 32px;
        }

        .portfolio-details .project-info-card .meta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
        }

            .portfolio-details .project-info-card .meta-grid .meta-item .meta-label {
                display: block;
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: color-mix(in srgb, var(--default-color) 50%, transparent);
                margin-bottom: 4px;
            }

            .portfolio-details .project-info-card .meta-grid .meta-item .meta-value {
                font-weight: 600;
                color: var(--heading-color);
            }

            .portfolio-details .project-info-card .meta-grid .meta-item .meta-link {
                color: var(--accent-color);
                transition: all 0.3s;
            }

                .portfolio-details .project-info-card .meta-grid .meta-item .meta-link:hover {
                    text-decoration: underline;
                }

        .portfolio-details .project-info-card .tech-stack .tech-label {
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: color-mix(in srgb, var(--default-color) 50%, transparent);
            margin-bottom: 12px;
        }

        .portfolio-details .project-info-card .tech-stack .tech-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

            .portfolio-details .project-info-card .tech-stack .tech-icons .tech-badge {
                display: inline-block;
                padding: 8px 16px;
                background: color-mix(in srgb, var(--accent-color) 12%, transparent);
                color: var(--accent-color);
                border-radius: 50px;
                font-size: 13px;
                font-weight: 600;
                transition: all 0.3s;
            }

                .portfolio-details .project-info-card .tech-stack .tech-icons .tech-badge:hover {
                    background: var(--accent-color);
                    color: var(--contrast-color);
                    transform: translateY(-2px);
                }

    .portfolio-details .stats-ribbon {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin: var(--section-gap) 0;
        padding: 48px;
        background: var(--accent-color);
        border-radius: var(--card-radius);
        box-shadow: 0 20px 60px color-mix(in srgb, var(--accent-color) 30%, transparent);
    }

        .portfolio-details .stats-ribbon .stat-box {
            text-align: center;
            color: var(--contrast-color);
        }

            .portfolio-details .stats-ribbon .stat-box .stat-number {
                display: block;
                font-size: 42px;
                font-weight: 800;
                line-height: 1;
                margin-bottom: 8px;
            }

            .portfolio-details .stats-ribbon .stat-box .stat-text {
                font-size: 14px;
                text-transform: uppercase;
                letter-spacing: 1px;
                opacity: 0.85;
            }

@media (max-width: 992px) {
    .portfolio-details .stats-ribbon {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .portfolio-details .stats-ribbon {
        grid-template-columns: 1fr;
        padding: 32px;
    }
}

.portfolio-details .content-sections {
    margin-bottom: var(--section-gap);
}

    .portfolio-details .content-sections .content-block {
        margin-bottom: 48px;
    }

        .portfolio-details .content-sections .content-block .block-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

            .portfolio-details .content-sections .content-block .block-header .block-icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 48px;
                height: 48px;
                background: color-mix(in srgb, var(--accent-color) 15%, transparent);
                border-radius: 12px;
            }

                .portfolio-details .content-sections .content-block .block-header .block-icon i {
                    font-size: 22px;
                    color: var(--accent-color);
                }

            .portfolio-details .content-sections .content-block .block-header h3 {
                font-size: 28px;
                font-weight: 700;
                margin: 0;
            }

        .portfolio-details .content-sections .content-block .lead-text {
            font-size: 18px;
            font-weight: 500;
            line-height: 1.7;
            margin-bottom: 16px;
            color: color-mix(in srgb, var(--default-color) 90%, transparent);
        }

        .portfolio-details .content-sections .content-block p {
            line-height: 1.8;
            color: color-mix(in srgb, var(--default-color) 75%, transparent);
            margin-bottom: 16px;
        }

    .portfolio-details .content-sections .challenge-solution .cs-card {
        background: var(--surface-color);
        padding: 32px;
        border-radius: var(--card-radius);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        height: 100%;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }

        .portfolio-details .content-sections .challenge-solution .cs-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--accent-color);
        }

        .portfolio-details .content-sections .challenge-solution .cs-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .portfolio-details .content-sections .challenge-solution .cs-card .cs-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            background: color-mix(in srgb, var(--accent-color) 12%, transparent);
            border-radius: 50%;
            margin-bottom: 20px;
            transition: all 0.3s;
        }

            .portfolio-details .content-sections .challenge-solution .cs-card .cs-icon i {
                font-size: 24px;
                color: var(--accent-color);
                transition: all 0.3s;
            }

        .portfolio-details .content-sections .challenge-solution .cs-card:hover .cs-icon {
            background: var(--accent-color);
        }

            .portfolio-details .content-sections .challenge-solution .cs-card:hover .cs-icon i {
                color: var(--contrast-color);
            }

        .portfolio-details .content-sections .challenge-solution .cs-card h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .portfolio-details .content-sections .challenge-solution .cs-card p {
            color: color-mix(in srgb, var(--default-color) 70%, transparent);
            line-height: 1.7;
            margin: 0;
        }

.portfolio-details .features-sidebar {
    background: var(--surface-color);
    padding: 32px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

    .portfolio-details .features-sidebar .sidebar-title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
    }

    .portfolio-details .features-sidebar .feature-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

        .portfolio-details .features-sidebar .feature-list .feature-item {
            display: flex;
            gap: 16px;
            transition: all 0.3s;
        }

            .portfolio-details .features-sidebar .feature-list .feature-item:hover {
                transform: translateX(8px);
            }

                .portfolio-details .features-sidebar .feature-list .feature-item:hover .feature-icon {
                    background: var(--accent-color);
                }

                    .portfolio-details .features-sidebar .feature-list .feature-item:hover .feature-icon i {
                        color: var(--contrast-color);
                    }

            .portfolio-details .features-sidebar .feature-list .feature-item .feature-icon {
                flex-shrink: 0;
                width: 48px;
                height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: color-mix(in srgb, var(--accent-color) 12%, transparent);
                border-radius: 12px;
                transition: all 0.3s;
            }

                .portfolio-details .features-sidebar .feature-list .feature-item .feature-icon i {
                    font-size: 22px;
                    color: var(--accent-color);
                    transition: all 0.3s;
                }

            .portfolio-details .features-sidebar .feature-list .feature-item .feature-content h5 {
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 4px;
            }

            .portfolio-details .features-sidebar .feature-list .feature-item .feature-content p {
                font-size: 14px;
                color: color-mix(in srgb, var(--default-color) 60%, transparent);
                margin: 0;
            }

.portfolio-details .gallery-section {
    margin-bottom: var(--section-gap);
}

    .portfolio-details .gallery-section .gallery-header {
        margin-bottom: 32px;
    }

        .portfolio-details .gallery-section .gallery-header .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 8px;
        }

            .portfolio-details .gallery-section .gallery-header .section-label i {
                font-size: 16px;
            }

        .portfolio-details .gallery-section .gallery-header h3 {
            font-size: 28px;
            font-weight: 700;
            margin: 0;
        }

    .portfolio-details .gallery-section .gallery-card {
        position: relative;
        border-radius: var(--card-radius);
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

        .portfolio-details .gallery-section .gallery-card img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .portfolio-details .gallery-section .gallery-card.large img {
            aspect-ratio: 4/3;
        }

        .portfolio-details .gallery-section .gallery-card .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: color-mix(in srgb, var(--accent-color) 70%, transparent);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s;
        }

            .portfolio-details .gallery-section .gallery-card .gallery-overlay i {
                font-size: 32px;
                color: var(--contrast-color);
                transform: scale(0.5);
                transition: all 0.3s;
            }

        .portfolio-details .gallery-section .gallery-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

            .portfolio-details .gallery-section .gallery-card:hover img {
                transform: scale(1.08);
            }

            .portfolio-details .gallery-section .gallery-card:hover .gallery-overlay {
                opacity: 1;
            }

                .portfolio-details .gallery-section .gallery-card:hover .gallery-overlay i {
                    transform: scale(1);
                }

.portfolio-details .navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

    .portfolio-details .navigation-bar .nav-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 24px;
        color: var(--heading-color);
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s;
    }

        .portfolio-details .navigation-bar .nav-link .nav-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: color-mix(in srgb, var(--default-color) 8%, transparent);
            border-radius: 50%;
            transition: all 0.3s;
        }

            .portfolio-details .navigation-bar .nav-link .nav-icon i {
                font-size: 22px;
            }

        .portfolio-details .navigation-bar .nav-link:hover {
            color: var(--accent-color);
        }

            .portfolio-details .navigation-bar .nav-link:hover .nav-icon {
                background: var(--accent-color);
            }

                .portfolio-details .navigation-bar .nav-link:hover .nav-icon i {
                    color: var(--contrast-color);
                }

        .portfolio-details .navigation-bar .nav-link.prev:hover .nav-icon {
            transform: translateX(-4px);
        }

        .portfolio-details .navigation-bar .nav-link.next:hover .nav-icon {
            transform: translateX(4px);
        }

        .portfolio-details .navigation-bar .nav-link.center {
            background: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 35%, transparent);
        }

            .portfolio-details .navigation-bar .nav-link.center .nav-icon {
                background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
            }

                .portfolio-details .navigation-bar .nav-link.center .nav-icon i {
                    color: var(--contrast-color);
                }

            .portfolio-details .navigation-bar .nav-link.center:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color) 45%, transparent);
                color: var(--contrast-color);
            }

@media (max-width: 768px) {
    .portfolio-details .navigation-bar {
        flex-direction: column;
        gap: 16px;
    }

        .portfolio-details .navigation-bar .nav-link.center {
            order: -1;
        }

        .portfolio-details .navigation-bar .nav-link {
            width: 100%;
            justify-content: center;
        }
}

@media (max-width: 992px) {
    .portfolio-details .project-info-card {
        margin-top: 32px;
    }

        .portfolio-details .project-info-card .project-title {
            font-size: 28px;
        }
}

@media (max-width: 576px) {
    .portfolio-details {
        --section-gap: 48px;
    }

        .portfolio-details .project-info-card {
            padding: 24px;
        }

            .portfolio-details .project-info-card .project-title {
                font-size: 24px;
            }

            .portfolio-details .project-info-card .meta-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

        .portfolio-details .content-sections .content-block .block-header h3 {
            font-size: 22px;
        }

        .portfolio-details .gallery-section .gallery-header h3 {
            font-size: 22px;
        }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .service-details {
        padding: 64px 0;
    }
}

.service-details .service-hero {
    position: relative;
    margin-bottom: 48px;
    border-radius: 20px;
    overflow: hidden;
}

    .service-details .service-hero img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    .service-details .service-hero .service-badge {
        position: absolute;
        top: 24px;
        left: 24px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        background: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .service-details .service-hero .service-badge i {
            font-size: 14px;
        }

.service-details .service-overview {
    margin-bottom: 48px;
}

    .service-details .service-overview .overview-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--accent-color);
    }

        .service-details .service-overview .overview-label .dot {
            width: 8px;
            height: 8px;
            background: var(--accent-color);
            border-radius: 50%;
        }

    .service-details .service-overview h2 {
        font-size: 36px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 24px;
        letter-spacing: -0.5px;
    }

@media (max-width: 768px) {
    .service-details .service-overview h2 {
        font-size: 28px;
    }
}

.service-details .service-overview p {
    font-size: 17px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color) 85%, transparent);
    margin-bottom: 16px;
}

    .service-details .service-overview p:last-child {
        margin-bottom: 0;
    }

.service-details .key-features {
    margin-bottom: 48px;
}

    .service-details .key-features h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 32px;
    }

    .service-details .key-features .feature-card {
        display: flex;
        gap: 20px;
        padding: 28px;
        background: var(--surface-color);
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        height: 100%;
    }

        .service-details .key-features .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .service-details .key-features .feature-card .feature-icon {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: color-mix(in srgb, var(--accent-color) 12%, transparent);
            border-radius: 12px;
        }

            .service-details .key-features .feature-card .feature-icon i {
                font-size: 24px;
                color: var(--accent-color);
            }

        .service-details .key-features .feature-card .feature-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .service-details .key-features .feature-card .feature-content p {
            font-size: 15px;
            line-height: 1.7;
            color: color-mix(in srgb, var(--default-color) 75%, transparent);
            margin-bottom: 0;
        }

.service-details .service-process {
    margin-bottom: 48px;
}

    .service-details .service-process h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 32px;
    }

    .service-details .service-process .process-timeline {
        position: relative;
    }

        .service-details .service-process .process-timeline::before {
            content: "";
            position: absolute;
            left: 28px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: color-mix(in srgb, var(--accent-color) 20%, transparent);
        }

@media (max-width: 576px) {
    .service-details .service-process .process-timeline::before {
        left: 20px;
    }
}

.service-details .service-process .process-timeline .process-item {
    display: flex;
    gap: 24px;
    padding-bottom: 32px;
    position: relative;
}

    .service-details .service-process .process-timeline .process-item:last-child {
        padding-bottom: 0;
    }

    .service-details .service-process .process-timeline .process-item .process-number {
        flex-shrink: 0;
        width: 58px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 50%;
        font-size: 18px;
        font-weight: 800;
        position: relative;
        z-index: 1;
    }

@media (max-width: 576px) {
    .service-details .service-process .process-timeline .process-item .process-number {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
}

.service-details .service-process .process-timeline .process-item .process-content {
    padding-top: 8px;
}

    .service-details .service-process .process-timeline .process-item .process-content h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

@media (max-width: 576px) {
    .service-details .service-process .process-timeline .process-item .process-content h4 {
        font-size: 18px;
    }
}

.service-details .service-process .process-timeline .process-item .process-content p {
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color) 75%, transparent);
    margin-bottom: 0;
}

.service-details .service-gallery {
    margin-bottom: 0;
}

    .service-details .service-gallery h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .service-details .service-gallery a {
        display: block;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
    }

        .service-details .service-gallery a::before {
            content: "";
            position: absolute;
            inset: 0;
            background: color-mix(in srgb, var(--accent-color) 0%, transparent);
            transition: all 0.3s ease;
            z-index: 1;
        }

        .service-details .service-gallery a::after {
            content: "\f52c";
            font-family: "bootstrap-icons";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            color: var(--contrast-color);
            font-size: 32px;
            z-index: 2;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .service-details .service-gallery a:hover::before {
            background: color-mix(in srgb, var(--accent-color) 70%, transparent);
        }

        .service-details .service-gallery a:hover::after {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .service-details .service-gallery a:hover img {
            transform: scale(1.05);
        }

        .service-details .service-gallery a img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

.service-details .sidebar-widget {
    margin-bottom: 32px;
    padding: 32px;
    background: var(--surface-color);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

@media (max-width: 992px) {
    .service-details .sidebar-widget {
        padding: 24px;
    }
}

.service-details .sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color) 8%, transparent);
}

.service-details .service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-details .service-list ul li {
        margin-bottom: 8px;
    }

        .service-details .service-list ul li:last-child {
            margin-bottom: 0;
        }

        .service-details .service-list ul li a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            border-radius: 12px;
            color: var(--default-color);
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            background: color-mix(in srgb, var(--default-color) 4%, transparent);
        }

            .service-details .service-list ul li a i {
                font-size: 18px;
                color: var(--accent-color);
                transition: transform 0.3s ease;
            }

            .service-details .service-list ul li a:hover {
                background: color-mix(in srgb, var(--accent-color) 10%, transparent);
                color: var(--accent-color);
            }

                .service-details .service-list ul li a:hover i {
                    transform: translateX(4px);
                }

        .service-details .service-list ul li.active a {
            background: var(--accent-color);
            color: var(--contrast-color);
        }

            .service-details .service-list ul li.active a i {
                color: var(--contrast-color);
            }

.service-details .stats-widget {
    background: var(--accent-color);
    text-align: center;
}

    .service-details .stats-widget .stat-item {
        padding: 16px 0;
        border-bottom: 1px solid color-mix(in srgb, var(--contrast-color) 15%, transparent);
    }

        .service-details .stats-widget .stat-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .service-details .stats-widget .stat-item:first-child {
            padding-top: 0;
        }

        .service-details .stats-widget .stat-item .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: var(--contrast-color);
            line-height: 1;
            margin-bottom: 8px;
        }

        .service-details .stats-widget .stat-item p {
            margin-bottom: 0;
            color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.service-details .download-widget .download-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: color-mix(in srgb, var(--default-color) 4%, transparent);
    border-radius: 12px;
    margin-bottom: 12px;
    color: var(--default-color);
    transition: all 0.3s ease;
}

    .service-details .download-widget .download-item:last-child {
        margin-bottom: 0;
    }

    .service-details .download-widget .download-item:hover {
        background: color-mix(in srgb, var(--accent-color) 10%, transparent);
        transform: translateX(4px);
    }

        .service-details .download-widget .download-item:hover .download-icon {
            background: var(--accent-color);
        }

            .service-details .download-widget .download-item:hover .download-icon i {
                color: var(--contrast-color);
            }

        .service-details .download-widget .download-item:hover > i {
            color: var(--accent-color);
        }

    .service-details .download-widget .download-item .download-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: color-mix(in srgb, var(--accent-color) 12%, transparent);
        border-radius: 10px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

        .service-details .download-widget .download-item .download-icon i {
            font-size: 22px;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

    .service-details .download-widget .download-item .download-info {
        flex: 1;
    }

        .service-details .download-widget .download-item .download-info .file-name {
            display: block;
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 2px;
        }

        .service-details .download-widget .download-item .download-info .file-size {
            font-size: 13px;
            color: color-mix(in srgb, var(--default-color) 60%, transparent);
        }

    .service-details .download-widget .download-item > i {
        font-size: 18px;
        color: color-mix(in srgb, var(--default-color) 40%, transparent);
        transition: all 0.3s ease;
    }

.service-details .cta-widget {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 95%, black) 0%, var(--accent-color) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .service-details .cta-widget::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, color-mix(in srgb, var(--contrast-color) 10%, transparent) 0%, transparent 70%);
    }

    .service-details .cta-widget .cta-content {
        position: relative;
        z-index: 1;
    }

    .service-details .cta-widget .cta-icon {
        width: 72px;
        height: 72px;
        margin: 0 auto 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
        border-radius: 50%;
    }

        .service-details .cta-widget .cta-icon i {
            font-size: 32px;
            color: var(--contrast-color);
        }

    .service-details .cta-widget h3 {
        color: var(--contrast-color);
        font-size: 22px;
        font-weight: 700;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 12px;
    }

    .service-details .cta-widget p {
        color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .service-details .cta-widget .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 32px;
        background: var(--contrast-color);
        color: var(--accent-color);
        border-radius: 50px;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s ease;
    }

        .service-details .cta-widget .cta-btn i {
            transition: transform 0.3s ease;
        }

        .service-details .cta-widget .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

            .service-details .cta-widget .cta-btn:hover i {
                transform: translateX(4px);
            }

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .terms-header {
    text-align: center;
    padding-bottom: 48px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 32px;
}

    .terms-of-service .terms-header .header-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 500;
        margin-bottom: 24px;
    }

        .terms-of-service .terms-header .header-badge i {
            font-size: 1rem;
        }

    .terms-of-service .terms-header h2 {
        font-size: 2.75rem;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

@media (max-width: 768px) {
    .terms-of-service .terms-header h2 {
        font-size: 2rem;
    }
}

.terms-of-service .terms-header p {
    font-size: 1.125rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.terms-of-service .terms-header .update-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.875rem;
}

    .terms-of-service .terms-header .update-info i {
        font-size: 1rem;
    }

.terms-of-service .quick-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background-color: var(--surface-color);
    border-radius: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--default-color), transparent 94%);
}

@media (max-width: 768px) {
    .terms-of-service .quick-nav {
        flex-direction: column;
        align-items: flex-start;
    }
}

.terms-of-service .quick-nav .nav-label {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.875rem;
    white-space: nowrap;
}

.terms-of-service .quick-nav .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .terms-of-service .quick-nav .nav-links a {
        padding: 8px 16px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
        color: var(--accent-color);
        border-radius: 6px;
        font-size: 0.875rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .terms-of-service .quick-nav .nav-links a:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
        }

.terms-of-service .terms-body .terms-article {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    .terms-of-service .terms-body .terms-article {
        flex-direction: column;
        gap: 16px;
        padding: 32px 0;
    }
}

.terms-of-service .terms-body .terms-article:last-child {
    border-bottom: none;
}

.terms-of-service .terms-body .terms-article .article-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: color-mix(in srgb, var(--accent-color), transparent 70%);
    line-height: 1;
    min-width: 60px;
    font-family: var(--heading-font);
}

@media (max-width: 768px) {
    .terms-of-service .terms-body .terms-article .article-number {
        font-size: 2rem;
    }
}

.terms-of-service .terms-body .terms-article .article-content {
    flex: 1;
}

    .terms-of-service .terms-body .terms-article .article-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 16px;
        color: var(--heading-color);
    }

@media (max-width: 768px) {
    .terms-of-service .terms-body .terms-article .article-content h3 {
        font-size: 1.25rem;
    }
}

.terms-of-service .terms-body .terms-article .article-content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
}

    .terms-of-service .terms-body .terms-article .article-content p:last-child {
        margin-bottom: 0;
    }

.terms-of-service .highlight-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

    .terms-of-service .highlight-card .card-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .terms-of-service .highlight-card .card-icon i {
            font-size: 1.5rem;
        }

    .terms-of-service .highlight-card .card-text {
        flex: 1;
    }

        .terms-of-service .highlight-card .card-text h5 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .terms-of-service .highlight-card .card-text p {
            margin: 0;
            font-size: 0.9375rem;
            line-height: 1.6;
        }

    .terms-of-service .highlight-card.info {
        background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    }

        .terms-of-service .highlight-card.info .card-icon {
            background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
        }

            .terms-of-service .highlight-card.info .card-icon i {
                color: var(--accent-color);
            }

    .terms-of-service .highlight-card.warning {
        background-color: color-mix(in srgb, #f59e0b, transparent 92%);
    }

        .terms-of-service .highlight-card.warning .card-icon {
            background-color: color-mix(in srgb, #f59e0b, transparent 80%);
        }

            .terms-of-service .highlight-card.warning .card-icon i {
                color: #d97706;
            }

        .terms-of-service .highlight-card.warning h5 {
            color: #b45309;
        }

    .terms-of-service .highlight-card.notice {
        background-color: color-mix(in srgb, #8b5cf6, transparent 92%);
    }

        .terms-of-service .highlight-card.notice .card-icon {
            background-color: color-mix(in srgb, #8b5cf6, transparent 80%);
        }

            .terms-of-service .highlight-card.notice .card-icon i {
                color: #7c3aed;
            }

.terms-of-service .checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

    .terms-of-service .checklist .check-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        background-color: var(--surface-color);
        border-radius: 10px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
        transition: all 0.3s ease;
    }

        .terms-of-service .checklist .check-item:hover {
            border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
        }

        .terms-of-service .checklist .check-item i {
            font-size: 1.25rem;
            color: var(--accent-color);
        }

        .terms-of-service .checklist .check-item span {
            font-size: 0.9375rem;
            color: color-mix(in srgb, var(--default-color), transparent 15%);
        }

.terms-of-service .restrictions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 576px) {
    .terms-of-service .restrictions-grid {
        grid-template-columns: 1fr;
    }
}

.terms-of-service .restrictions-grid .restriction-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background-color: color-mix(in srgb, #ef4444, transparent 96%);
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, #ef4444, transparent 85%);
}

    .terms-of-service .restrictions-grid .restriction-card i {
        font-size: 1.25rem;
        color: #dc2626;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .terms-of-service .restrictions-grid .restriction-card p {
        margin: 0;
        font-size: 0.9375rem;
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        line-height: 1.5;
    }

.terms-of-service .disclaimer-panel {
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 24px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .terms-of-service .disclaimer-panel .panel-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 16px 20px;
        background-color: color-mix(in srgb, var(--default-color), transparent 95%);
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .terms-of-service .disclaimer-panel .panel-header i {
            font-size: 1.125rem;
            color: var(--accent-color);
        }

        .terms-of-service .disclaimer-panel .panel-header span {
            font-weight: 600;
            font-size: 0.9375rem;
            color: var(--heading-color);
        }

    .terms-of-service .disclaimer-panel .panel-list {
        list-style: none;
        padding: 20px;
        margin: 0;
    }

        .terms-of-service .disclaimer-panel .panel-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 12px;
            font-size: 0.9375rem;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            line-height: 1.5;
        }

            .terms-of-service .disclaimer-panel .panel-list li:last-child {
                margin-bottom: 0;
            }

            .terms-of-service .disclaimer-panel .panel-list li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 8px;
                width: 6px;
                height: 6px;
                background-color: var(--accent-color);
                border-radius: 50%;
            }

.terms-of-service .terms-footer {
    margin-top: 64px;
}

    .terms-of-service .terms-footer .footer-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        padding: 40px;
        background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
        border-radius: 16px;
    }

@media (max-width: 768px) {
    .terms-of-service .terms-footer .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

.terms-of-service .terms-footer .footer-content .footer-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--contrast-color);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .terms-of-service .terms-footer .footer-content .footer-text h4 {
        font-size: 1.25rem;
    }
}

.terms-of-service .terms-footer .footer-content .footer-text p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    margin: 0;
    font-size: 1rem;
}

.terms-of-service .terms-footer .footer-content .footer-actions {
    display: flex;
    gap: 12px;
}

@media (max-width: 576px) {
    .terms-of-service .terms-footer .footer-content .footer-actions {
        flex-direction: column;
        width: 100%;
    }
}

.terms-of-service .terms-footer .footer-content .footer-actions .btn-primary-action,
.terms-of-service .terms-footer .footer-content .footer-actions .btn-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .terms-of-service .terms-footer .footer-content .footer-actions .btn-primary-action i,
    .terms-of-service .terms-footer .footer-content .footer-actions .btn-secondary-action i {
        font-size: 1.125rem;
    }

.terms-of-service .terms-footer .footer-content .footer-actions .btn-primary-action {
    background-color: var(--contrast-color);
    color: var(--accent-color);
}

    .terms-of-service .terms-footer .footer-content .footer-actions .btn-primary-action:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px color-mix(in srgb, #000, transparent 80%);
    }

.terms-of-service .terms-footer .footer-content .footer-actions .btn-secondary-action {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
    color: var(--contrast-color);
    border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

    .terms-of-service .terms-footer .footer-content .footer-actions .btn-secondary-action:hover {
        background-color: color-mix(in srgb, var(--contrast-color), transparent 75%);
    }

@media print {

    .terms-of-service .terms-footer,
    .terms-of-service .quick-nav {
        display: none;
    }

    .terms-of-service .terms-article {
        page-break-inside: avoid;
    }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
    font-size: 1rem;
    line-height: 1.7;
}

    .privacy .sidebar-nav {
        position: sticky;
        top: 100px;
        background-color: var(--surface-color);
        border-radius: 16px;
        padding: 32px 24px;
        box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
    }

        .privacy .sidebar-nav .nav-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .privacy .sidebar-nav .nav-header i {
                font-size: 1.5rem;
                color: var(--accent-color);
            }

            .privacy .sidebar-nav .nav-header span {
                font-size: 1.1rem;
                font-weight: 600;
                color: var(--heading-color);
            }

        .privacy .sidebar-nav .nav-links {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
        }

            .privacy .sidebar-nav .nav-links li {
                margin-bottom: 8px;
            }

                .privacy .sidebar-nav .nav-links li:last-child {
                    margin-bottom: 0;
                }

                .privacy .sidebar-nav .nav-links li a {
                    display: block;
                    padding: 10px 16px;
                    border-radius: 8px;
                    color: var(--default-color);
                    font-size: 0.95rem;
                    transition: all 0.3s ease;
                }

                    .privacy .sidebar-nav .nav-links li a:hover {
                        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
                        color: var(--accent-color);
                        transform: translateX(4px);
                    }

        .privacy .sidebar-nav .effective-date {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px;
            background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--accent-color);
        }

            .privacy .sidebar-nav .effective-date i {
                font-size: 1rem;
            }

    .privacy .policy-intro-card {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
        border-radius: 16px;
        margin-bottom: 40px;
        border-left: 4px solid var(--accent-color);
    }

        .privacy .policy-intro-card .intro-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--accent-color);
            border-radius: 12px;
        }

            .privacy .policy-intro-card .intro-icon i {
                font-size: 1.5rem;
                color: var(--contrast-color);
            }

        .privacy .policy-intro-card p {
            margin: 0;
            font-size: 1.05rem;
            color: color-mix(in srgb, var(--default-color), transparent 10%);
        }

    .privacy .policy-section {
        display: flex;
        gap: 24px;
        padding: 32px 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    }

        .privacy .policy-section:last-child {
            border-bottom: none;
        }

        .privacy .policy-section .section-number {
            flex-shrink: 0;
            font-size: 2.5rem;
            font-weight: 700;
            color: color-mix(in srgb, var(--accent-color), transparent 70%);
            line-height: 1;
        }

        .privacy .policy-section .section-content {
            flex: 1;
        }

            .privacy .policy-section .section-content h2 {
                font-size: 1.6rem;
                color: var(--heading-color);
                margin-bottom: 16px;
                font-weight: 600;
            }

            .privacy .policy-section .section-content h4 {
                font-size: 1.15rem;
                color: var(--heading-color);
                margin-bottom: 12px;
                font-weight: 600;
            }

            .privacy .policy-section .section-content p {
                margin-bottom: 16px;
                color: color-mix(in srgb, var(--default-color), transparent 15%);
            }

                .privacy .policy-section .section-content p:last-child {
                    margin-bottom: 0;
                }

            .privacy .policy-section .section-content ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .privacy .policy-section .section-content ul li {
                    position: relative;
                    padding-left: 24px;
                    margin-bottom: 10px;
                    color: color-mix(in srgb, var(--default-color), transparent 15%);
                }

                    .privacy .policy-section .section-content ul li::before {
                        content: "";
                        position: absolute;
                        left: 0;
                        top: 8px;
                        width: 8px;
                        height: 8px;
                        background-color: var(--accent-color);
                        border-radius: 50%;
                    }

                    .privacy .policy-section .section-content ul li:last-child {
                        margin-bottom: 0;
                    }

    .privacy .info-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 24px;
    }

        .privacy .info-cards .info-card {
            background-color: var(--surface-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s ease;
        }

            .privacy .info-cards .info-card:hover {
                box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 90%);
                transform: translateY(-4px);
            }

            .privacy .info-cards .info-card .card-icon {
                width: 48px;
                height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
                border-radius: 10px;
                margin-bottom: 16px;
            }

                .privacy .info-cards .info-card .card-icon i {
                    font-size: 1.4rem;
                    color: var(--accent-color);
                }

            .privacy .info-cards .info-card h4 {
                margin-bottom: 16px;
            }

@media (max-width: 576px) {
    .privacy .info-cards {
        grid-template-columns: 1fr;
    }
}

.privacy .usage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

    .privacy .usage-grid .usage-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

        .privacy .usage-grid .usage-item:hover {
            border-color: var(--accent-color);
        }

        .privacy .usage-grid .usage-item i {
            font-size: 1.3rem;
            color: var(--accent-color);
        }

        .privacy .usage-grid .usage-item span {
            font-size: 0.9rem;
            color: var(--default-color);
        }

@media (max-width: 768px) {
    .privacy .usage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .privacy .usage-grid {
        grid-template-columns: 1fr;
    }
}

.privacy .sharing-block {
    margin-top: 24px;
    padding: 24px;
    background-color: var(--surface-color);
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
}

    .privacy .sharing-block h4 {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }

        .privacy .sharing-block h4 i {
            color: var(--accent-color);
        }

    .privacy .sharing-block p {
        margin-bottom: 16px;
    }

    .privacy .sharing-block ul {
        margin-top: 16px;
    }

.privacy .security-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

    .privacy .security-features .security-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px;
        background-color: var(--surface-color);
        border-radius: 12px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
        transition: all 0.3s ease;
    }

        .privacy .security-features .security-item:hover {
            box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 92%);
        }

        .privacy .security-features .security-item .security-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
            border-radius: 12px;
        }

            .privacy .security-features .security-item .security-icon i {
                font-size: 1.5rem;
                color: var(--contrast-color);
            }

        .privacy .security-features .security-item .security-text h5 {
            font-size: 1.1rem;
            color: var(--heading-color);
            margin-bottom: 4px;
            font-weight: 600;
        }

        .privacy .security-features .security-item .security-text p {
            margin: 0;
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

.privacy .rights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

    .privacy .rights-list .right-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        background-color: var(--surface-color);
        border-radius: 12px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    }

        .privacy .rights-list .right-item i {
            font-size: 1.4rem;
            color: var(--accent-color);
            margin-top: 4px;
        }

        .privacy .rights-list .right-item div strong {
            display: block;
            font-size: 1rem;
            color: var(--heading-color);
            margin-bottom: 4px;
        }

        .privacy .rights-list .right-item div span {
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

@media (max-width: 576px) {
    .privacy .rights-list {
        grid-template-columns: 1fr;
    }
}

.privacy .contact-section .contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

    .privacy .contact-section .contact-cards .contact-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 24px;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        border-radius: 50px;
        transition: all 0.3s ease;
    }

        .privacy .contact-section .contact-cards .contact-card:hover {
            border-color: var(--accent-color);
            background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
        }

        .privacy .contact-section .contact-cards .contact-card i {
            font-size: 1.2rem;
            color: var(--accent-color);
        }

        .privacy .contact-section .contact-cards .contact-card span {
            font-size: 0.95rem;
            color: var(--default-color);
        }

@media (max-width: 576px) {
    .privacy .contact-section .contact-cards {
        flex-direction: column;
    }

        .privacy .contact-section .contact-cards .contact-card {
            width: 100%;
            justify-content: center;
        }
}

@media (max-width: 992px) {
    .privacy .sidebar-nav {
        position: static;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .privacy .policy-intro-card {
        flex-direction: column;
        text-align: center;
    }

        .privacy .policy-intro-card .intro-icon {
            margin: 0 auto;
        }

    .privacy .policy-section {
        flex-direction: column;
        gap: 16px;
    }

        .privacy .policy-section .section-number {
            font-size: 2rem;
        }

        .privacy .policy-section .section-content h2 {
            font-size: 1.4rem;
        }
}

@media print {
    .privacy .sidebar-nav {
        display: none;
    }

    .privacy .policy-section {
        page-break-inside: avoid;
        border: none;
        padding: 20pt 0;
    }

    .privacy .info-cards,
    .privacy .usage-grid,
    .privacy .rights-list {
        display: block;
    }

    .privacy .info-card,
    .privacy .usage-item,
    .privacy .right-item {
        margin-bottom: 10pt;
        box-shadow: none;
        border: 1pt solid #ccc;
    }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

    .error-404::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -20%;
        width: 70%;
        height: 150%;
        background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 100%);
        border-radius: 50%;
        pointer-events: none;
    }

    .error-404 .error-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 48px;
    }

        .error-404 .error-visual .error-code {
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .error-404 .error-visual .error-code .digit {
                font-size: clamp(80px, 15vw, 160px);
                font-weight: 700;
                font-family: var(--heading-font);
                color: var(--heading-color);
                line-height: 1;
            }

                .error-404 .error-visual .error-code .digit.middle {
                    color: var(--accent-color);
                }

                    .error-404 .error-visual .error-code .digit.middle i {
                        font-size: clamp(70px, 14vw, 140px);
                    }

        .error-404 .error-visual .error-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

            .error-404 .error-visual .error-decoration .circle {
                position: absolute;
                border-radius: 50%;
                border: 2px dashed color-mix(in srgb, var(--accent-color), transparent 70%);
                animation: rotate 20s linear infinite;
            }

                .error-404 .error-visual .error-decoration .circle.circle-1 {
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                }

                .error-404 .error-visual .error-decoration .circle.circle-2 {
                    width: 80%;
                    height: 80%;
                    top: 10%;
                    left: 10%;
                    animation-direction: reverse;
                    animation-duration: 15s;
                }

                .error-404 .error-visual .error-decoration .circle.circle-3 {
                    width: 60%;
                    height: 60%;
                    top: 20%;
                    left: 20%;
                    animation-duration: 25s;
                }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.error-404 .error-content .error-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 24px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.error-404 .error-content .error-heading {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.error-404 .error-content .error-text {
    font-size: 16px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 40px;
    max-width: 480px;
}

.error-404 .error-content .action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

    .error-404 .error-content .action-buttons .btn-home {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        transition: all 0.3s ease;
    }

        .error-404 .error-content .action-buttons .btn-home:hover {
            background-color: color-mix(in srgb, var(--accent-color), #000 15%);
            transform: translateX(-4px);
        }

        .error-404 .error-content .action-buttons .btn-home i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .error-404 .error-content .action-buttons .btn-home:hover i {
            transform: translateX(-4px);
        }

    .error-404 .error-content .action-buttons .btn-report {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        background-color: transparent;
        color: var(--heading-color);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        transition: all 0.3s ease;
        border: 2px solid color-mix(in srgb, var(--default-color), transparent 75%);
    }

        .error-404 .error-content .action-buttons .btn-report:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
        }

        .error-404 .error-content .action-buttons .btn-report i {
            font-size: 16px;
        }

.error-404 .quick-navigation {
    background-color: var(--surface-color);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

    .error-404 .quick-navigation .nav-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--heading-color);
        margin-bottom: 32px;
        text-align: center;
    }

    .error-404 .quick-navigation .nav-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

@media (max-width: 992px) {
    .error-404 .quick-navigation .nav-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .error-404 .quick-navigation .nav-links {
        grid-template-columns: 1fr;
    }
}

.error-404 .quick-navigation .nav-link-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: var(--background-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .error-404 .quick-navigation .nav-link-item:hover {
        border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
        transform: translateY(-4px);
        box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color), transparent 92%);
    }

        .error-404 .quick-navigation .nav-link-item:hover .icon-wrap {
            background-color: var(--accent-color);
        }

            .error-404 .quick-navigation .nav-link-item:hover .icon-wrap i {
                color: var(--contrast-color);
            }

    .error-404 .quick-navigation .nav-link-item .icon-wrap {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
        border-radius: 10px;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

        .error-404 .quick-navigation .nav-link-item .icon-wrap i {
            font-size: 22px;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

    .error-404 .quick-navigation .nav-link-item .link-content {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

        .error-404 .quick-navigation .nav-link-item .link-content .link-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--heading-color);
        }

        .error-404 .quick-navigation .nav-link-item .link-content .link-desc {
            font-size: 13px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

@media (max-width: 992px) {
    .error-404 {
        padding: 80px 0;
    }

        .error-404 .error-visual {
            padding: 32px;
            margin-bottom: 32px;
        }

        .error-404 .error-content {
            text-align: center;
        }

            .error-404 .error-content .error-text {
                margin-left: auto;
                margin-right: auto;
            }

            .error-404 .error-content .action-buttons {
                justify-content: center;
            }
}

@media (max-width: 576px) {
    .error-404 .quick-navigation {
        padding: 24px;
    }

    .error-404 .error-content .action-buttons {
        flex-direction: column;
        width: 100%;
    }

        .error-404 .error-content .action-buttons .btn-home,
        .error-404 .error-content .action-buttons .btn-report {
            width: 100%;
            justify-content: center;
        }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.drawer {
    position: fixed;
    right: 8px;
    border-radius: 2rem;
    bottom: 32%;
    transition: transform 0.3s ease;
    z-index: 11;
    background-color: rgb(255 255 255 / 16%);
    padding: 1rem;
    border: solid 1px #eaeaea;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

    .drawer a {
        transition: transform 0.3s ease;
        border: solid 2px transparent;
    }

        .drawer a:hover {
            transform: scale(1.2);
            border: solid 2px #ffffff;
            border-radius: 50%;
        }
/* .scrolled header .logo img {
    max-height: 40px;
} */
.bg2 {
    background: #393186;
}

.bg3 {
    background: rgb(57 49 134 / 80%);
}

.newsHead {
    clip-path: polygon(0% 0, 100% 0%, 100% 100%, 14% 150%);
    background: #ef7f1b;
    min-width: 120px;
    width: 14%;
}


.shadow2 {
    box-shadow: inset 0 0 10px #e2e2e2;
}

.nav2 {
    --bs-nav-link-color: var(--bs-white);
    --bs-nav-link-hover-color: #ffad63;
    --bs-nav-pills-link-active-color: #393186;
    --bs-nav-pills-link-active-bg: var(--bs-white);
    background: #393186;
}

.footer2 {
    background: url(../img/footer.jpg);
    background-size: cover;
}

.footer2Cont {
    width: 88%;
    margin: auto;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.swiper-pagination-bullet {
    width: 22px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.35);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #1937B2!important;
    width: 36px;
}
/* ===============================
   GLOBAL BREADCRUMB THEME
   Colors:
   Primary  : #ef7f1b
   Secondary: #1937B2
   =============================== */

.breadcrumbs2 {
    /*position: relative;
    padding: 0.5rem 0!important;
    background: linear-gradient( 135deg, #1937B2 0%, #1937B2 55%, #ef7f1b 100% );
    overflow: hidden;*/
    position: relative;
    padding: 2rem 0 !important;
    background: linear-gradient(45deg, #393186, rgb(57 49 134 / 70%), #393186);
    overflow: hidden;
}

    /* subtle texture overlay */
    /*.breadcrumbs2::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top left, rgba(255,255,255,0.15), transparent 60% );
    }*/

    /* page title */
    .breadcrumbs2 h3 {
        font-weight: 700;
        letter-spacing: 0.5px;
        color: #ffffff;
    }
    .breadcrumbs2 .breadcrumbs{
        margin-bottom:0 !important;
    }
    /* breadcrumb container */
    .breadcrumbs {
        background: transparent;
    }

    /* breadcrumb list */
    .breadcrumbs ol {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        list-style: none;
    }

        /* breadcrumb items */
        .breadcrumbs ol li {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
        }

            /* breadcrumb links */
            .breadcrumbs ol li a {
                color: #ffffff;
                text-decoration: none;
                font-weight: 500;
                position: relative;
                padding-bottom: 2px;
            }

                /* hover underline animation */
                .breadcrumbs ol li a::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 0;
                    height: 2px;
                    background: #ef7f1b;
                    transition: width 0.25s ease;
                }

                .breadcrumbs ol li a:hover::after {
                    width: 100%;
                }

            /* current page */
            .breadcrumbs ol li.current {
                color: #ef7f1b;
                font-weight: 600;
            }

/* responsive polish */
@media (max-width: 768px) {
    .breadcrumbs2 {
        padding: 2.5rem 0;
    }

        .breadcrumbs2 h3 {
            font-size: 1.75rem;
        }

    .breadcrumbs ol {
        justify-content: flex-start !important;
        margin-top: 0.75rem;
    }
}
/* ===============================
   Breadcrumb slash separator
   =============================== */

.breadcrumbs ol li + li::before {
    content: "/";
    margin: 0 8px;
    color: #ffffff;
    font-weight: 500;
}

/* Optional: current page stays highlighted */
.breadcrumbs ol li.current {
    color: #ef7f1b;
    font-weight: 600;
}


/* =====================================
   Government Table Theme (.table3)
   Primary  : #ef7f1b
   Secondary: #1937B2
   ===================================== */

.table3 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    margin:0px;
}

    /* Header row */
    .table3 thead th,
    .table3 tbody tr:first-child th {
        background-color: #393186;
        color: #ffffff;
        font-weight: 600;
        text-align: center;
        vertical-align: middle;
        border: 1px #dee2e6;
        padding: 1rem;
    }

    /* Body cells */
    .table3 tbody td {
        padding: 1rem;
        vertical-align: middle;
        border: 1px solid #dee2e6;
        color: #212529;
    }

        /* Number column centered */
        .table3 tbody td:first-child {
            text-align: center;
            font-weight: 600;
            color: #1937B2;
        }

    /* Zebra striping (subtle, official) */
    .table3 tbody tr:nth-child(even) {
        background-color: #f8f9fc;
    }

    /* Hover effect (desktop only, polite) */
    .table3 tbody tr:hover {
        background-color: rgba(25, 55, 178, 0.06);
    }

    /* Highlight important rows (like your evenRow bg fw-bold) */
    .table3 .evenRow,
    .table3 tr.bg {
        background-color: #ef7f1b !important;
        color: #ffffff;
    }

        .table3 .evenRow th,
        .table3 tr.bg th {
            color: #ffffff;
            border-color: #ef7f1b;
        }

    /* Links inside table */
    .table3 a {
        color: #ffff;
        text-decoration: none;
        font-weight: 500;
    }
        .table3 a i {
            color: #1937B2;
            text-decoration: none;
            font-weight: 500;
        }
        .table3 a:hover {
            text-decoration: underline;
        }

/* Responsive polish */
.table-responsive {
    border-radius: 6px;
    /*overflow: overlay;*/
}
/* =====================================
   Place to Visit – Industrial Bootstrap Skin
   Uses existing classes ONLY
   ===================================== */

.place2visit .card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    /* Hover lift – subtle, premium */
    .place2visit .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    }

/* Image treatment */
.place2visit .card-img {
    height: 320px;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Image zoom on hover */
.place2visit .card:hover .card-img {
    transform: scale(1.05);
    filter: brightness(0.65);
}

/* Overlay – industrial gradient */
.place2visit .card-img-overlay {
    background: linear-gradient( to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.15) 100% );
    padding: 1.25rem;
}

/* Title */
.place2visit .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

/* Location text */
.place2visit .card-text {
    opacity: 0.85;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

    /* Location icon spacing */
    .place2visit .card-text i {
        margin-right: 4px;
    }

/* Button – modern industrial */
.place2visit .btn_ {
    padding: 6px 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    color:white!important;
}

    /* Animated underline */
    .place2visit .btn_::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background-color: #ffffff;
        transition: width 0.3s ease;
        
    }

    .place2visit .btn_:hover::after {
        width: 100%;
    }

/* Coming Soon block */
.place2visit + .text-center .display-1,
.display-1 {
    font-weight: 700;
    opacity: 0.6;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .place2visit .card-img {
        height: 240px;
    }

    .place2visit .card-title {
        font-size: 1.1rem;
    }
}
/* ===== PREMIUM INDUSTRY PRELOADER ===== */

#site-preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #393186, #6610f2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}

.preloader-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
}

.preloader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top: 6px solid #fd7e14;
    border-right: 6px solid #6610f2;
    animation: spin 1s linear infinite;
}

.preloader-core {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, #fd7e14 0%, #6610f2 60%, #393186 100%);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Hidden State */
#site-preloader.hide {
    opacity: 0;
    visibility: hidden;
}
