@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Nunito Sans", sans-serif;
    --heading-font: "Playfair Display", serif;
    --nav-font: "Nunito Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #4b4b4b; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #313131; /* 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: #4b4b4b; /* The default color of the main navmenu links */
    --nav-hover-color: #000000; /* 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: #4b4b4b; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #313131; /* 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: #060606;
    --default-color: #e3e3e3;
    --heading-color: #ffffff;
    --accent-color: #bdb5b5;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

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

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

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

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

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

.center-block {
    display: block;
    margin: 0 auto;
}

@media(min-width:1500px) {
    .container-fluid {
        padding: 0 50px;
    }

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1500px;
    }
}

.container-fluid {
    padding: 0 15px;
}

@media(max-width:991px) {
    .container, .container-md, .container-sm {
        max-width: 90%;
    }
}

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

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

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

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

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

        .header .logo h1 {
            font-size: 30px;
            margin: 0;
            font-weight: 400;
            color: var(--heading-color);
        }

.scrolled .header {
    isolation: isolate;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .scrolled .header::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        pointer-events: none;
        z-index: -1;
    }

/*--------------------------------------------------------------
# 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: 14px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

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

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

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

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

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

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

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

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

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

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

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

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

    button#sidebarCollapse i {
        color: #000 !important;
    }

    .statictopbar {
        justify-content: space-between;
    }

    .sidemenu-btn {
        padding: 0;
    }

    .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: 18px;
            font-weight: 300;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# 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: 40px 0 20px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .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: 400;
            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: 87px;
    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: 38px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #000;
    }

    .section-title p {
        margin-bottom: 0;
        font-size: 18px;
    }

@media(max-width:1100px) {
    .section-title h2 {
        font-size: 30px;
    }
}
/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
    position: relative;
    padding-top: 80px;
    padding-bottom: 60px;
    margin: 0;
    background-image: url(https://stargems.com/assets/img/dotted-background-at-stargems.webp);
    background-size: cover;
}

#hero-2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(245, 246, 248, 0.65);
}

.hero-2 .hero-content {
    position: relative;
    z-index: 1;
}

    .hero-2 .hero-content h1 {
        font-size: 36px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: #0b2336;
        letter-spacing: 0.5px;
    }

    .hero-2 .hero-content p {
        font-size: 22px;
        color: #000;
    }

.hero-2 .swiper-horizontal > .swiper-pagination-bullets, .hero-2 .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0 !important;
}

.hero-2 .swiper-pagination {
    position: relative !important;
}

p.hero-description {
    margin: 2pc 0;
}

@media (max-width: 1500px) {
    .hero-2 .hero-content p {
        font-size: 17px;
        color: #000;
        font-weight: 300;
    }
}

@media (max-width: 1199px) {
    h1.display-title {
        font-size: 30px !important;
    }
}

@media (max-width: 992px) {
    .hero-2 .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }

        .hero-2 .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-2 .hero-content .hero-buttons {
            justify-content: center;
        }
}

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

    h1.display-title {
        font-size: 28px !important;
    }

    p.hero-description {
        margin: 1pc 0;
    }

    .hero-buttons.d-flex {
        display: block !important;
    }

        .hero-buttons.d-flex a {
            display: block !important;
        }

    .hero-text-content {
        padding: 0 1pc;
    }

    .hero-content-wrapper .hero-image-section {
        margin: 0 auto;
    }

        .hero-content-wrapper .hero-image-section img {
            max-width: 70%;
        }
}

.hero-2 .btn-primary {
    background-color: #6796b9;
    border-color: #5081a6;
    color: var(--contrast-color);
    padding: 0.75rem 2.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .hero-2 .btn-primary:hover {
        background-color: #6796b9;
        border-color: #5081a6;
    }

    .hero-2 .btn-primary i {
        vertical-align: middle;
        position: relative;
        top: -3px;
        padding-left: 5px;
    }

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

    .stats .stats-counters {
        margin-top: 0.5rem;
    }

        .stats .stats-counters .stats-counter-card {
            background: var(--surface-color);
            border-radius: 1.25rem;
            padding: 0 1rem 0 1rem;
            text-align: center;
            height: 100%;
            display: flex;
            gap: 15px;
            align-items: center;
            justify-content: center;
            transition: box-shadow 0.3s;
        }

            .stats .stats-counters .stats-counter-card .counter-value {
                color: #0b2336;
                font-family: 'Nunito Sans';
                font-size: 5rem;
                font-weight: bolder;
                letter-spacing: -0.02em;
                line-height: 1.1;
                display: flex;
                align-items: flex-end;
            }

                .stats .stats-counters .stats-counter-card .counter-value .purecounter {
                    font-size: inherit;
                    color: inherit;
                }

            .stats .stats-counters .stats-counter-card .label {
                color: #0b2336;
                font-size: 1rem;
                font-family: var(--default-font);
                font-weight: 500;
                margin-top: 0.3rem;
                letter-spacing: 0.02em;
            }

.d-middleblock {
    display: grid;
    align-content: center;
}

@media (max-width: 1199px) {
    .stats .stats-counters .stats-counter-card .counter-value {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .stats .stats-hero .headline {
        font-size: 1.7rem;
    }

    .stats .stats-counters .stats-counter-card {
        font-size: 0.97rem;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }

    .stats .stats-counters .stats-counter-card {
        display: block;
    }

        .stats .stats-counters .stats-counter-card .counter-value {
            font-size: 3rem;
            display: block;
        }
}

@media (max-width: 767px) {
    .stats {
        padding-top: 30px;
        padding-bottom: 30px;
    }

        .stats .stats-hero {
            flex-direction: column;
        }

            .stats .stats-hero .headline {
                font-size: 1.3rem;
                text-align: center;
            }

        .stats .stats-counters .stats-counter-card .counter-value {
            font-size: 35px;
            display: block;
        }

        .stats .stats-hero .lead {
            font-size: 1rem;
            text-align: center;
        }

        .stats .stats-hero .stats-rating {
            margin-inline: auto;
        }

        .stats .stats-counters .stats-counter-card {
            padding: 1rem;
            font-size: 0.93rem;
            display: block;
        }
}

@media (max-width: 500px) {
    .stats .stats-counters .stats-counter-card {
        padding: 0;
        text-align: center;
    }
}

.stats .bi-star-fill,
.stats .bi-star-half {
    color: #ffae00;
    font-size: 1.18em;
    vertical-align: -0.13em;
    margin-right: 2px;
}

    .stats .bi-star-fill:last-child,
    .stats .bi-star-half:last-child {
        margin-right: 0;
    }

/*--------------------------------------------------------------
# Tabs 2 Section
--------------------------------------------------------------*/
.tabs-2 {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #e6eff9;
}

    .tabs-2 .section-title {
        padding-bottom: 0;
    }

    .tabs-2 .tabs-wrapper {
        background-color: transparent;
        border-radius: 20px;
        padding: 40px;
        max-width: 100%;
        margin: 0 auto;
    }

.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* optional */
}

    .video-box video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .video-box.ratio.ratio-3x4 {
        padding-top: 170%;
    }


#tabs-2 .videooverly {
    color: #fff !important;
    width: 65%;
    left: 2%;
    position: absolute;
    background: #00000091;
    padding: 5px;
    margin-top: 0px;
    height: AUTO;
    border-radius: 10px;
}

.video-box.ratio.ratio-1x1.position-relative .videooverly {
    top: auto !important;
    bottom: 10px;
    width: 50% !important;
}

#tabs-2 .image-box img {
    border-radius: 10px;
}

#tabs-2 .image-box .videooverly {
    top: auto !important;
    bottom: 10px !important;
}

.videooverly h6 {
    color: #fff;
    font-size: 17px;
    font-family: 'Nunito Sans';
    font-weight: 700;
}

.videooverly p {
    font-size: 13px;
    margin-bottom: 5px;
}

.txtblock {
    padding: 10px;
}

a.overlaybtn {
    background: #232323;
    color: #fff;
    padding: 2px 10px;
    border-radius: 7px;
    font-size: 14px;
    border: 1px solid #000;
}

    a.overlaybtn:hover {
        border: 1px solid #fff;
    }

a.btntheme {
    background: #316c9a;
    margin: 0 2px;
    padding: 3px 6px;
    font-size: 13px;
    color: #fff;
    border-radius: 4px;
}

section#gallery .row {
    margin: 0px;
}

    section#gallery .row > * {
        padding: 0 0px !important;
    }

.tabs-2 .nav-tabs {
    border: 0;
    gap: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}


@media (min-width: 1500px) {
    .videooverly p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .videooverly h6 {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .tabs-2 .tabs-wrapper {
        background-color: transparent;
        border-radius: 20px;
        padding: 40px 20px !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    #tabs-2 .videooverly {
        width: 90%;
        left: 2%;
        padding: 10px;
        margin-top: 5px;
    }

    .image-box.position-relative .videooverly {
        top: 30% !important;
        width: 100%;
        width: 90%;
        left: 2%;
        padding: 5px;
    }

    .videooverly h6 {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .videooverly p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .video-box.ratio.ratio-1x1.position-relative .videooverly {
        width: 90%;
    }
}

@media (max-width: 1100px) {
    .image-box.position-relative .videooverly {
        top: 50% !important;
    }

    #tabs-2 .videooverly {
        width: 97% !important;
        left: 1% !important;
        padding: 5px 3px !important;
        margin-top: 5px !important;
    }

    .videooverly p {
        font-size: 13px;
        margin-bottom: 5px;
    }

    a.overlaybtn {
        padding: 2px 6px;
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .video-box video {
        object-fit: contain;
    }

    #tabs-2 .videooverly {
        width: 95% !important;
        left: 2% !important;
        padding: 10px 15px !important;
        margin-top: 5px !important;
        /* top: 82% !important; */
    }

    .image-box.position-relative .videooverly {
        top: 65% !important;
    }
}

@media (max-width: 600px) {
    .video-box video {
        object-fit: cover;
    }

    .tabs-2 .nav-tabs {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 0px;
    }

    #tabs-2 .videooverly {
        width: 90% !important;
        left: 4% !important;
    }

    .video-box {
        margin-bottom: 1pc;
    }

    .tabs-2 .tabs-wrapper {
        padding: 0px 15px !important;
    }
}

.tabs-2 .nav-item {
    flex: 1;
    min-width: 0;
}

@media (max-width: 992px) {
    .tabs-2 .nav-item {
        flex: none;
    }
}

.tabs-2 .nav-link {
    background: #eee;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 50px;
    cursor: pointer;
}

    .tabs-2 .nav-link::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #326f9d;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
    }

@media (max-width: 768px) {
    .tabs-2 .nav-link {
        padding: 0px 15px;
        min-height: 35px;
    }
}

.tabs-2 .nav-link .tab-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .tabs-2 .nav-link .tab-icon i {
        font-size: 24px;
        color: var(--contrast-color);
    }

@media (max-width: 768px) {
    .tabs-2 .nav-link .tab-icon {
        width: 40px;
        height: 40px;
    }

        .tabs-2 .nav-link .tab-icon i {
            font-size: 20px;
        }
}

.tabs-2 .nav-link .tab-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

    .tabs-2 .nav-link .tab-content h5 {
        margin: 0 0 4px 0;
        font-size: 14px;
        font-weight: 600;
        color: #707070;
        transition: color 0.4s ease;
        text-align: center;
        font-family: 'Nunito Sans';
    }

@media (max-width: 768px) {
    .tabs-2 .nav-link .tab-content h5 {
        font-size: 14px;
    }
}

.tabs-2 .nav-link .tab-content span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: color 0.4s ease;
}

@media (max-width: 768px) {
    .tabs-2 .nav-link .tab-content span {
        font-size: 12px;
    }
}

.tabs-2 .nav-link:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

    .tabs-2 .nav-link:hover::before {
        opacity: 1;
    }

    .tabs-2 .nav-link:hover .tab-icon {
        background: var(--contrast-color);
        box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 80%);
    }

        .tabs-2 .nav-link:hover .tab-icon i {
            color: var(--accent-color);
        }

    .tabs-2 .nav-link:hover .tab-content h5,
    .tabs-2 .nav-link:hover .tab-content span {
        color: var(--contrast-color);
    }

.tabs-2 .nav-link.active {
    border: none;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

    .tabs-2 .nav-link.active::before {
        opacity: 1;
    }

    .tabs-2 .nav-link.active .tab-icon {
        background: var(--contrast-color);
    }

        .tabs-2 .nav-link.active .tab-icon i {
            color: var(--accent-color);
        }

    .tabs-2 .nav-link.active .tab-content h5,
    .tabs-2 .nav-link.active .tab-content span {
        color: var(--contrast-color);
        font-family: 'Nunito Sans' !important;
    }

.tabs-2 .tab-content .tab-pane {
    padding: 0;
}

@media (max-width: 768px) {
    .tabs-2 .tab-content .tab-pane {
        padding: 20px 0;
    }
}

.tabs-2 .content-wrapper {
    padding-right: 40px;
}

@media (max-width: 992px) {
    .tabs-2 .content-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.tabs-2 .content-wrapper .icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

    .tabs-2 .content-wrapper .icon-badge i {
        font-size: 30px;
        color: var(--contrast-color);
    }

.tabs-2 .content-wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .tabs-2 .content-wrapper h3 {
        font-size: 24px;
    }
}

.tabs-2 .content-wrapper p {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 30px;
}

.tabs-2 .content-wrapper .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

@media (max-width: 576px) {
    .tabs-2 .content-wrapper .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.tabs-2 .content-wrapper .feature-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .tabs-2 .content-wrapper .feature-grid .feature-item i {
        font-size: 16px;
        color: var(--accent-color);
        flex-shrink: 0;
    }

    .tabs-2 .content-wrapper .feature-grid .feature-item span {
        font-size: 14px;
        color: var(--default-color);
        line-height: 1.4;
    }

.tabs-2 .content-wrapper .stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

@media (max-width: 576px) {
    .tabs-2 .content-wrapper .stats-row {
        gap: 20px;
    }
}

.tabs-2 .content-wrapper .stats-row .stat-item {
    text-align: center;
}

    .tabs-2 .content-wrapper .stats-row .stat-item .stat-number {
        font-size: 24px;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 5px;
    }

@media (max-width: 576px) {
    .tabs-2 .content-wrapper .stats-row .stat-item .stat-number {
        font-size: 20px;
    }
}

.tabs-2 .content-wrapper .stats-row .stat-item .stat-label {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tabs-2 .content-wrapper .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    color: var(--contrast-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

    .tabs-2 .content-wrapper .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
        color: var(--contrast-color);
    }

        .tabs-2 .content-wrapper .btn-primary:hover i {
            transform: translateX(5px);
        }

    .tabs-2 .content-wrapper .btn-primary i {
        transition: transform 0.3s ease;
    }

.tabs-2 .visual-content {
    position: relative;
}

    .tabs-2 .visual-content .main-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    }

        .tabs-2 .visual-content .main-image img {
            width: 100%;
            height: auto;
            transition: transform 0.6s ease;
        }

        .tabs-2 .visual-content .main-image:hover img {
            transform: scale(1.05);
        }

    .tabs-2 .visual-content .floating-card {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background: var(--surface-color);
        padding: 20px 25px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
        transform: translateY(20px);
        opacity: 0;
        animation: fadeInUp 0.8s ease 0.6s forwards;
    }

@media (max-width: 576px) {
    .tabs-2 .visual-content .floating-card {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
        gap: 10px;
    }
}

.tabs-2 .visual-content .floating-card i {
    font-size: 28px;
    color: var(--accent-color);
}

@media (max-width: 576px) {
    .tabs-2 .visual-content .floating-card i {
        font-size: 24px;
    }
}

.tabs-2 .visual-content .floating-card .card-content span {
    display: block;
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.tabs-2 .visual-content .floating-card .card-content strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
}

@media (max-width: 576px) {
    .tabs-2 .visual-content .floating-card .card-content strong {
        font-size: 14px;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .gallery .gallery-item img {
        transition: 0.3s;
    }

.gallery .gallery-links {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

    .gallery .gallery-links .preview-link,
    .gallery .gallery-links .details-link {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.5);
        transition: 0.3s;
        line-height: 1.2;
        margin: 30px 8px 0 8px;
    }

        .gallery .gallery-links .preview-link:hover,
        .gallery .gallery-links .details-link:hover {
            color: #ffffff;
        }

    .gallery .gallery-links .details-link {
        font-size: 30px;
        line-height: 0;
    }

.gallery .gallery-item:hover .gallery-links {
    opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
    margin-top: 0;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery .posrel {
    position: relative;
}

.gallery .video-box {
    border-radius: 0;
}

    .gallery .video-box.ratio.ratio-3x4 {
        padding-top: 161%;
    }

.gallery .overlaytxtblock {
    position: absolute;
    width: 38%;
    left: 40%;
    padding: 0 1pc;
}

.glightbox-clean .gslide-description {
    background: #272727;
}

.glightbox-clean .gslide-title {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.gallery .overlaytxtblock p {
    font-size: 14px;
}

@media(min-width:1500px) {
    .gallery .overlaytxtblock {
        position: absolute;
        width: 35%;
        left: 42%;
        padding: 0 1pc;
        top: 1pc;
    }
}

@media(min-width:992px) {
    .borderleft .posrel img {
        border-top-left-radius: 40px !important;
        border-bottom-left-radius: 40px !important;
    }

    .borderight video {
        border-top-right-radius: 40px !important;
        border-bottom-right-radius: 40px !important;
    }
}


@media(max-width:1199px) {
    .gallery .overlaytxtblock h3 {
        font-size: 20px;
    }

    .gallery .overlaytxtblock p {
        font-size: 13px;
    }

    a.btntheme {
        background: #316c9a;
        margin: 0 2px;
        padding: 2px 3px;
        font-size: 11px;
    }

    .gallery .overlaytxtblock p {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .gallery .overlaytxtblock {
        position: absolute;
        width: 40%;
        left: 40%;
        padding: 0 5px;
    }
}

@media(max-width:991px) {
    .gallery .overlaytxtblock {
        position: absolute;
        width: 75%;
        left: 10%;
        padding: 0 1pc;
        top: 20%;
    }
}

@media(max-width:900px) {
    .gallery .overlaytxtblock {
        position: relative;
        width: 100%;
        left: 0%;
        padding: 1pc;
    }

    .gallery .video-box.ratio.ratio-3x4 {
        padding-top: 100%;
    }

    .hero-buttons.d-flex a {
        display: inline-flex !important;
    }

    a.btntheme {
        background: #316c9a;
        margin: 0 2px;
        padding: 3px 6px;
        font-size: 12px;
        color: #fff;
        border-radius: 4px;
    }
}

@media(max-width:600px) {
    .gallery .overlaytxtblock {
        top: 0%;
    }

    .gallery .video-box.ratio.ratio-3x4 {
        padding-top: 150%;
    }
}
/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
    border: none;
    height: 100%;
    padding: 0;
}

    .tabs .nav-tabs .nav-item {
        margin: 15px 0;
        border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .tabs .nav-tabs .nav-link {
        padding: 15px 20px;
        border: none;
        border-radius: 0;
        color: var(--default-color);
        transition: 0.3s;
        background: transparent;
        cursor: pointer;
    }

        .tabs .nav-tabs .nav-link .d-flex {
            gap: 15px;
        }

        .tabs .nav-tabs .nav-link img {
            font-size: 35px;
            border-radius: 20px;
            transition: 0.3s;
            padding: 5px;
            background: #6fa4cd1a;
        }

        .tabs .nav-tabs .nav-link.active img {
            background: #c9deee;
        }

        .tabs .nav-tabs .nav-link p {
            margin: 0;
        }

        .tabs .nav-tabs .nav-link h4 {
            font-size: 22px;
            font-weight: 600;
            margin: 0 0 5px;
            transition: 0.3s;
            font-family: 'Nunito Sans';
            color: #424242;
        }

        .tabs .nav-tabs .nav-link:hover {
            color: var(--accent-color);
        }

            .tabs .nav-tabs .nav-link:hover i {
                color: var(--accent-color);
            }

        .tabs .nav-tabs .nav-link.active {
            color: var(--accent-color);
            position: relative;
            /*background: color-mix(in srgb, var(--accent-color), transparent 90%);*/
        }

            .tabs .nav-tabs .nav-link.active i {
                color: var(--accent-color);
            }

            .tabs .nav-tabs .nav-link.active::before {
                content: "";
                position: absolute;
                top: 0;
                left: -3px;
                height: 100%;
                width: 3px;
                background: var(--accent-color);
            }

@media (min-width: 1500px) {
    ul.nav.nav-tabs.flex-column.aos-init.aos-animate {
        display: grid;
        align-items: center;
    }
}

@media (max-width: 1199px) {
    .tabs .nav-tabs .nav-link p {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .tabs .nav-tabs {
        border-right: none;
        border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
        margin-bottom: 30px;
        padding: 0;
    }

        .tabs .nav-tabs .nav-item {
            margin: 8px 0;
        }

        .tabs .nav-tabs .nav-link {
            padding: 10px 15px;
        }

            .tabs .nav-tabs .nav-link.active::after {
                right: 0;
                bottom: -3px;
                top: auto;
                height: 3px;
                width: 100%;
            }
}

.tabs .tab-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.tabs .tab-content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 15px;
}

    .tabs .tab-content p.fst-italic {
        font-style: italic;
        padding: 15px;
        background: color-mix(in srgb, var(--accent-color), transparent 95%);
        border-radius: 6px;
        position: relative;
    }

.tabs .tab-content ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

    .tabs .tab-content ul li {
        position: relative;
        padding: 8px 0 8px 28px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

        .tabs .tab-content ul li i {
            position: absolute;
            left: 0;
            top: 11px;
            font-size: 18px;
            color: var(--accent-color);
        }

.tabs .tab-content img {
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199px) {
    .tabs .nav-tabs .nav-link h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .tabs .tab-content h3 {
        font-size: 24px;
        margin-top: 20px;
    }

    .tabs .tab-content img {
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Promo Cards Section
--------------------------------------------------------------*/
.promo-cards {
    --default-color: #555;
    --heading-color: #0a2e64;
    background-image: url(../img/stargems-smart-tools.webp);
    background-size: cover;
}

    .promo-cards .promo-card {
        position: relative;
        overflow: hidden;
        height: 300px;
        border-radius: 50px;
        padding: 2rem;
        transition: all 0.3s ease;
    }

        .promo-cards .promo-card .promo-card-inner {
            display: flex;
            gap: 15px;
        }

        .promo-cards .promo-card .promo-title {
            font-size: 20px;
            font-weight: bolder;
            margin-bottom: 1.5rem;
            font-size: 25px;
            text-align: center;
            font-family: 'Nunito Sans';
        }

        .promo-cards .promo-card .promo-content {
            position: relative;
            z-index: 2;
            width: 50%;
            display: grid;
            align-content: center;
        }

            .promo-cards .promo-card .promo-content .promo-subtitle {
                display: block;
                font-size: 15px;
                font-weight: 400;
                margin-bottom: 0.5rem;
                color: var(--heading-color);
                opacity: 0.8;
            }

        .promo-cards .promo-card .promo-image {
            width: 50%;
        }

            .promo-cards .promo-card .promo-image img {
                border-radius: 50px;
            }

        .promo-cards .promo-card.promo-card-1 {
            background-color: #ebe2c1;
        }

            .promo-cards .promo-card.promo-card-1 .promo-subtitle,
            .promo-cards .promo-card.promo-card-1 .promo-title {
                color: #000;
            }

            .promo-cards .promo-card.promo-card-1 .btn-shop {
                color: #000;
            }

        .promo-cards .promo-card.promo-card-2 {
            background-color: #ef5779;
        }

            .promo-cards .promo-card.promo-card-2 .promo-subtitle,
            .promo-cards .promo-card.promo-card-2 .promo-title {
                color: #fff;
            }

            .promo-cards .promo-card.promo-card-2 .btn-shop {
                color: #ef5779;
            }

        .promo-cards .promo-card.promo-card-3 {
            background-color: #76a4cc;
        }

            .promo-cards .promo-card.promo-card-3 .promo-subtitle,
            .promo-cards .promo-card.promo-card-3 .promo-title {
                color: #fff;
            }

            .promo-cards .promo-card.promo-card-3 .btn-shop {
                color: #76a4cc;
            }

@media (min-width: 1500px) {
    .promo-cards .promo-card {
        height: 330px;
    }

        .promo-cards .promo-card .btn-shop {
            top: 5px;
        }
}

@media (max-width: 1100px) {
    .promo-cards .promo-card .promo-title {
        margin-bottom: 0.5rem;
    }

    .promo-cards .promo-card {
        padding: 1rem;
    }

    .promo-cards .promo-card {
        height: 280px;
    }

        .promo-cards .promo-card .promo-content {
            max-width: 70%;
        }

            .promo-cards .promo-card .promo-content .promo-title {
                font-size: 1.6rem;
            }

        .promo-cards .promo-card .btn-shop {
            font-size: 14px;
            top: 0px;
        }
}

@media (max-width: 900px) {
    .promo-cards .promo-card .promo-card-inner {
        display: block;
        gap: 0;
    }

    .promo-cards .promo-card .promo-content, .promo-cards .promo-card .promo-content {
        max-width: 100%;
        width: 100%;
    }

    .promo-cards .promo-card {
        height: 400px;
    }

        .promo-cards .promo-card .promo-image {
            width: 80%;
            margin: 0 auto 10px;
        }
}

@media (max-width: 767.98px) {
    .promo-cards .promo-card {
        height: 250px;
        padding: 1.5rem;
    }

        .promo-cards .promo-card .promo-content {
            max-width: 60%;
        }

            .promo-cards .promo-card .promo-content .promo-subtitle {
                font-size: 0.8rem;
            }

            .promo-cards .promo-card .promo-content .promo-title {
                font-size: 1.4rem;
                margin-bottom: 1rem;
            }
}

.promo-cards .promo-card .btn-shop {
    font-size: 14px;
    background: #fff;
    border-radius: 50px;
    padding: 5px 12px;
    position: relative;
    top: 0px;
    margin: 0 auto;
    display: block;
    width: max-content;
    color: #000;
    text-align: center;
    /* min-width: 200px; */
}

@media (max-width: 575.98px) {
    .promo-cards .promo-card {
        height: 100%;
    }

        .promo-cards .promo-card .promo-content {
            max-width: 100%;
            text-align: center;
        }

            .promo-cards .promo-card .promo-content .promo-title {
                font-size: 1.2rem;
            }

        .promo-cards .promo-card .promo-image {
            width: 70%;
        }

        .promo-cards .promo-card .btn-shop {
            top: 10px;
        }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .faq .faq-image img {
        border-radius: 50px;
    }

    .faq .content h3 {
        font-weight: 600;
        font-size: 35px;
    }

    .faq .content p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

    .faq .faq-container {
        margin-top: 15px;
    }

        .faq .faq-container .faq-item {
            background-color: var(--surface-color);
            position: relative;
            padding: 20px 0px 10px;
            margin-bottom: 10px;
            overflow: hidden;
            border-bottom: 1px solid #000;
        }

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

            .faq .faq-container .faq-item h3 {
                font-weight: 600;
                color: var(--accent-color);
                font-size: 20px;
                line-height: 24px;
                margin: 0 30px 0 0px;
                transition: 0.3s;
                cursor: pointer;
            }

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

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

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

                .faq .faq-container .faq-item .faq-content p {
                    margin-bottom: 0;
                    overflow: hidden;
                    letter-spacing: 0.5px;
                }

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

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

        .faq .faq-container .faq-active h3 {
            color: #000;
        }

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

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

@media(max-width:991px) {
    .faq-image img {
        max-width: 60%;
    }
}

@media(max-width:600px) {
    .faq .content h3 {
        font-weight: 600;
        font-size: 30px;
    }

    .faq-image img {
        max-width: 95%;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
    height: auto !important;
    padding-bottom: 20px;
}

.testimonials .testimonial-card {
    background: var(--surface-color);
    border-radius: 10px;
    padding: 32px;
    border: 1px solid #d5d5d5;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

    .testimonials .testimonial-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 50%));
        border-radius: 24px 24px 0 0;
    }

    .testimonials .testimonial-card:hover {
        border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    }



section#testimonials {
    position: relative;
}

    section#testimonials .btmblock {
        position: relative;
        right: 4pc !important;
        top: 5pc;
        text-align: right;
        font-size: 22px;
        color: #0b2336;
        font-weight: 600;
    }

    section#testimonials h1 {
        text-align: left;
        letter-spacing: 1px;
        padding: 3pc 15px;
    }

.testimonials .testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonials .user-avatar {
    position: relative;
}

    .testimonials .user-avatar img {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        object-fit: cover;
        border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

.testimonials .user-info {
    flex: 1;
}

    .testimonials .user-info h3 {
        margin: 0 0 4px;
        font-size: 18px;
        font-weight: 700;
        color: var(--heading-color);
        line-height: 1.3;
    }

    .testimonials .user-info .user-role {
        display: block;
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-weight: 500;
        margin-bottom: 8px;
    }

.testimonials .rating {
    display: flex;
    gap: 2px;
}

    .testimonials .rating i {
        color: #fbbf24;
        font-size: 14px;
    }

.testimonials .testimonial-content {
    flex-grow: 1;
    position: relative;
    margin-bottom: 24px;
}

    .testimonials .testimonial-content .quote-mark {
        position: absolute;
        top: -12px;
        right: 0;
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 50%));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .testimonials .testimonial-content .quote-mark i {
            color: var(--contrast-color);
            font-size: 20px;
        }

    .testimonials .testimonial-content p {
        font-size: 16px;
        line-height: 1.7;
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        margin: 0;
        font-weight: 500;
    }

.testimonials .testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .company-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
}

    .testimonials .company-badge i {
        color: var(--accent-color);
        font-size: 14px;
    }

    .testimonials .company-badge span {
        font-size: 13px;
        font-weight: 600;
        color: var(--accent-color);
    }

.testimonials .verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .testimonials .verified-badge i {
        color: #10b981;
        font-size: 16px;
    }

    .testimonials .verified-badge span {
        font-size: 12px;
        font-weight: 600;
        color: #10b981;
    }

.testimonials .swiper-pagination {
    margin-top: 40px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: color-mix(in srgb, var(--accent-color), transparent 70%);
        border-radius: 50%;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background: var(--accent-color);
        transform: scale(1.2);
    }

@media (max-width: 900px) {
    section#testimonials .btmblock {
        top: 2pc;
    }

    section#testimonials h1 {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .testimonials .testimonial-card {
        padding: 24px;
        border-radius: 20px;
    }

    section#testimonials h1 {
        text-align: center;
        padding: 2pc 15px;
    }

    .testimonials .testimonial-header {
        gap: 12px;
        margin-bottom: 20px;
    }

    section#testimonials .btmblock {
        position: relative;
        right: auto !important;
        top: 0pc;
        text-align: center;
        font-size: 22px;
        color: #0b2336;
        font-weight: 600;
    }

    .testimonials .user-avatar img {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .testimonials .user-info h3 {
        font-size: 16px;
    }

    .testimonials .testimonial-content {
        margin-bottom: 20px;
    }

        .testimonials .testimonial-content .quote-mark {
            width: 40px;
            height: 40px;
        }

            .testimonials .testimonial-content .quote-mark i {
                font-size: 16px;
            }

        .testimonials .testimonial-content p {
            font-size: 15px;
        }

    .testimonials .testimonial-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .testimonials .company-badge {
        padding: 6px 10px;
        border-radius: 10px;
    }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
    padding-top: 80px;
    position: relative;
    clip-path: inset(0);
    padding-bottom: 80px;
}

    .call-to-action-2 video {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .call-to-action-2:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .call-to-action-2 .container {
        position: relative;
        z-index: 3;
        margin: 0pc;
    }

    .call-to-action-2 h3 {
        font-size: 35px;
        font-weight: 400;
        color: #fff;
        margin-bottom: 20px;
        font-family: 'Nunito Sans';
    }

    .call-to-action-2 p {
        color: #fff;
        font-size: 18px;
        font-weight: 200;
    }

    .call-to-action-2 .cta-btn {
        font-family: var(--heading-font);
        font-weight: 300;
        font-size: 16px;
        display: inline-block;
        padding: 5px 20px;
        border-radius: 10px;
        transition: 0.5s;
        margin: 10px;
        border: 1px solid #0b2336;
        background-color: #306A97;
        color: var(--default-color);
        font-family: 'Nunito Sans';
    }

        .call-to-action-2 .cta-btn:hover {
            background: #6796b9;
            color: var(--contrast-color);
        }

@media (min-width: 1500px) {
    .call-to-action-2 {
        padding-top: 150px;
        position: relative;
        clip-path: inset(0);
        padding-bottom: 150px;
    }

    .promo-cards .promo-card .btn-shop {
        font-size: 16px;
        padding: 5px 30px;
        top: -10px;
        margin: 0 auto;
        display: block;
    }
}

@media(max-width:700px) {
    .call-to-action-2 video {
        position: relative;
        left: -13pc;
        margin-bottom: 2pc;
        width: 150%;
    }

    .call-to-action-2 h3 {
        font-size: 30px;
    }
}

/*--------------------------------------------------------------
# Faq 13 Section
--------------------------------------------------------------*/
.faq-13 .faq-container .faq-item {
    position: relative;
    padding: 20px;
    border: 1px solid #ddd;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.faq-13 .container.borderbox {
    border: 1px solid #ddd;
    padding: 1pc;
    border-radius: 45px;
}

    .faq-13 .container.borderbox .section-title {
        padding: 15px;
        text-align: left;
    }

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
    --section-spacing: 6rem;
    --content-spacing: 4rem;
}

    .portfolio-details .project-intro {
        margin-bottom: var(--section-spacing);
        text-align: center;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

        .portfolio-details .project-intro .intro-content .project-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

            .portfolio-details .project-intro .intro-content .project-meta .project-type,
            .portfolio-details .project-intro .intro-content .project-meta .project-year {
                font-size: 0.875rem;
                font-weight: 400;
                letter-spacing: 0.05em;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                position: relative;
            }

                .portfolio-details .project-intro .intro-content .project-meta .project-type::after {
                    content: "•";
                    position: absolute;
                    right: -1rem;
                    color: color-mix(in srgb, var(--default-color), transparent 60%);
                }

        .portfolio-details .project-intro .intro-content .project-title {
            font-size: 3.75rem;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 2rem;
            color: var(--heading-color);
            letter-spacing: -0.02em;
        }

        .portfolio-details .project-intro .intro-content .project-description {
            font-size: 1.25rem;
            line-height: 1.8;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin-bottom: 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

    .portfolio-details .project-showcase {
        margin-bottom: var(--section-spacing);
    }

        .portfolio-details .project-showcase .showcase-slider {
            border-radius: 12px;
            overflow: hidden;
        }

            .portfolio-details .project-showcase .showcase-slider .swiper-wrapper {
                height: auto !important;
            }

            .portfolio-details .project-showcase .showcase-slider .swiper-slide img {
                width: 100%;
                height: 600px;
                object-fit: cover;
            }

            .portfolio-details .project-showcase .showcase-slider .swiper-pagination {
                bottom: 30px;
            }

                .portfolio-details .project-showcase .showcase-slider .swiper-pagination .swiper-pagination-bullet {
                    width: 12px;
                    height: 12px;
                    background-color: rgba(255, 255, 255, 0.5);
                    opacity: 1;
                    transition: all 0.3s ease;
                }

                    .portfolio-details .project-showcase .showcase-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
                        background-color: white;
                        transform: scale(1.2);
                    }

    .portfolio-details .project-details-grid {
        margin-bottom: var(--section-spacing);
    }

        .portfolio-details .project-details-grid .project-narrative h2 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            color: var(--heading-color);
            letter-spacing: -0.01em;
        }

        .portfolio-details .project-details-grid .project-narrative p {
            font-size: 1.125rem;
            line-height: 1.8;
            color: color-mix(in srgb, var(--default-color), transparent 15%);
            margin-bottom: 1.5rem;
        }

            .portfolio-details .project-details-grid .project-narrative p:last-child {
                margin-bottom: 0;
            }

        .portfolio-details .project-details-grid .project-info {
            padding-left: 3rem;
        }

            .portfolio-details .project-details-grid .project-info .info-block {
                padding: 1.5rem 0;
                border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            }

                .portfolio-details .project-details-grid .project-info .info-block:last-child {
                    border-bottom: none;
                }

                .portfolio-details .project-details-grid .project-info .info-block .info-label {
                    font-size: 0.875rem;
                    font-weight: 500;
                    text-transform: uppercase;
                    letter-spacing: 0.05em;
                    color: color-mix(in srgb, var(--default-color), transparent 50%);
                    margin-bottom: 0.5rem;
                }

                .portfolio-details .project-details-grid .project-info .info-block .info-value {
                    font-size: 1.125rem;
                    font-weight: 400;
                    color: var(--heading-color);
                }

    .portfolio-details .solution-approach {
        margin-bottom: var(--section-spacing);
    }

        .portfolio-details .solution-approach .approach-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

            .portfolio-details .solution-approach .approach-header h2 {
                font-size: 2.75rem;
                font-weight: 300;
                margin-bottom: 1.5rem;
                color: var(--heading-color);
                letter-spacing: -0.01em;
            }

            .portfolio-details .solution-approach .approach-header p {
                font-size: 1.125rem;
                line-height: 1.8;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                margin-bottom: 0;
            }

        .portfolio-details .solution-approach .approach-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
        }

            .portfolio-details .solution-approach .approach-steps .step-item .step-number {
                font-size: 3rem;
                font-weight: 200;
                color: color-mix(in srgb, var(--accent-color), transparent 20%);
                margin-bottom: 1rem;
                line-height: 1;
            }

            .portfolio-details .solution-approach .approach-steps .step-item h3 {
                font-size: 1.5rem;
                font-weight: 400;
                margin-bottom: 1rem;
                color: var(--heading-color);
            }

            .portfolio-details .solution-approach .approach-steps .step-item p {
                font-size: 1rem;
                line-height: 1.7;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                margin-bottom: 0;
            }

    .portfolio-details .project-gallery {
        margin-bottom: var(--section-spacing);
    }

        .portfolio-details .project-gallery h2 {
            font-size: 2.75rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--heading-color);
            letter-spacing: -0.01em;
        }

        .portfolio-details .project-gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

            .portfolio-details .project-gallery .gallery-grid .gallery-item {
                border-radius: 8px;
                overflow: hidden;
                transition: all 0.4s ease;
            }

                .portfolio-details .project-gallery .gallery-grid .gallery-item.featured {
                    grid-column: span 2;
                    grid-row: span 2;
                }

                .portfolio-details .project-gallery .gallery-grid .gallery-item img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                }

                .portfolio-details .project-gallery .gallery-grid .gallery-item:hover {
                    transform: translateY(-8px);
                }

                    .portfolio-details .project-gallery .gallery-grid .gallery-item:hover img {
                        transform: scale(1.05);
                    }

    .portfolio-details .technologies-used {
        margin-bottom: var(--section-spacing);
    }

        .portfolio-details .technologies-used h2 {
            font-size: 2.75rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            color: var(--heading-color);
            letter-spacing: -0.01em;
        }

        .portfolio-details .technologies-used p {
            font-size: 1.125rem;
            line-height: 1.8;
            color: color-mix(in srgb, var(--default-color), transparent 25%);
        }

        .portfolio-details .technologies-used .tech-stack .tech-group {
            margin-bottom: 2.5rem;
        }

            .portfolio-details .technologies-used .tech-stack .tech-group:last-child {
                margin-bottom: 0;
            }

            .portfolio-details .technologies-used .tech-stack .tech-group h4 {
                font-size: 1.125rem;
                font-weight: 500;
                margin-bottom: 1rem;
                color: var(--heading-color);
            }

            .portfolio-details .technologies-used .tech-stack .tech-group .tech-tags {
                display: flex;
                flex-wrap: wrap;
                gap: 0.75rem;
            }

                .portfolio-details .technologies-used .tech-stack .tech-group .tech-tags .tech-tag {
                    padding: 0.5rem 1.25rem;
                    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
                    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
                    border-radius: 6px;
                    font-size: 0.875rem;
                    font-weight: 400;
                    color: var(--default-color);
                    transition: all 0.3s ease;
                }

                    .portfolio-details .technologies-used .tech-stack .tech-group .tech-tags .tech-tag:hover {
                        background-color: var(--accent-color);
                        border-color: var(--accent-color);
                        color: var(--contrast-color);
                        transform: translateY(-2px);
                    }

    .portfolio-details .project-outcomes {
        background-color: color-mix(in srgb, var(--surface-color), transparent 60%);
        padding: 4rem 3rem;
        border-radius: 12px;
        margin-bottom: var(--section-spacing);
    }

        .portfolio-details .project-outcomes .outcomes-header {
            text-align: center;
            margin-bottom: 3rem;
        }

            .portfolio-details .project-outcomes .outcomes-header h2 {
                font-size: 2.75rem;
                font-weight: 300;
                color: var(--heading-color);
                letter-spacing: -0.01em;
                margin-bottom: 0;
            }

        .portfolio-details .project-outcomes .outcomes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

            .portfolio-details .project-outcomes .outcomes-grid .outcome-card {
                text-align: center;
            }

                .portfolio-details .project-outcomes .outcomes-grid .outcome-card .outcome-stat {
                    font-size: 3rem;
                    font-weight: 300;
                    color: var(--accent-color);
                    margin-bottom: 0.75rem;
                    line-height: 1;
                }

                .portfolio-details .project-outcomes .outcomes-grid .outcome-card .outcome-label {
                    font-size: 1rem;
                    color: color-mix(in srgb, var(--default-color), transparent 30%);
                    line-height: 1.4;
                }

    .portfolio-details .project-navigation {
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding-top: 3rem;
    }

        .portfolio-details .project-navigation .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .portfolio-details .project-navigation .nav-container .nav-item {
                display: flex;
                flex-direction: column;
                text-decoration: none;
                transition: all 0.3s ease;
            }

                .portfolio-details .project-navigation .nav-container .nav-item.prev,
                .portfolio-details .project-navigation .nav-container .nav-item.next {
                    color: var(--heading-color);
                }

                    .portfolio-details .project-navigation .nav-container .nav-item.prev .nav-label,
                    .portfolio-details .project-navigation .nav-container .nav-item.next .nav-label {
                        font-size: 0.875rem;
                        color: color-mix(in srgb, var(--default-color), transparent 50%);
                        margin-bottom: 0.25rem;
                    }

                    .portfolio-details .project-navigation .nav-container .nav-item.prev .nav-title,
                    .portfolio-details .project-navigation .nav-container .nav-item.next .nav-title {
                        font-size: 1.125rem;
                        font-weight: 400;
                    }

                    .portfolio-details .project-navigation .nav-container .nav-item.prev:hover,
                    .portfolio-details .project-navigation .nav-container .nav-item.next:hover {
                        color: var(--accent-color);
                        transform: translateY(-3px);
                    }

                .portfolio-details .project-navigation .nav-container .nav-item.next {
                    text-align: right;
                }

                .portfolio-details .project-navigation .nav-container .nav-item.center {
                    flex-direction: row;
                    align-items: center;
                    gap: 0.5rem;
                    padding: 0.75rem 2rem;
                    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
                    border-radius: 6px;
                    color: var(--heading-color);
                    font-weight: 400;
                    transition: all 0.3s ease;
                }

                    .portfolio-details .project-navigation .nav-container .nav-item.center i {
                        font-size: 1.125rem;
                    }

                    .portfolio-details .project-navigation .nav-container .nav-item.center:hover {
                        background-color: var(--accent-color);
                        border-color: var(--accent-color);
                        color: var(--contrast-color);
                        transform: translateY(-3px);
                    }

@media (max-width: 1200px) {
    .portfolio-details .project-details-grid .project-info {
        padding-left: 2rem;
    }

    .portfolio-details .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

        .portfolio-details .gallery-grid .gallery-item.featured {
            grid-column: span 2;
            grid-row: span 1;
        }
}

@media (max-width: 992px) {
    .portfolio-details .project-intro .intro-content .project-title {
        font-size: 3rem;
    }

    .portfolio-details .project-details-grid .project-info {
        padding-left: 0;
        margin-top: 3rem;
    }

    .portfolio-details .approach-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .portfolio-details .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .portfolio-details .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-details {
        --section-spacing: 4rem;
    }

        .portfolio-details .project-intro .intro-content .project-meta {
            flex-direction: column;
            gap: 0.5rem;
        }

            .portfolio-details .project-intro .intro-content .project-meta .project-type::after {
                display: none;
            }

        .portfolio-details .project-intro .intro-content .project-title {
            font-size: 2.5rem;
        }

        .portfolio-details .project-intro .intro-content .project-description {
            font-size: 1.125rem;
        }

        .portfolio-details .project-showcase .showcase-slider .swiper-slide img {
            height: 400px;
        }

        .portfolio-details .gallery-grid {
            grid-template-columns: 1fr !important;
        }

            .portfolio-details .gallery-grid .gallery-item.featured {
                grid-column: span 1;
            }

        .portfolio-details .project-outcomes {
            padding: 3rem 2rem;
        }

            .portfolio-details .project-outcomes .outcomes-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

        .portfolio-details .project-navigation .nav-container {
            flex-direction: column;
            gap: 2rem;
            text-align: center;
        }

            .portfolio-details .project-navigation .nav-container .nav-item.prev,
            .portfolio-details .project-navigation .nav-container .nav-item.next {
                text-align: center;
            }

            .portfolio-details .project-navigation .nav-container .nav-item.center {
                order: -1;
            }
}

@media (max-width: 576px) {
    .portfolio-details .project-outcomes {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
    padding: 80px 0;
}

    .service-details .service-content .service-hero {
        margin-bottom: 60px;
    }

        .service-details .service-content .service-hero .service-image {
            border-radius: 8px;
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

    .service-details .service-content .service-description {
        margin-bottom: 80px;
    }

        .service-details .service-content .service-description .service-title {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .service-details .service-content .service-description .lead {
            font-size: 1.25rem;
            font-weight: 300;
            line-height: 1.7;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin-bottom: 32px;
        }

        .service-details .service-content .service-description p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 24px;
            color: color-mix(in srgb, var(--default-color), transparent 15%);
        }

    .service-details .service-content .service-features {
        margin-bottom: 80px;
    }

        .service-details .service-content .service-features h3 {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 40px;
        }

        .service-details .service-content .service-features .feature-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

            .service-details .service-content .service-features .feature-item .feature-icon {
                flex-shrink: 0;
                width: 48px;
                height: 48px;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .service-details .service-content .service-features .feature-item .feature-icon i {
                    font-size: 20px;
                    color: var(--accent-color);
                }

            .service-details .service-content .service-features .feature-item .feature-content h4 {
                font-size: 1.2rem;
                font-weight: 400;
                margin-bottom: 12px;
            }

            .service-details .service-content .service-features .feature-item .feature-content p {
                font-size: 1rem;
                line-height: 1.7;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                margin: 0;
            }

    .service-details .service-content .service-process h3 {
        font-size: 2rem;
        font-weight: 300;
        margin-bottom: 40px;
    }

    .service-details .service-content .service-process .process-timeline .process-step {
        display: flex;
        gap: 24px;
        margin-bottom: 40px;
        position: relative;
    }

        .service-details .service-content .service-process .process-timeline .process-step:not(:last-child)::after {
            content: "";
            position: absolute;
            left: 23px;
            top: 48px;
            width: 2px;
            height: 40px;
            background: color-mix(in srgb, var(--default-color), transparent 85%);
        }

        .service-details .service-content .service-process .process-timeline .process-step .step-number {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 1rem;
        }

        .service-details .service-content .service-process .process-timeline .process-step .step-content {
            flex: 1;
        }

            .service-details .service-content .service-process .process-timeline .process-step .step-content h4 {
                font-size: 1.3rem;
                font-weight: 400;
                margin-bottom: 12px;
            }

            .service-details .service-content .service-process .process-timeline .process-step .step-content p {
                font-size: 1rem;
                line-height: 1.7;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                margin: 0;
            }

    .service-details .service-sidebar .sidebar-widget {
        background-color: var(--surface-color);
        border-radius: 8px;
        padding: 32px;
        margin-bottom: 32px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .service-details .service-sidebar .sidebar-widget h4 {
            font-size: 1.3rem;
            font-weight: 400;
            margin-bottom: 24px;
        }

    .service-details .service-sidebar .service-info .service-details-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .service-details .service-sidebar .service-info .service-details-list li {
            padding: 12px 0;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            font-size: 0.95rem;
            line-height: 1.6;
        }

            .service-details .service-sidebar .service-info .service-details-list li:last-child {
                border-bottom: none;
            }

            .service-details .service-sidebar .service-info .service-details-list li strong {
                color: var(--heading-color);
                font-weight: 500;
            }

    .service-details .service-sidebar .related-services .related-service-list .related-service-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        color: var(--default-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .service-details .service-sidebar .related-services .related-service-list .related-service-item:last-child {
            border-bottom: none;
        }

        .service-details .service-sidebar .related-services .related-service-list .related-service-item:hover {
            color: var(--accent-color);
            transform: translateX(4px);
        }

        .service-details .service-sidebar .related-services .related-service-list .related-service-item i {
            font-size: 16px;
            width: 20px;
        }

        .service-details .service-sidebar .related-services .related-service-list .related-service-item span {
            font-size: 0.95rem;
        }

    .service-details .service-sidebar .cta-widget {
        background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
        color: var(--contrast-color);
    }

        .service-details .service-sidebar .cta-widget .cta-content {
            text-align: center;
        }

            .service-details .service-sidebar .cta-widget .cta-content h4 {
                color: var(--contrast-color);
                margin-bottom: 16px;
            }

            .service-details .service-sidebar .cta-widget .cta-content p {
                color: color-mix(in srgb, var(--contrast-color), transparent 15%);
                margin-bottom: 24px;
                line-height: 1.6;
            }

            .service-details .service-sidebar .cta-widget .cta-content .btn-cta {
                display: inline-block;
                background-color: var(--contrast-color);
                color: var(--accent-color);
                padding: 12px 24px;
                border-radius: 6px;
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
            }

                .service-details .service-sidebar .cta-widget .cta-content .btn-cta:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 8px 16px color-mix(in srgb, var(--default-color), transparent 85%);
                    color: var(--accent-color);
                }

    .service-details .service-sidebar .contact-info .contact-item {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
    }

        .service-details .service-sidebar .contact-info .contact-item:last-child {
            margin-bottom: 0;
        }

        .service-details .service-sidebar .contact-info .contact-item i {
            font-size: 18px;
            color: var(--accent-color);
            width: 24px;
        }

        .service-details .service-sidebar .contact-info .contact-item div strong {
            display: block;
            font-weight: 500;
            color: var(--heading-color);
            margin-bottom: 4px;
        }

        .service-details .service-sidebar .contact-info .contact-item div span {
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            font-size: 0.95rem;
        }

@media (max-width: 768px) {
    .service-details {
        padding: 60px 0;
    }

        .service-details .service-content .service-hero {
            margin-bottom: 40px;
        }

            .service-details .service-content .service-hero .service-image {
                height: 300px;
            }

        .service-details .service-content .service-description {
            margin-bottom: 60px;
        }

            .service-details .service-content .service-description .service-title {
                font-size: 2rem;
            }

            .service-details .service-content .service-description .lead {
                font-size: 1.1rem;
            }

        .service-details .service-content .service-features,
        .service-details .service-content .service-process {
            margin-bottom: 60px;
        }

            .service-details .service-content .service-features h3,
            .service-details .service-content .service-process h3 {
                font-size: 1.7rem;
            }

        .service-details .service-content .process-timeline .process-step {
            gap: 16px;
        }

            .service-details .service-content .process-timeline .process-step:not(:last-child)::after {
                left: 19px;
            }

            .service-details .service-content .process-timeline .process-step .step-number {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }

        .service-details .service-sidebar {
            margin-top: 40px;
        }

            .service-details .service-sidebar .sidebar-widget {
                padding: 24px;
            }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
    margin-bottom: 60px;
}

    .terms-of-service .tos-header .last-updated {
        display: inline-block;
        padding: 8px 20px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 30px;
        color: var(--accent-color);
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .terms-of-service .tos-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .terms-of-service .tos-header p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }

.terms-of-service .tos-content .content-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

    .terms-of-service .tos-content .content-section:last-child {
        margin-bottom: 0;
    }

    .terms-of-service .tos-content .content-section h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: var(--heading-color);
    }

    .terms-of-service .tos-content .content-section p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        line-height: 1.7;
        margin-bottom: 20px;
    }

        .terms-of-service .tos-content .content-section p:last-child {
            margin-bottom: 0;
        }

    .terms-of-service .tos-content .content-section .info-box {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
        border-radius: 15px;
        margin-top: 20px;
    }

        .terms-of-service .tos-content .content-section .info-box i {
            font-size: 1.5rem;
            color: var(--accent-color);
            flex-shrink: 0;
        }

        .terms-of-service .tos-content .content-section .info-box p {
            margin: 0;
            font-size: 0.95rem;
        }

    .terms-of-service .tos-content .content-section .list-items {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

        .terms-of-service .tos-content .content-section .list-items li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

            .terms-of-service .tos-content .content-section .list-items li:last-child {
                margin-bottom: 0;
            }

            .terms-of-service .tos-content .content-section .list-items li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 10px;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background-color: var(--accent-color);
            }

    .terms-of-service .tos-content .content-section .alert-box {
        display: flex;
        gap: 20px;
        padding: 25px;
        background-color: var(--surface-color);
        border-radius: 15px;
        border-left: 4px solid var(--accent-color);
        margin-top: 20px;
    }

        .terms-of-service .tos-content .content-section .alert-box i {
            font-size: 2rem;
            color: var(--accent-color);
            flex-shrink: 0;
        }

        .terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .terms-of-service .tos-content .content-section .alert-box .alert-content p {
            margin: 0;
            font-size: 0.95rem;
        }

    .terms-of-service .tos-content .content-section .prohibited-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
    }

@media (max-width: 576px) {
    .terms-of-service .tos-content .content-section .prohibited-list {
        grid-template-columns: 1fr;
    }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: var(--surface-color);
    border-radius: 12px;
}

    .terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
        color: #dc3545;
        font-size: 1.2rem;
    }

    .terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
        font-size: 0.95rem;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

.terms-of-service .tos-content .content-section .disclaimer-box {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

    .terms-of-service .tos-content .content-section .disclaimer-box p {
        margin-bottom: 15px;
        font-weight: 500;
    }

    .terms-of-service .tos-content .content-section .disclaimer-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .terms-of-service .tos-content .content-section .disclaimer-box ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            font-size: 0.95rem;
        }

            .terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
                margin-bottom: 0;
            }

            .terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
                content: "•";
                position: absolute;
                left: 8px;
                color: var(--accent-color);
            }

.terms-of-service .tos-content .content-section .notice-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 15px;
    margin-top: 20px;
}

    .terms-of-service .tos-content .content-section .notice-box i {
        font-size: 1.5rem;
        color: var(--accent-color);
        flex-shrink: 0;
    }

    .terms-of-service .tos-content .content-section .notice-box p {
        margin: 0;
        font-size: 0.95rem;
    }

.terms-of-service .tos-contact {
    margin-top: 60px;
}

    .terms-of-service .tos-contact .contact-box {
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
        border-radius: 20px;
        padding: 40px;
        display: flex;
        align-items: center;
        gap: 30px;
    }

@media (max-width: 576px) {
    .terms-of-service .tos-contact .contact-box {
        flex-direction: column;
        text-align: center;
    }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .terms-of-service .tos-contact .contact-box .contact-icon i {
        font-size: 1.8rem;
        color: var(--contrast-color);
    }

.terms-of-service .tos-contact .contact-box .contact-content {
    flex: 1;
}

    .terms-of-service .tos-contact .contact-box .contact-content h4 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .terms-of-service .tos-contact .contact-box .contact-content p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 15px;
    }

    .terms-of-service .tos-contact .contact-box .contact-content .contact-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 25px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }

        .terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

@media print {
    .terms-of-service .tos-contact {
        display: none;
    }

    .terms-of-service .content-section {
        page-break-inside: avoid;
    }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-content {
    font-size: 16px;
    line-height: 1.7;
}

    .privacy .privacy-content .last-updated {
        background: color-mix(in srgb, var(--accent-color), transparent 95%);
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 40px;
        border-left: 4px solid var(--accent-color);
    }

        .privacy .privacy-content .last-updated p {
            margin: 0;
            color: var(--heading-color);
        }

    .privacy .privacy-content .privacy-section {
        margin-bottom: 50px;
    }

        .privacy .privacy-content .privacy-section h3 {
            font-size: 28px;
            margin-bottom: 25px;
            color: var(--heading-color);
            position: relative;
            padding-bottom: 15px;
        }

            .privacy .privacy-content .privacy-section h3:after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 50px;
                height: 3px;
                background: var(--accent-color);
                border-radius: 2px;
            }

        .privacy .privacy-content .privacy-section h4 {
            color: var(--heading-color);
            font-size: 22px;
            margin: 30px 0 15px 0;
        }

        .privacy .privacy-content .privacy-section h5 {
            color: var(--heading-color);
            font-size: 18px;
            margin-bottom: 10px;
        }

        .privacy .privacy-content .privacy-section p {
            margin-bottom: 20px;
            color: var(--default-color);
        }

        .privacy .privacy-content .privacy-section ul,
        .privacy .privacy-content .privacy-section ol {
            margin: 20px 0;
            padding-left: 30px;
        }

            .privacy .privacy-content .privacy-section ul li,
            .privacy .privacy-content .privacy-section ol li {
                margin-bottom: 10px;
                color: var(--default-color);
            }

        .privacy .privacy-content .privacy-section .info-box {
            background: var(--surface-color);
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .privacy .privacy-content .privacy-section .info-box h4 {
                color: var(--heading-color);
                margin-top: 0;
            }

        .privacy .privacy-content .privacy-section .highlight-box {
            background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            color: var(--contrast-color);
            margin: 40px 0;
        }

            .privacy .privacy-content .privacy-section .highlight-box i {
                font-size: 48px;
                margin-bottom: 20px;
                display: block;
            }

            .privacy .privacy-content .privacy-section .highlight-box h4 {
                color: var(--contrast-color);
                margin-bottom: 15px;
            }

            .privacy .privacy-content .privacy-section .highlight-box p {
                color: var(--contrast-color);
                margin: 0;
                opacity: 0.9;
            }

        .privacy .privacy-content .privacy-section .security-measures {
            margin: 30px 0;
        }

            .privacy .privacy-content .privacy-section .security-measures .measure-item {
                text-align: center;
                padding: 30px 20px;
                border-radius: 10px;
                background: var(--surface-color);
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                transition: all 0.3s ease;
            }

                .privacy .privacy-content .privacy-section .security-measures .measure-item:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                }

                .privacy .privacy-content .privacy-section .security-measures .measure-item i {
                    font-size: 36px;
                    color: var(--accent-color);
                    margin-bottom: 20px;
                    display: block;
                }

                .privacy .privacy-content .privacy-section .security-measures .measure-item h5 {
                    margin-bottom: 15px;
                }

                .privacy .privacy-content .privacy-section .security-measures .measure-item p {
                    margin: 0;
                    font-size: 14px;
                }

        .privacy .privacy-content .privacy-section .rights-list {
            margin: 30px 0;
        }

            .privacy .privacy-content .privacy-section .rights-list .right-item {
                display: flex;
                align-items: flex-start;
                padding: 25px;
                margin-bottom: 20px;
                background: var(--surface-color);
                border-radius: 10px;
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                transition: all 0.3s ease;
            }

                .privacy .privacy-content .privacy-section .rights-list .right-item:hover {
                    border-color: var(--accent-color);
                    transform: translateX(5px);
                }

                .privacy .privacy-content .privacy-section .rights-list .right-item i {
                    font-size: 24px;
                    color: var(--accent-color);
                    margin-right: 20px;
                    margin-top: 5px;
                    min-width: 24px;
                }

                .privacy .privacy-content .privacy-section .rights-list .right-item div {
                    flex: 1;
                }

                    .privacy .privacy-content .privacy-section .rights-list .right-item div h5 {
                        margin-bottom: 10px;
                    }

                    .privacy .privacy-content .privacy-section .rights-list .right-item div p {
                        margin: 0;
                        font-size: 14px;
                    }

        .privacy .privacy-content .privacy-section .cookie-types {
            margin: 30px 0;
        }

            .privacy .privacy-content .privacy-section .cookie-types h4 {
                margin-bottom: 20px;
            }

            .privacy .privacy-content .privacy-section .cookie-types .table-responsive {
                border-radius: 10px;
                overflow: hidden;
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            }

                .privacy .privacy-content .privacy-section .cookie-types .table-responsive .table {
                    margin: 0;
                }

                    .privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead {
                        background: color-mix(in srgb, var(--accent-color), transparent 90%);
                    }

                        .privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead th {
                            border: none;
                            color: var(--heading-color);
                            font-weight: 600;
                            padding: 15px 20px;
                        }

                    .privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody td {
                        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                        padding: 15px 20px;
                        color: var(--default-color);
                    }

                    .privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
                        background: color-mix(in srgb, var(--accent-color), transparent 97%);
                    }

    .privacy .privacy-content .contact-section {
        background: color-mix(in srgb, var(--accent-color), transparent 96%);
        padding: 40px;
        border-radius: 15px;
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    }

        .privacy .privacy-content .contact-section h3 {
            color: var(--heading-color);
            margin-bottom: 20px;
        }

            .privacy .privacy-content .contact-section h3:after {
                background: var(--accent-color);
            }

        .privacy .privacy-content .contact-section .contact-info {
            margin-top: 30px;
        }

            .privacy .privacy-content .contact-section .contact-info .contact-item {
                display: flex;
                align-items: center;
                margin-bottom: 15px;
            }

                .privacy .privacy-content .contact-section .contact-info .contact-item i {
                    font-size: 18px;
                    color: var(--accent-color);
                    margin-right: 15px;
                    min-width: 18px;
                }

                .privacy .privacy-content .contact-section .contact-info .contact-item span {
                    color: var(--default-color);
                }

@media (max-width: 768px) {
    .privacy .privacy-content {
        font-size: 15px;
    }

        .privacy .privacy-content .privacy-section h3 {
            font-size: 24px;
        }

        .privacy .privacy-content .privacy-section h4 {
            font-size: 20px;
        }

        .privacy .privacy-content .privacy-section .security-measures .row > div {
            margin-bottom: 20px;
        }

        .privacy .privacy-content .privacy-section .rights-list .right-item {
            flex-direction: column;
            text-align: center;
        }

            .privacy .privacy-content .privacy-section .rights-list .right-item i {
                margin-right: 0;
                margin-bottom: 15px;
            }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}

    .error-404 .error-content {
        margin-bottom: 80px;
    }

        .error-404 .error-content .error-number {
            font-size: 8rem;
            font-weight: 300;
            color: var(--accent-color);
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            opacity: 0.8;
        }

@media (max-width: 768px) {
    .error-404 .error-content .error-number {
        font-size: 6rem;
    }
}

@media (max-width: 576px) {
    .error-404 .error-content .error-number {
        font-size: 4.5rem;
    }
}

.error-404 .error-content .error-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--heading-color);
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .error-404 .error-content .error-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .error-404 .error-content .error-title {
        font-size: 2rem;
    }
}

.error-404 .error-content .error-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .error-404 .error-content .error-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

.error-404 .error-content .error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

    .error-404 .error-content .error-actions .btn-primary {
        display: inline-flex;
        align-items: center;
        padding: 16px 32px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        border: none;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .error-404 .error-content .error-actions .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), black 10%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .error-404 .error-content .error-actions .btn-secondary {
        display: inline-flex;
        align-items: center;
        padding: 16px 32px;
        background-color: transparent;
        color: var(--heading-color);
        border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .error-404 .error-content .error-actions .btn-secondary:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
            transform: translateY(-2px);
        }

@media (max-width: 576px) {
    .error-404 .error-content .error-actions {
        flex-direction: column;
        align-items: center;
    }

        .error-404 .error-content .error-actions .btn-primary,
        .error-404 .error-content .error-actions .btn-secondary {
            width: 100%;
            max-width: 280px;
            justify-content: center;
        }
}

.error-404 .error-content .search-section .search-label {
    font-size: 1rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.error-404 .error-content .search-section .search-form {
    max-width: 400px;
    margin: 0 auto;
}

    .error-404 .error-content .search-section .search-form .search-input-group {
        position: relative;
        display: flex;
        align-items: center;
    }

        .error-404 .error-content .search-section .search-form .search-input-group .search-input {
            width: 100%;
            padding: 16px 60px 16px 20px;
            border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
            border-radius: 8px;
            font-size: 1rem;
            background-color: var(--surface-color);
            color: var(--default-color);
            transition: all 0.3s ease;
        }

            .error-404 .error-content .search-section .search-form .search-input-group .search-input:focus {
                outline: none;
                border-color: var(--accent-color);
                box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
            }

            .error-404 .error-content .search-section .search-form .search-input-group .search-input::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 50%);
            }

        .error-404 .error-content .search-section .search-form .search-input-group .search-btn {
            position: absolute;
            right: 8px;
            background: var(--accent-color);
            border: none;
            border-radius: 6px;
            padding: 12px;
            color: var(--contrast-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .error-404 .error-content .search-section .search-form .search-input-group .search-btn:hover {
                background-color: color-mix(in srgb, var(--accent-color), black 10%);
            }

            .error-404 .error-content .search-section .search-form .search-input-group .search-btn i {
                font-size: 1rem;
            }

.error-404 .helpful-links .links-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .error-404 .helpful-links .links-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }
}

.error-404 .helpful-links .link-item {
    text-align: center;
    padding: 40px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

    .error-404 .helpful-links .link-item:hover {
        transform: translateY(-10px);
    }

    .error-404 .helpful-links .link-item .link-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        transition: all 0.3s ease;
    }

        .error-404 .helpful-links .link-item .link-icon i {
            font-size: 1.75rem;
            color: var(--contrast-color);
        }

    .error-404 .helpful-links .link-item h4 {
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--heading-color);
        margin-bottom: 20px;
    }

    .error-404 .helpful-links .link-item p {
        font-size: 1rem;
        line-height: 1.7;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 25px;
    }

    .error-404 .helpful-links .link-item .link-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .error-404 .helpful-links .link-item .link-cta:hover {
            color: color-mix(in srgb, var(--accent-color), black 15%);
            gap: 12px;
        }

        .error-404 .helpful-links .link-item .link-cta i {
            font-size: 0.875rem;
            transition: transform 0.3s ease;
        }

        .error-404 .helpful-links .link-item .link-cta:hover i {
            transform: translateX(3px);
        }

    .error-404 .helpful-links .link-item:hover .link-icon {
        transform: scale(1.1);
        box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 65%);
    }

@media (max-width: 992px) {
    .error-404 {
        padding: 80px 0;
    }

        .error-404 .helpful-links .link-item {
            margin-bottom: 40px;
        }
}

@media (max-width: 768px) {
    .error-404 {
        padding: 60px 0;
        min-height: auto;
    }

        .error-404 .error-content {
            margin-bottom: 60px;
        }

        .error-404 .helpful-links .links-title {
            margin-bottom: 40px;
        }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 120px 0;
}

    .hero .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

.hero-2 .hero-buttons .btn {
    padding: 3px 10px;
    font-weight: 300;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

@media (max-width: 1199px) {
    .hero-2 .hero-buttons .btn {
        padding: 3px 6px;
        font-weight: 300;
        border-radius: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero .hero-content p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

    .hero .hero-buttons .btn {
        padding: 3px 10px;
        font-weight: 300;
        border-radius: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

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

            .hero .hero-buttons .btn.btn-primary:hover {
                background: color-mix(in srgb, var(--accent-color), black 10%);
                border-color: color-mix(in srgb, var(--accent-color), black 10%);
                transform: translateY(-2px);
            }

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

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

.hero .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .hero .hero-stats .stat-item {
        text-align: center;
    }

        .hero .hero-stats .stat-item .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .hero .hero-stats .stat-item .stat-label {
            display: block;
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 0.5rem;
        }

.stats-counters .borderright {
    border-right: 2px solid #cfcfcf;
}

@media (max-width: 768px) {
    .hero .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 500px) {
    .hero .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .stats-counters .borderright {
        border-right: 1px solid #cfcfcf;
        margin-bottom: 0pc;
    }

    .container-fluid {
        padding: 0 10px;
    }
}

.hero .hero-visual {
    position: relative;
}

    .hero .hero-visual .hero-image {
        position: relative;
        z-index: 2;
    }

        .hero .hero-visual .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
        }

.hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

    .hero .floating-elements .floating-card {
        position: absolute;
        background: var(--surface-color);
        padding: 1rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero .floating-elements .floating-card i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .hero .floating-elements .floating-card span {
            font-weight: 600;
            color: var(--heading-color);
            font-size: 0.9rem;
        }

        .hero .floating-elements .floating-card.card-1 {
            top: 20%;
            right: -10%;
            animation: float 6s ease-in-out infinite;
        }

        .hero .floating-elements .floating-card.card-2 {
            top: 60%;
            left: -15%;
            animation: float 6s ease-in-out infinite 2s;
        }

        .hero .floating-elements .floating-card.card-3 {
            bottom: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite 4s;
        }

@media (max-width: 992px) {
    .hero .floating-elements .floating-card.card-1 {
        right: -5%;
    }

    .hero .floating-elements .floating-card.card-2 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero .floating-elements .floating-card {
        display: none;
    }
}

.hero .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

    .hero .hero-bg-elements .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    }

        .hero .hero-bg-elements .bg-shape.shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: rotate 20s linear infinite;
        }

        .hero .hero-bg-elements .bg-shape.shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: rotate 15s linear infinite reverse;
        }

    .hero .hero-bg-elements .bg-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveParticles 30s linear infinite;
    }

@keyframes float {

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

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

@media (max-width: 992px) {
    .hero .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero .hero-buttons {
        justify-content: center;
    }

    .hero .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card-item {
    background-color: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 100%;
}

    .cards .card-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

        .cards .card-item:hover .card-img img {
            transform: scale(1.1);
        }

        .cards .card-item:hover .card-img .card-overlay {
            opacity: 1;
            visibility: visible;
        }

            .cards .card-item:hover .card-img .card-overlay .card-overlay-content {
                transform: translateY(0);
            }

    .cards .card-item .card-img {
        position: relative;
        overflow: hidden;
    }

        .cards .card-item .card-img img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .cards .card-item .card-img .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

            .cards .card-item .card-img .card-overlay .card-overlay-content {
                text-align: center;
                transform: translateY(20px);
                transition: transform 0.3s ease-in-out;
            }

                .cards .card-item .card-img .card-overlay .card-overlay-content h4 {
                    color: var(--contrast-color);
                    font-size: 1.5rem;
                    margin-bottom: 1rem;
                }

                .cards .card-item .card-img .card-overlay .card-overlay-content p {
                    color: var(--contrast-color);
                    font-size: 0.9rem;
                    margin-bottom: 1.5rem;
                    opacity: 0.9;
                }

                .cards .card-item .card-img .card-overlay .card-overlay-content .btn-link {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    width: 45px;
                    height: 45px;
                    border-radius: 50%;
                    background-color: var(--contrast-color);
                    color: var(--accent-color);
                    transition: all 0.3s ease;
                }

                    .cards .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
                        background-color: var(--accent-color);
                        color: var(--contrast-color);
                        transform: rotate(45deg);
                    }

                    .cards .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
                        font-size: 1.2rem;
                    }

    .cards .card-item .card-content {
        padding: 2rem;
    }

        .cards .card-item .card-content .card-category {
            display: inline-block;
            font-size: 0.875rem;
            color: var(--accent-color);
            font-weight: 500;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cards .card-item .card-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--heading-color);
            font-weight: 600;
            line-height: 1.3;
        }

        .cards .card-item .card-content p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .steps-content {
    padding-right: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .steps .steps-content {
        padding-right: 0;
    }
}

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

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

.steps .steps-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--default-color);
}

.steps .steps-content p {
    margin-bottom: 2rem;
    color: var(--default-color);
}

.steps .steps-content .steps-cta {
    display: flex;
    gap: 15px;
}

@media (max-width: 576px) {
    .steps .steps-content .steps-cta {
        flex-direction: column;
    }
}

.steps .steps-content .steps-cta .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.steps .steps-content .steps-cta .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

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

.steps .steps-content .steps-cta .btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

    .steps .steps-content .steps-cta .btn-outline:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.steps .steps-list {
    position: relative;
}

    .steps .steps-list::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 25px;
        width: 2px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    }

@media (max-width: 576px) {
    .steps .steps-list::before {
        left: 20px;
    }
}

.steps .steps-list .step-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

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

    .steps .steps-list .step-item:hover .step-number {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: scale(1.1);
    }

    .steps .steps-list .step-item .step-number {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: color-mix(in srgb, var(--accent-color) 10%, white 90%);
        color: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 700;
        margin-right: 20px;
        z-index: 1;
        transition: all 0.3s ease;
    }

@media (max-width: 576px) {
    .steps .steps-list .step-item .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.steps .steps-list .step-item .step-content {
    padding-top: 5px;
}

    .steps .steps-list .step-item .step-content h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--heading-color);
    }

@media (max-width: 576px) {
    .steps .steps-list .step-item .step-content h3 {
        font-size: 1.1rem;
    }
}

.steps .steps-list .step-item .step-content p {
    font-size: 0.95rem;
    color: var(--default-color);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Call To Action 3 Section
--------------------------------------------------------------*/
.call-to-action-3 {
    padding-top: 100px;
    position: relative;
    isolation: isolate;
    padding-bottom: 100px;
}

    .call-to-action-3 .container {
        position: relative;
    }

    .call-to-action-3 h2 {
        color: var(--heading-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .call-to-action-3 .lead {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .call-to-action-3 .btn {
        padding: 12px 32px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

        .call-to-action-3 .btn:hover {
            transform: translateY(-2px);
        }

    .call-to-action-3 .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .call-to-action-3 .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-3 .btn-outline-primary {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .call-to-action-3 .btn-outline-primary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-3 .scribble {
        position: absolute;
        pointer-events: none;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

        .call-to-action-3 .scribble::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

    .call-to-action-3 .scribble-1 {
        width: 150px;
        height: 150px;
        top: -30px;
        left: 5%;
        animation-delay: 0s;
    }

        .call-to-action-3 .scribble-1::before {
            clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
        }

    .call-to-action-3 .scribble-2 {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 10%;
        animation-delay: -2s;
    }

        .call-to-action-3 .scribble-2::before {
            clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
        }

    .call-to-action-3 .scribble-3 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 15%;
        animation-delay: -4s;
    }

        .call-to-action-3 .scribble-3::before {
            clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
        }

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .call-to-action-3 {
        padding: 60px 0;
    }

        .call-to-action-3 h2 {
            font-size: 2.5rem;
        }

        .call-to-action-3 .lead {
            font-size: 1.1rem;
        }

        .call-to-action-3 .cta-buttons .btn {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        .call-to-action-3 .scribble {
            transform: scale(0.7);
        }
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .faq-2 .faq-item:last-child {
        border-bottom: none;
    }

    .faq-2 .faq-item.faq-active .faq-header .faq-number {
        color: var(--accent-color);
        font-weight: 500;
    }

    .faq-2 .faq-item.faq-active .faq-header h4 {
        color: var(--accent-color);
    }

    .faq-2 .faq-item.faq-active .faq-header .faq-toggle {
        color: var(--accent-color);
        transform: rotate(0deg);
    }

        .faq-2 .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
            opacity: 0;
            transform: rotate(90deg);
        }

        .faq-2 .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
            opacity: 1;
            transform: rotate(0deg);
        }

    .faq-2 .faq-item.faq-active .faq-content {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
    }

    .faq-2 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .faq-2 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
        opacity: 0;
        transform: rotate(-90deg);
    }

    .faq-2 .faq-item .faq-header {
        display: flex;
        align-items: center;
        padding: 40px 0;
        cursor: pointer;
        gap: 0;
        transition: all 0.3s ease;
    }

        .faq-2 .faq-item .faq-header:hover .faq-number {
            transform: scale(1.1);
        }

        .faq-2 .faq-item .faq-header:hover .faq-toggle {
            transform: scale(1.1);
        }

        .faq-2 .faq-item .faq-header .faq-number {
            flex-shrink: 0;
            width: 80px;
            font-family: var(--heading-font);
            font-size: 1.1rem;
            font-weight: 300;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            transition: all 0.3s ease;
            letter-spacing: -0.02em;
        }

        .faq-2 .faq-item .faq-header h4 {
            flex: 1;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--heading-color);
            transition: all 0.3s ease;
            line-height: 1.5;
            letter-spacing: -0.01em;
            margin-right: 20px;
        }

        .faq-2 .faq-item .faq-header .faq-toggle {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }

            .faq-2 .faq-item .faq-header .faq-toggle i {
                position: absolute;
                transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

    .faq-2 .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
        opacity: 0;
    }

        .faq-2 .faq-item .faq-content .content-inner {
            padding: 0 80px 40px 80px;
            overflow: hidden;
        }

            .faq-2 .faq-item .faq-content .content-inner p {
                margin: 0;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                line-height: 1.8;
                font-size: 1rem;
                font-weight: 300;
            }

@media (max-width: 768px) {
    .faq-2 .faq-item .faq-header {
        padding: 30px 0;
    }

        .faq-2 .faq-item .faq-header .faq-number {
            width: 60px;
            font-size: 1rem;
        }

        .faq-2 .faq-item .faq-header h4 {
            font-size: 1.1rem;
            margin-right: 15px;
        }

        .faq-2 .faq-item .faq-header .faq-toggle {
            width: 20px;
            height: 20px;
            font-size: 16px;
        }

    .faq-2 .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px;
    }

        .faq-2 .faq-item .faq-content .content-inner p {
            font-size: 0.95rem;
        }
}

@media (max-width: 576px) {
    .faq-2 .faq-item .faq-header {
        padding: 25px 0;
    }

        .faq-2 .faq-item .faq-header .faq-number {
            width: 50px;
            font-size: 0.9rem;
        }

        .faq-2 .faq-item .faq-header h4 {
            font-size: 1rem;
            margin-right: 10px;
        }

    .faq-2 .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px;
    }

        .faq-2 .faq-item .faq-content .content-inner p {
            font-size: 0.9rem;
        }
}

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
    position: relative;
    overflow: hidden;
    background: #9099a7;
    padding: 50px 0;
}

    .hero-3 .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 100;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
        text-transform: capitalize;
        color: #fff;
    }


@media (max-width: 768px) {
    .hero-3 .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-3 .hero-content p {
    font-size: 24px;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 200 !important;
    font-family: "Nunito Sans", sans-serif !important;
    text-align: center;
}

.hero-3 .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

    .hero-3 .hero-buttons .btn {
        padding: 6px 20px;
        font-weight: 600;
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

        .hero-3 .hero-buttons .btn.btn-primary, .hero-3 .hero-buttons .btn.btn-outline {
            background: #d7d7d7;
            color: #000000;
            border: 1px solid var(--accent-color);
            font-weight: 200;
        }

            .hero-3 .hero-buttons .btn.btn-primary:hover, .hero-3 .hero-buttons .btn.btn-outline:hover {
                background: #d7d7d7;
                border-color: #232323;
                transform: translateY(-2px);
            }


.hero-3 .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .hero-3 .hero-stats .stat-item {
        text-align: center;
    }

        .hero-3 .hero-stats .stat-item .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .hero-3 .hero-stats .stat-item .stat-label {
            display: block;
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 0.5rem;
        }

@media (max-width: 768px) {
    .hero-3 .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-3 .hero-visual {
    position: relative;
}

    .hero-3 .hero-visual .hero-image {
        position: relative;
        z-index: 2;
    }

        .hero-3 .hero-visual .hero-image img {
            border-radius: 20px;
        }

.hero-3 .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

    .hero-3 .floating-elements .floating-card {
        position: absolute;
        background: var(--surface-color);
        padding: 1rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero-3 .floating-elements .floating-card i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .hero-3 .floating-elements .floating-card span {
            font-weight: 600;
            color: var(--heading-color);
            font-size: 0.9rem;
        }

        .hero-3 .floating-elements .floating-card.card-1 {
            top: 20%;
            right: -10%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-3 .floating-elements .floating-card.card-2 {
            top: 60%;
            left: -15%;
            animation: float 6s ease-in-out infinite 2s;
        }

        .hero-3 .floating-elements .floating-card.card-3 {
            bottom: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite 4s;
        }

@media (max-width: 992px) {
    .hero-3 .floating-elements .floating-card.card-1 {
        right: -5%;
    }

    .hero-3 .floating-elements .floating-card.card-2 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero-3 .floating-elements .floating-card {
        display: none;
    }
}

.hero-3 .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

    .hero-3 .hero-bg-elements .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    }

        .hero-3 .hero-bg-elements .bg-shape.shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: rotate 20s linear infinite;
        }

        .hero-3 .hero-bg-elements .bg-shape.shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: rotate 15s linear infinite reverse;
        }

    .hero-3 .hero-bg-elements .bg-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveParticles 30s linear infinite;
    }

@keyframes float {

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

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

@media (max-width: 992px) {
    .hero-3 .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-3 .hero-buttons {
        justify-content: center;
    }

    .hero-3 .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Cards 2 Section
--------------------------------------------------------------*/
.cards-2 {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .cards-2 .card-item {
        background-color: var(--surface-color);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        height: 100%;
    }

    .cards-2 .section-title h2 {
        font-size: 38px;
        font-weight: 500;
        margin-bottom: 15px;
        color: #000;
        font-weight: 900;
    }

    .cards-2 .cardnumblock {
        display: block;
        margin-top: 2pc;
    }

        .cards-2 .cardnumblock span {
            padding: 10px 25px;
            font-size: 36px;
            font-weight: 900;
            background: #fff;
            border-radius: 50%;
            margin: 1pc;
        }

    .cards-2 .card-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

        .cards-2 .card-item:hover .card-img img {
            transform: scale(1.1);
        }

        .cards-2 .card-item:hover .card-img .card-overlay {
            opacity: 1;
            visibility: visible;
        }

            .cards-2 .card-item:hover .card-img .card-overlay .card-overlay-content {
                transform: translateY(0);
            }

    .cards-2 .card-item.card1 {
        background: #779cb9;
    }

    .cards-2 .card-item.card2 {
        background: #b2cbdd;
    }

    .cards-2 .card-item .card-img {
        position: relative;
        overflow: hidden;
    }

        .cards-2 .card-item .card-img img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .cards-2 .card-item .card-img .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

            .cards-2 .card-item .card-img .card-overlay .card-overlay-content {
                text-align: center;
                transform: translateY(20px);
                transition: transform 0.3s ease-in-out;
            }

                .cards-2 .card-item .card-img .card-overlay .card-overlay-content h4 {
                    color: var(--contrast-color);
                    font-size: 1.5rem;
                    margin-bottom: 1rem;
                }

                .cards-2 .card-item .card-img .card-overlay .card-overlay-content p {
                    color: var(--contrast-color);
                    font-size: 0.9rem;
                    margin-bottom: 1.5rem;
                    opacity: 0.9;
                }

                .cards-2 .card-item .card-img .card-overlay .card-overlay-content .btn-link {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    width: 45px;
                    height: 45px;
                    border-radius: 50%;
                    background-color: var(--contrast-color);
                    color: var(--accent-color);
                    transition: all 0.3s ease;
                }

                    .cards-2 .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
                        background-color: var(--accent-color);
                        color: var(--contrast-color);
                        transform: rotate(45deg);
                    }

                    .cards-2 .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
                        font-size: 1.2rem;
                    }

    .cards-2 .card-item .card-content {
        padding: 2rem;
    }

        .cards-2 .card-item .card-content .card-category {
            display: inline-block;
            font-size: 0.875rem;
            color: var(--accent-color);
            font-weight: 500;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cards-2 .card-item .card-content h3 {
            font-size: 26px;
            margin-bottom: 1rem;
            font-weight: 800;
            line-height: 1.3;
            font-family: 'Nunito Sans';
            text-shadow: 0 0 #7a7a7a;
        }

        .cards-2 .card-item .card-content p {
            color: #fff;
            font-size: 19px;
            line-height: 1.6;
            margin-bottom: 0;
        }

    .cards-2 .card-item.card3 p {
        color: #9fb1c0;
    }

.card1 .cardnumblock span {
    color: #779cb9;
}

.card2 .cardnumblock span {
    color: #b2cbdd;
}

.card3 .cardnumblock span {
    background: #9fb1c0;
    color: #fff;
}

.cards-2 .card-item.card1 h3, .cards-2 .card-item.card2 h3 {
    color: #fff;
}

.cards-2 .card-item.card3 h3 {
    color: #9fb1c0;
}

.card-item.card3 {
    border: 2px solid #bbbbbb;
}

.cards-2 .hero-buttons {
    text-align: center;
    margin: 2pc 0 0;
}

    .cards-2 .hero-buttons a.btn.btn-outline {
        background: #216498;
        color: #fff;
        border: 1px solid #232323;
    }

.roundblock .container {
    border: 1px solid #eee;
    background: #edeff0;
    border-radius: 20px;
}

.roundblock .midblock {
    padding: 3pc 3pc 0;
    line-height: 1.2;
}

    .roundblock .midblock p {
        margin-top: 2pc;
        font-size: 20px;
        font-weight: 300;
    }

.roundblock a.btn.btn-outline, .block-btn a.btn.btn-outline {
    background: #216498;
    color: #fff;
    border: 1px solid #232323;
}

.middleblock {
    align-content: center;
    display: grid;
}

    .middleblock p {
        margin: 20px 0;
        font-size: 18px;
        font-weight: 300;
    }

    .middleblock h1 {
        line-height: 1.4;
    }

/*--------------------------------------------------------------
# Cards 3 Section
--------------------------------------------------------------*/
.cards-3 .why-box {
    color: var(--contrast-color);
    background: var(--accent-color);
    padding: 30px;
}

    .cards-3 .why-box h3 {
        color: var(--contrast-color);
        font-weight: 700;
        font-size: 34px;
        margin-bottom: 30px;
    }

    .cards-3 .why-box p {
        margin-bottom: 30px;
    }

    .cards-3 .why-box .more-btn {
        display: inline-block;
        background: color-mix(in srgb, var(--contrast-color), transparent 85%);
        padding: 8px 40px 10px 40px;
        color: var(--contrast-color);
        transition: all ease-in-out 0.4s;
        border-radius: 50px;
    }

        .cards-3 .why-box .more-btn i {
            font-size: 14px;
        }

        .cards-3 .why-box .more-btn:hover {
            color: var(--accent-color);
            background: var(--surface-color);
        }

.cards-3 .icon-box {
    background-color: var(--surface-color);
    text-align: center;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .cards-3 .icon-box i {
        color: var(--accent-color);
        margin-bottom: 30px;
        font-size: 32px;
        margin-bottom: 30px;
        background: color-mix(in srgb, var(--accent-color), transparent 95%);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 72px;
        height: 72px;
        transition: 0.3s;
    }

.cards-3 .whyblock {
    border-radius: 20px;
    padding: 2pc 2pc 4pc;
}

    .cards-3 .whyblock p {
        color: #000;
    }

    .cards-3 .whyblock i {
        font-size: 23px;
        padding-left: 1pc;
    }

    .cards-3 .whyblock.block1 {
        background: #779cb9;
    }

    .cards-3 .whyblock.block2 {
        margin-left: 10%;
        background: #b2cbdd;
        width: 90%;
    }

    .cards-3 .whyblock.block3 {
        width: 80%;
        background: #dcebf5;
        margin-left: 20%;
    }

    .cards-3 .whyblock.block2, .cards-3 .whyblock.block3 {
        margin-top: -2pc;
    }

.cards-3 .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.cards-3 .icon-box p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.cards-3 .icon-box:hover i {
    color: var(--contrast-color);
    background: var(--accent-color);
}

/*--------------------------------------------------------------
# Steps 2 Section
--------------------------------------------------------------*/
.steps-2 .steps-content {
    padding-right: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .steps-2 .steps-content {
        padding-right: 0;
    }
}

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

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

.steps-2 .steps-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--default-color);
}

.steps-2 .steps-content p {
    margin-bottom: 2rem;
    color: var(--default-color);
}

.steps-2 .steps-content .steps-cta {
    display: flex;
    gap: 15px;
}

@media (max-width: 576px) {
    .steps-2 .steps-content .steps-cta {
        flex-direction: column;
    }
}

.steps-2 .steps-content .steps-cta .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.steps-2 .steps-content .steps-cta .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

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

.steps-2 .steps-content .steps-cta .btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

    .steps-2 .steps-content .steps-cta .btn-outline:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.steps-2 .steps-list {
    position: relative;
}

    .steps-2 .steps-list::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 25px;
        width: 2px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    }

@media (max-width: 576px) {
    .steps-2 .steps-list::before {
        left: 20px;
    }
}

.steps-2 .steps-list .step-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

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

    .steps-2 .steps-list .step-item:hover .step-number {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: scale(1.1);
    }

    .steps-2 .steps-list .step-item .step-number {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: color-mix(in srgb, var(--accent-color) 10%, white 90%);
        color: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 700;
        margin-right: 20px;
        z-index: 1;
        transition: all 0.3s ease;
    }

@media (max-width: 576px) {
    .steps-2 .steps-list .step-item .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.steps-2 .steps-list .step-item .step-content {
    padding-top: 5px;
}

    .steps-2 .steps-list .step-item .step-content h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--heading-color);
    }

@media (max-width: 576px) {
    .steps-2 .steps-list .step-item .step-content h3 {
        font-size: 1.1rem;
    }
}

.steps-2 .steps-list .step-item .step-content p {
    font-size: 0.95rem;
    color: var(--default-color);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/



.call-to-action {
    position: relative;
    isolation: isolate;
}

    .call-to-action .container {
        position: relative;
    }

    .call-to-action .bluebgoverlay {
        position: absolute !important;
        top: 0pc 0px;
        background: #21649885;
        padding: 11px;
        margin-top: 0pc;
    }

    .call-to-action h1 {
        color: #fff;
    }

    .call-to-action .lead {
        color: #fff;
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 1pc;
    }

    .call-to-action .btn {
        padding: 12px 32px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

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

    .call-to-action .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .call-to-action .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action .btn-outline-primary {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .call-to-action .btn-outline-primary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action .scribble {
        position: absolute;
        pointer-events: none;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

        .call-to-action .scribble::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

    .call-to-action .scribble-1 {
        width: 150px;
        height: 150px;
        top: -30px;
        left: 5%;
        animation-delay: 0s;
    }

        .call-to-action .scribble-1::before {
            clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
        }

    .call-to-action .scribble-2 {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 10%;
        animation-delay: -2s;
    }

        .call-to-action .scribble-2::before {
            clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
        }

    .call-to-action .scribble-3 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 15%;
        animation-delay: -4s;
    }

        .call-to-action .scribble-3::before {
            clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
        }

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .call-to-action {
        padding: 60px 0;
    }

        .call-to-action h2 {
            font-size: 2.5rem;
        }

        .call-to-action .lead {
            font-size: 1.1rem;
        }

        .call-to-action .cta-buttons .btn {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        .call-to-action .scribble {
            transform: scale(0.7);
        }
}

/*--------------------------------------------------------------
# Faq 3 Section
--------------------------------------------------------------*/
.faq-3 .faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .faq-3 .faq-item:last-child {
        border-bottom: none;
    }

    .faq-3 .faq-item.faq-active .faq-header .faq-number {
        color: var(--accent-color);
        font-weight: 500;
    }

    .faq-3 .faq-item.faq-active .faq-header h4 {
        color: var(--accent-color);
    }

    .faq-3 .faq-item.faq-active .faq-header .faq-toggle {
        color: var(--accent-color);
        transform: rotate(0deg);
    }

        .faq-3 .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
            opacity: 0;
            transform: rotate(90deg);
        }

        .faq-3 .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
            opacity: 1;
            transform: rotate(0deg);
        }

    .faq-3 .faq-item.faq-active .faq-content {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
    }

    .faq-3 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .faq-3 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
        opacity: 0;
        transform: rotate(-90deg);
    }

    .faq-3 .faq-item .faq-header {
        display: flex;
        align-items: center;
        padding: 40px 0;
        cursor: pointer;
        gap: 0;
        transition: all 0.3s ease;
    }

        .faq-3 .faq-item .faq-header:hover .faq-number {
            transform: scale(1.1);
        }

        .faq-3 .faq-item .faq-header:hover .faq-toggle {
            transform: scale(1.1);
        }

        .faq-3 .faq-item .faq-header .faq-number {
            flex-shrink: 0;
            width: 80px;
            font-family: var(--heading-font);
            font-size: 1.1rem;
            font-weight: 300;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            transition: all 0.3s ease;
            letter-spacing: -0.02em;
        }

        .faq-3 .faq-item .faq-header h4 {
            flex: 1;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--heading-color);
            transition: all 0.3s ease;
            line-height: 1.5;
            letter-spacing: -0.01em;
            margin-right: 20px;
        }

        .faq-3 .faq-item .faq-header .faq-toggle {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }

            .faq-3 .faq-item .faq-header .faq-toggle i {
                position: absolute;
                transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

    .faq-3 .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
        opacity: 0;
    }

        .faq-3 .faq-item .faq-content .content-inner {
            padding: 0 80px 40px 80px;
            overflow: hidden;
        }

            .faq-3 .faq-item .faq-content .content-inner p {
                margin: 0;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                line-height: 1.8;
                font-size: 1rem;
                font-weight: 300;
            }

@media (max-width: 768px) {
    .faq-3 .faq-item .faq-header {
        padding: 30px 0;
    }

        .faq-3 .faq-item .faq-header .faq-number {
            width: 60px;
            font-size: 1rem;
        }

        .faq-3 .faq-item .faq-header h4 {
            font-size: 1.1rem;
            margin-right: 15px;
        }

        .faq-3 .faq-item .faq-header .faq-toggle {
            width: 20px;
            height: 20px;
            font-size: 16px;
        }

    .faq-3 .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px;
    }

        .faq-3 .faq-item .faq-content .content-inner p {
            font-size: 0.95rem;
        }
}

@media (max-width: 576px) {
    .faq-3 .faq-item .faq-header {
        padding: 25px 0;
    }

        .faq-3 .faq-item .faq-header .faq-number {
            width: 50px;
            font-size: 0.9rem;
        }

        .faq-3 .faq-item .faq-header h4 {
            font-size: 1rem;
            margin-right: 10px;
        }

    .faq-3 .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px;
    }

        .faq-3 .faq-item .faq-content .content-inner p {
            font-size: 0.9rem;
        }
}

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 120px 0;
}

    .hero-4 .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

@media (max-width: 768px) {
    .hero-4 .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-4 .hero-content p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-4 .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

    .hero-4 .hero-buttons .btn {
        padding: 15px 30px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

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

            .hero-4 .hero-buttons .btn.btn-primary:hover {
                background: color-mix(in srgb, var(--accent-color), black 10%);
                border-color: color-mix(in srgb, var(--accent-color), black 10%);
                transform: translateY(-2px);
            }

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

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

.hero-4 .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .hero-4 .hero-stats .stat-item {
        text-align: center;
    }

        .hero-4 .hero-stats .stat-item .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .hero-4 .hero-stats .stat-item .stat-label {
            display: block;
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 0.5rem;
        }

@media (max-width: 768px) {
    .hero-4 .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-4 .hero-visual {
    position: relative;
}

    .hero-4 .hero-visual .hero-image {
        position: relative;
        z-index: 2;
    }

        .hero-4 .hero-visual .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
        }

.hero-4 .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

    .hero-4 .floating-elements .floating-card {
        position: absolute;
        background: var(--surface-color);
        padding: 1rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero-4 .floating-elements .floating-card i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .hero-4 .floating-elements .floating-card span {
            font-weight: 600;
            color: var(--heading-color);
            font-size: 0.9rem;
        }

        .hero-4 .floating-elements .floating-card.card-1 {
            top: 20%;
            right: -10%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-4 .floating-elements .floating-card.card-2 {
            top: 60%;
            left: -15%;
            animation: float 6s ease-in-out infinite 2s;
        }

        .hero-4 .floating-elements .floating-card.card-3 {
            bottom: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite 4s;
        }

@media (max-width: 992px) {
    .hero-4 .floating-elements .floating-card.card-1 {
        right: -5%;
    }

    .hero-4 .floating-elements .floating-card.card-2 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero-4 .floating-elements .floating-card {
        display: none;
    }
}

.hero-4 .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

    .hero-4 .hero-bg-elements .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    }

        .hero-4 .hero-bg-elements .bg-shape.shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: rotate 20s linear infinite;
        }

        .hero-4 .hero-bg-elements .bg-shape.shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: rotate 15s linear infinite reverse;
        }

    .hero-4 .hero-bg-elements .bg-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveParticles 30s linear infinite;
    }

@keyframes float {

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

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

@media (max-width: 992px) {
    .hero-4 .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-4 .hero-buttons {
        justify-content: center;
    }

    .hero-4 .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

    .pricing .container {
        position: relative;
        z-index: 1;
    }

    .pricing .pricing-toggle {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--surface-color);
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

        .pricing .pricing-toggle .monthly,
        .pricing .pricing-toggle .yearly {
            font-size: 16px;
            font-weight: 600;
            padding: 0 15px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            cursor: pointer;
            transition: all 0.3s;
        }

            .pricing .pricing-toggle .monthly.active,
            .pricing .pricing-toggle .yearly.active {
                color: var(--accent-color);
            }

        .pricing .pricing-toggle .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 32px;
        }

            .pricing .pricing-toggle .switch input {
                opacity: 0;
                width: 0;
                height: 0;
            }

            .pricing .pricing-toggle .switch .slider {
                position: absolute;
                cursor: pointer;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
                transition: 0.3s;
                border-radius: 34px;
            }

                .pricing .pricing-toggle .switch .slider:before {
                    position: absolute;
                    content: "";
                    height: 24px;
                    width: 24px;
                    left: 4px;
                    bottom: 4px;
                    background-color: var(--contrast-color);
                    transition: 0.3s;
                    border-radius: 50%;
                }

            .pricing .pricing-toggle .switch input:checked + .slider {
                background-color: var(--accent-color);
            }

                .pricing .pricing-toggle .switch input:checked + .slider:before {
                    transform: translateX(28px);
                }

        .pricing .pricing-toggle .save-badge {
            position: absolute;
            right: -15px;
            top: -15px;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 10px;
            border-radius: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            animation: pulse 2s infinite;
        }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pricing .pricing-item {
    position: relative;
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

    .pricing .pricing-item.featured {
        border: 2px solid var(--accent-color);
        transform: scale(1.03);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

        .pricing .pricing-item.featured:hover {
            transform: translateY(-10px) scale(1.03);
        }

        .pricing .pricing-item.featured .card-action .btn-pricing {
            background-color: var(--accent-color);
            color: var(--contrast-color);
        }

    .pricing .pricing-item .price.yearly {
        display: none;
    }

    .pricing .pricing-item.yearly-active .price.monthly {
        display: none;
    }

    .pricing .pricing-item.yearly-active .price.yearly {
        display: block;
    }

.pricing .popular-badge {
    position: absolute;
    top: 24px;
    right: -35px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 10;
}

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

    .pricing .card-header h3 {
        font-size: 24px;
        font-weight: 700;
        margin: 15px 0 10px;
        color: var(--heading-color);
    }

    .pricing .card-header p {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-bottom: 0;
    }

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

    .pricing .icon i {
        color: var(--accent-color);
        font-size: 28px;
        transform: rotate(-45deg);
    }

.pricing .card-price {
    padding: 20px 30px;
    text-align: center;
    background-color: color-mix(in srgb, var(--background-color), #f8f9fa 50%);
}

    .pricing .card-price h4 {
        font-size: 52px;
        font-weight: 700;
        margin: 0;
        color: var(--heading-color);
        line-height: 1;
    }

        .pricing .card-price h4 .currency {
            font-size: 24px;
            position: relative;
            top: -15px;
            margin-right: 2px;
        }

        .pricing .card-price h4 .period {
            font-size: 15px;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            font-weight: 400;
            margin-left: 5px;
        }

.pricing .card-features {
    padding: 30px;
    flex-grow: 1;
}

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

        .pricing .card-features ul li {
            display: flex;
            align-items: flex-start;
            padding: 12px 0;
            color: var(--default-color);
        }

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

                .pricing .card-features ul li.na .feature-icon i {
                    color: #e45353;
                }

                .pricing .card-features ul li.na span {
                    text-decoration: line-through;
                }

        .pricing .card-features ul .feature-icon {
            flex-shrink: 0;
            margin-right: 15px;
        }

            .pricing .card-features ul .feature-icon i {
                color: #25d366;
                font-size: 18px;
            }

.pricing .card-action {
    padding: 20px 30px 35px;
    text-align: center;
}

    .pricing .card-action .btn-pricing {
        display: inline-block;
        padding: 12px 40px;
        border-radius: 50px;
        background-color: color-mix(in srgb, var(--background-color), #f8f9fa 50%);
        color: var(--heading-color);
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        width: 100%;
    }

        .pricing .card-action .btn-pricing:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            transform: translateY(-3px);
        }

@media (max-width: 991px) {
    .pricing .pricing-item.featured {
        transform: scale(1);
    }

        .pricing .pricing-item.featured:hover {
            transform: translateY(-10px);
        }
}

@media (max-width: 768px) {

    .pricing .pricing-toggle .monthly,
    .pricing .pricing-toggle .yearly {
        font-size: 14px;
        padding: 0 10px;
    }

    .pricing .pricing-toggle .switch {
        width: 50px;
    }

    .pricing .card-price h4 {
        font-size: 42px;
    }

        .pricing .card-price h4 .currency {
            font-size: 20px;
        }
}

/*--------------------------------------------------------------
# Cards 5 Section
--------------------------------------------------------------*/
.cards-5 .why-box {
    color: var(--contrast-color);
    background: var(--accent-color);
    padding: 30px;
}

    .cards-5 .why-box h3 {
        color: var(--contrast-color);
        font-weight: 700;
        font-size: 34px;
        margin-bottom: 30px;
    }

    .cards-5 .why-box p {
        margin-bottom: 30px;
    }

    .cards-5 .why-box .more-btn {
        display: inline-block;
        background: color-mix(in srgb, var(--contrast-color), transparent 85%);
        padding: 8px 40px 10px 40px;
        color: var(--contrast-color);
        transition: all ease-in-out 0.4s;
        border-radius: 50px;
    }

        .cards-5 .why-box .more-btn i {
            font-size: 14px;
        }

        .cards-5 .why-box .more-btn:hover {
            color: var(--accent-color);
            background: var(--surface-color);
        }

.cards-5 .icon-box {
    background-color: var(--surface-color);
    text-align: center;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .cards-5 .icon-box i {
        color: var(--accent-color);
        margin-bottom: 30px;
        font-size: 32px;
        margin-bottom: 30px;
        background: color-mix(in srgb, var(--accent-color), transparent 95%);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 72px;
        height: 72px;
        transition: 0.3s;
    }

    .cards-5 .icon-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 30px 0;
    }

    .cards-5 .icon-box p {
        font-size: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

    .cards-5 .icon-box:hover i {
        color: var(--contrast-color);
        background: var(--accent-color);
    }

/*--------------------------------------------------------------
# Service Details 2 Section
--------------------------------------------------------------*/
.service-details-2 {
    padding-top: 80px;
    padding-bottom: 2px;
}

    .service-details-2 .service-intro {
        text-align: center;
        margin-bottom: 80px;
    }

        .service-details-2 .service-intro .service-badge {
            margin-bottom: 24px;
        }

            .service-details-2 .service-intro .service-badge span {
                display: inline-block;
                padding: 8px 24px;
                background: color-mix(in srgb, var(--accent-color), transparent 92%);
                color: var(--accent-color);
                font-size: 14px;
                font-weight: 500;
                letter-spacing: 1px;
                text-transform: uppercase;
            }

        .service-details-2 .service-intro h1 {
            font-size: 3.5rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 32px;
            color: var(--heading-color);
            letter-spacing: -0.02em;
        }

@media (max-width: 768px) {
    .service-details-2 .service-intro h1 {
        font-size: 2.5rem;
    }
}

.service-details-2 .service-intro .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-details-2 .service-content {
    margin-bottom: 80px;
}

.service-details-2 .visual-section {
    margin-bottom: 80px;
}

    .service-details-2 .visual-section .service-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .service-details-2 .visual-section .service-text {
        padding-left: 40px;
    }

@media (max-width: 992px) {
    .service-details-2 .visual-section .service-text {
        padding-left: 0;
        margin-top: 40px;
    }
}

.service-details-2 .visual-section .service-text h2 {
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .service-details-2 .visual-section .service-text h2 {
        font-size: 1.8rem;
    }
}

.service-details-2 .visual-section .service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--default-color);
    margin-bottom: 20px;
}

    .service-details-2 .visual-section .service-text p:last-child {
        margin-bottom: 0;
    }

.service-details-2 .features-section {
    margin-bottom: 80px;
    padding: 60px 0;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
}

    .service-details-2 .features-section .feature-item {
        text-align: center;
        padding: 0 20px;
    }

        .service-details-2 .features-section .feature-item .feature-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .service-details-2 .features-section .feature-item .feature-icon i {
                font-size: 2rem;
                color: var(--accent-color);
            }

        .service-details-2 .features-section .feature-item h4 {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 16px;
            color: var(--heading-color);
        }

        .service-details-2 .features-section .feature-item p {
            font-size: 1rem;
            line-height: 1.6;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin: 0;
        }

.service-details-2 .process-section {
    margin-bottom: 80px;
}

    .service-details-2 .process-section .process-info {
        padding-right: 40px;
    }

@media (max-width: 992px) {
    .service-details-2 .process-section .process-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.service-details-2 .process-section .process-info h3 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .service-details-2 .process-section .process-info h3 {
        font-size: 1.6rem;
    }
}

.service-details-2 .process-section .process-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--default-color);
    margin: 0;
}

.service-details-2 .process-section .process-steps .step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

    .service-details-2 .process-section .process-steps .step:last-child {
        margin-bottom: 0;
    }

    .service-details-2 .process-section .process-steps .step .step-number {
        min-width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent-color);
        color: var(--contrast-color);
        font-size: 14px;
        font-weight: 500;
    }

    .service-details-2 .process-section .process-steps .step .step-content h5 {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 8px;
        color: var(--heading-color);
    }

    .service-details-2 .process-section .process-steps .step .step-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin: 0;
    }

.service-details-2 .info-grid .info-card {
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 32px;
}

    .service-details-2 .info-grid .info-card .info-header {
        margin-bottom: 24px;
    }

        .service-details-2 .info-grid .info-card .info-header h4 {
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--heading-color);
        }

        .service-details-2 .info-grid .info-card .info-header p {
            font-size: 0.95rem;
            line-height: 1.5;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin: 0;
        }

    .service-details-2 .info-grid .info-card .info-content .price-range {
        text-align: center;
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .service-details-2 .info-grid .info-card .info-content .price-range .price-label {
            display: block;
            font-size: 0.85rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-details-2 .info-grid .info-card .info-content .price-range .price-value {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--accent-color);
            display: block;
        }

    .service-details-2 .info-grid .info-card .info-content .info-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .service-details-2 .info-grid .info-card .info-content .info-list li {
            font-size: 0.95rem;
            color: var(--default-color);
            margin-bottom: 12px;
            position: relative;
            padding-left: 20px;
        }

            .service-details-2 .info-grid .info-card .info-content .info-list li:last-child {
                margin-bottom: 0;
            }

            .service-details-2 .info-grid .info-card .info-content .info-list li::before {
                content: "•";
                position: absolute;
                left: 0;
                color: var(--accent-color);
            }

    .service-details-2 .info-grid .info-card .testimonial-content p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--default-color);
        margin-bottom: 24px;
        font-style: italic;
    }

    .service-details-2 .info-grid .info-card .testimonial-content .testimonial-author {
        display: flex;
        align-items: center;
        gap: 16px;
    }

        .service-details-2 .info-grid .info-card .testimonial-content .testimonial-author .author-image {
            width: 48px;
            height: 48px;
            object-fit: cover;
        }

        .service-details-2 .info-grid .info-card .testimonial-content .testimonial-author .author-info h6 {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 4px;
            color: var(--heading-color);
        }

        .service-details-2 .info-grid .info-card .testimonial-content .testimonial-author .author-info span {
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

    .service-details-2 .info-grid .info-card .service-form .form-field {
        margin-bottom: 16px;
    }

    .service-details-2 .info-grid .info-card .service-form input[type=text],
    .service-details-2 .info-grid .info-card .service-form input[type=email],
    .service-details-2 .info-grid .info-card .service-form input[type=tel],
    .service-details-2 .info-grid .info-card .service-form textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
        font-size: 14px;
        background-color: var(--surface-color);
        color: var(--default-color);
        transition: border-color 0.3s ease;
    }

        .service-details-2 .info-grid .info-card .service-form input[type=text]:focus,
        .service-details-2 .info-grid .info-card .service-form input[type=email]:focus,
        .service-details-2 .info-grid .info-card .service-form input[type=tel]:focus,
        .service-details-2 .info-grid .info-card .service-form textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .service-details-2 .info-grid .info-card .service-form input[type=text]::placeholder,
        .service-details-2 .info-grid .info-card .service-form input[type=email]::placeholder,
        .service-details-2 .info-grid .info-card .service-form input[type=tel]::placeholder,
        .service-details-2 .info-grid .info-card .service-form textarea::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .service-details-2 .info-grid .info-card .service-form .submit-btn {
        background: var(--accent-color);
        color: var(--contrast-color);
        border: none;
        padding: 12px 24px;
        font-size: 0.95rem;
        font-weight: 500;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        margin-top: 8px;
    }

        .service-details-2 .info-grid .info-card .service-form .submit-btn:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

        .service-details-2 .info-grid .info-card .service-form .submit-btn i {
            font-size: 0.85rem;
        }

@media (max-width: 768px) {
    .service-details-2 {
        padding: 60px 0;
    }

        .service-details-2 .service-intro {
            margin-bottom: 60px;
        }

        .service-details-2 .service-content {
            margin-bottom: 60px;
        }

        .service-details-2 .visual-section,
        .service-details-2 .features-section,
        .service-details-2 .process-section {
            margin-bottom: 60px;
        }

            .service-details-2 .features-section .row > div {
                margin-bottom: 40px;
            }

                .service-details-2 .features-section .row > div:last-child {
                    margin-bottom: 0;
                }

        .service-details-2 .info-grid .row > div {
            margin-bottom: 32px;
        }

            .service-details-2 .info-grid .row > div:last-child {
                margin-bottom: 0;
            }
}

/*--------------------------------------------------------------
# Call To Action 4 Section
--------------------------------------------------------------*/
.call-to-action-4 {
    padding-top: 100px;
    position: relative;
    isolation: isolate;
    padding-bottom: 100px;
}

    .call-to-action-4 .container {
        position: relative;
    }

    .call-to-action-4 h2 {
        color: var(--heading-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .call-to-action-4 .lead {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .call-to-action-4 .btn {
        padding: 12px 32px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

        .call-to-action-4 .btn:hover {
            transform: translateY(-2px);
        }

    .call-to-action-4 .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .call-to-action-4 .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-4 .btn-outline-primary {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .call-to-action-4 .btn-outline-primary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-4 .scribble {
        position: absolute;
        pointer-events: none;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

        .call-to-action-4 .scribble::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

    .call-to-action-4 .scribble-1 {
        width: 150px;
        height: 150px;
        top: -30px;
        left: 5%;
        animation-delay: 0s;
    }

        .call-to-action-4 .scribble-1::before {
            clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
        }

    .call-to-action-4 .scribble-2 {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 10%;
        animation-delay: -2s;
    }

        .call-to-action-4 .scribble-2::before {
            clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
        }

    .call-to-action-4 .scribble-3 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 15%;
        animation-delay: -4s;
    }

        .call-to-action-4 .scribble-3::before {
            clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
        }

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .call-to-action-4 {
        padding: 60px 0;
    }

        .call-to-action-4 h2 {
            font-size: 2.5rem;
        }

        .call-to-action-4 .lead {
            font-size: 1.1rem;
        }

        .call-to-action-4 .cta-buttons .btn {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        .call-to-action-4 .scribble {
            transform: scale(0.7);
        }
}

/*--------------------------------------------------------------
# Faq 4 Section
--------------------------------------------------------------*/
.faq-4 .faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .faq-4 .faq-item:last-child {
        border-bottom: none;
    }

    .faq-4 .faq-item.faq-active .faq-header .faq-number {
        color: var(--accent-color);
        font-weight: 500;
    }

    .faq-4 .faq-item.faq-active .faq-header h4 {
        color: var(--accent-color);
    }

    .faq-4 .faq-item.faq-active .faq-header .faq-toggle {
        color: var(--accent-color);
        transform: rotate(0deg);
    }

        .faq-4 .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
            opacity: 0;
            transform: rotate(90deg);
        }

        .faq-4 .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
            opacity: 1;
            transform: rotate(0deg);
        }

    .faq-4 .faq-item.faq-active .faq-content {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
    }

    .faq-4 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .faq-4 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
        opacity: 0;
        transform: rotate(-90deg);
    }

    .faq-4 .faq-item .faq-header {
        display: flex;
        align-items: center;
        padding: 40px 0;
        cursor: pointer;
        gap: 0;
        transition: all 0.3s ease;
    }

        .faq-4 .faq-item .faq-header:hover .faq-number {
            transform: scale(1.1);
        }

        .faq-4 .faq-item .faq-header:hover .faq-toggle {
            transform: scale(1.1);
        }

        .faq-4 .faq-item .faq-header .faq-number {
            flex-shrink: 0;
            width: 80px;
            font-family: var(--heading-font);
            font-size: 1.1rem;
            font-weight: 300;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            transition: all 0.3s ease;
            letter-spacing: -0.02em;
        }

        .faq-4 .faq-item .faq-header h4 {
            flex: 1;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--heading-color);
            transition: all 0.3s ease;
            line-height: 1.5;
            letter-spacing: -0.01em;
            margin-right: 20px;
        }

        .faq-4 .faq-item .faq-header .faq-toggle {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }

            .faq-4 .faq-item .faq-header .faq-toggle i {
                position: absolute;
                transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

    .faq-4 .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
        opacity: 0;
    }

        .faq-4 .faq-item .faq-content .content-inner {
            padding: 0 80px 40px 80px;
            overflow: hidden;
        }

            .faq-4 .faq-item .faq-content .content-inner p {
                margin: 0;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                line-height: 1.8;
                font-size: 1rem;
                font-weight: 300;
            }

@media (max-width: 768px) {
    .faq-4 .faq-item .faq-header {
        padding: 30px 0;
    }

        .faq-4 .faq-item .faq-header .faq-number {
            width: 60px;
            font-size: 1rem;
        }

        .faq-4 .faq-item .faq-header h4 {
            font-size: 1.1rem;
            margin-right: 15px;
        }

        .faq-4 .faq-item .faq-header .faq-toggle {
            width: 20px;
            height: 20px;
            font-size: 16px;
        }

    .faq-4 .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px;
    }

        .faq-4 .faq-item .faq-content .content-inner p {
            font-size: 0.95rem;
        }
}

@media (max-width: 576px) {
    .faq-4 .faq-item .faq-header {
        padding: 25px 0;
    }

        .faq-4 .faq-item .faq-header .faq-number {
            width: 50px;
            font-size: 0.9rem;
        }

        .faq-4 .faq-item .faq-header h4 {
            font-size: 1rem;
            margin-right: 10px;
        }

    .faq-4 .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px;
    }

        .faq-4 .faq-item .faq-content .content-inner p {
            font-size: 0.9rem;
        }
}

/*--------------------------------------------------------------
# Hero 5 Section
--------------------------------------------------------------*/
.hero-5 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 120px 0;
}

    .hero-5 .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

@media (max-width: 768px) {
    .hero-5 .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-5 .hero-content p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-5 .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

    .hero-5 .hero-buttons .btn {
        padding: 15px 30px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

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

            .hero-5 .hero-buttons .btn.btn-primary:hover {
                background: color-mix(in srgb, var(--accent-color), black 10%);
                border-color: color-mix(in srgb, var(--accent-color), black 10%);
                transform: translateY(-2px);
            }

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

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

.hero-5 .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .hero-5 .hero-stats .stat-item {
        text-align: center;
    }

        .hero-5 .hero-stats .stat-item .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .hero-5 .hero-stats .stat-item .stat-label {
            display: block;
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 0.5rem;
        }

@media (max-width: 768px) {
    .hero-5 .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-5 .hero-visual {
    position: relative;
}

    .hero-5 .hero-visual .hero-image {
        position: relative;
        z-index: 2;
    }

        .hero-5 .hero-visual .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
        }

.hero-5 .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

    .hero-5 .floating-elements .floating-card {
        position: absolute;
        background: var(--surface-color);
        padding: 1rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero-5 .floating-elements .floating-card i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .hero-5 .floating-elements .floating-card span {
            font-weight: 600;
            color: var(--heading-color);
            font-size: 0.9rem;
        }

        .hero-5 .floating-elements .floating-card.card-1 {
            top: 20%;
            right: -10%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-5 .floating-elements .floating-card.card-2 {
            top: 60%;
            left: -15%;
            animation: float 6s ease-in-out infinite 2s;
        }

        .hero-5 .floating-elements .floating-card.card-3 {
            bottom: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite 4s;
        }

@media (max-width: 992px) {
    .hero-5 .floating-elements .floating-card.card-1 {
        right: -5%;
    }

    .hero-5 .floating-elements .floating-card.card-2 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero-5 .floating-elements .floating-card {
        display: none;
    }
}

.hero-5 .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

    .hero-5 .hero-bg-elements .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    }

        .hero-5 .hero-bg-elements .bg-shape.shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: rotate 20s linear infinite;
        }

        .hero-5 .hero-bg-elements .bg-shape.shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: rotate 15s linear infinite reverse;
        }

    .hero-5 .hero-bg-elements .bg-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveParticles 30s linear infinite;
    }

@keyframes float {

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

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

@media (max-width: 992px) {
    .hero-5 .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-5 .hero-buttons {
        justify-content: center;
    }

    .hero-5 .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Cards 4 Section
--------------------------------------------------------------*/
.cards-4 {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .cards-4 .card-item {
        background-color: var(--surface-color);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        height: 100%;
    }

        .cards-4 .card-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

            .cards-4 .card-item:hover .card-img img {
                transform: scale(1.1);
            }

            .cards-4 .card-item:hover .card-img .card-overlay {
                opacity: 1;
                visibility: visible;
            }

                .cards-4 .card-item:hover .card-img .card-overlay .card-overlay-content {
                    transform: translateY(0);
                }

        .cards-4 .card-item .card-img {
            position: relative;
            overflow: hidden;
        }

            .cards-4 .card-item .card-img img {
                width: 100%;
                aspect-ratio: 16/9;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

            .cards-4 .card-item .card-img .card-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease-in-out;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 2rem;
            }

                .cards-4 .card-item .card-img .card-overlay .card-overlay-content {
                    text-align: center;
                    transform: translateY(20px);
                    transition: transform 0.3s ease-in-out;
                }

                    .cards-4 .card-item .card-img .card-overlay .card-overlay-content h4 {
                        color: var(--contrast-color);
                        font-size: 1.5rem;
                        margin-bottom: 1rem;
                    }

                    .cards-4 .card-item .card-img .card-overlay .card-overlay-content p {
                        color: var(--contrast-color);
                        font-size: 0.9rem;
                        margin-bottom: 1.5rem;
                        opacity: 0.9;
                    }

                    .cards-4 .card-item .card-img .card-overlay .card-overlay-content .btn-link {
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        width: 45px;
                        height: 45px;
                        border-radius: 50%;
                        background-color: var(--contrast-color);
                        color: var(--accent-color);
                        transition: all 0.3s ease;
                    }

                        .cards-4 .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
                            background-color: var(--accent-color);
                            color: var(--contrast-color);
                            transform: rotate(45deg);
                        }

                        .cards-4 .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
                            font-size: 1.2rem;
                        }

        .cards-4 .card-item .card-content {
            padding: 2rem;
        }

            .cards-4 .card-item .card-content .card-category {
                display: inline-block;
                font-size: 0.875rem;
                color: var(--accent-color);
                font-weight: 500;
                margin-bottom: 0.5rem;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .cards-4 .card-item .card-content h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
                color: var(--heading-color);
                font-weight: 600;
                line-height: 1.3;
            }

            .cards-4 .card-item .card-content p {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 0;
            }

/*--------------------------------------------------------------
# Cards 6 Section
--------------------------------------------------------------*/
.cards-6 .why-box {
    color: var(--contrast-color);
    background: var(--accent-color);
    padding: 30px;
}

    .cards-6 .why-box h3 {
        color: var(--contrast-color);
        font-weight: 700;
        font-size: 34px;
        margin-bottom: 30px;
    }

    .cards-6 .why-box p {
        margin-bottom: 30px;
    }

    .cards-6 .why-box .more-btn {
        display: inline-block;
        background: color-mix(in srgb, var(--contrast-color), transparent 85%);
        padding: 8px 40px 10px 40px;
        color: var(--contrast-color);
        transition: all ease-in-out 0.4s;
        border-radius: 50px;
    }

        .cards-6 .why-box .more-btn i {
            font-size: 14px;
        }

        .cards-6 .why-box .more-btn:hover {
            color: var(--accent-color);
            background: var(--surface-color);
        }

.cards-6 .icon-box {
    background-color: var(--surface-color);
    text-align: center;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .cards-6 .icon-box i {
        color: var(--accent-color);
        margin-bottom: 30px;
        font-size: 32px;
        margin-bottom: 30px;
        background: color-mix(in srgb, var(--accent-color), transparent 95%);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 72px;
        height: 72px;
        transition: 0.3s;
    }

    .cards-6 .icon-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 30px 0;
    }

    .cards-6 .icon-box p {
        font-size: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

    .cards-6 .icon-box:hover i {
        color: var(--contrast-color);
        background: var(--accent-color);
    }

/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 .isotope-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}

    .gallery-2 .isotope-filters li {
        display: inline-block;
        padding: 10px 20px;
        background: var(--surface-color);
        color: var(--default-color);
        border-radius: 30px;
        cursor: pointer;
        font-weight: 500;
        font-size: 15px;
        transition: 0.3s;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

        .gallery-2 .isotope-filters li:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 80%);
        }

        .gallery-2 .isotope-filters li.filter-active {
            background: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

@media (max-width: 576px) {
    .gallery-2 .isotope-filters {
        gap: 8px;
    }

        .gallery-2 .isotope-filters li {
            padding: 8px 14px;
            font-size: 14px;
        }
}

.gallery-2 .gallery-item {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .gallery-2 .gallery-item {
        margin-bottom: 20px;
    }
}

.gallery-2 .gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

    .gallery-2 .gallery-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

        .gallery-2 .gallery-card:hover .gallery-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-2 .gallery-card:hover .gallery-image img {
            transform: scale(1.1);
        }

.gallery-2 .gallery-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
    overflow: hidden;
}

    .gallery-2 .gallery-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

.gallery-2 .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--contrast-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

    .gallery-2 .gallery-overlay h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--contrast-color);
    }

    .gallery-2 .gallery-overlay p {
        font-size: 14px;
        margin-bottom: 15px;
        opacity: 0.9;
    }

    .gallery-2 .gallery-overlay .gallery-actions {
        display: flex;
        gap: 15px;
    }

        .gallery-2 .gallery-overlay .gallery-actions a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent-color);
            color: var(--contrast-color);
            font-size: 18px;
            transition: 0.3s;
        }

            .gallery-2 .gallery-overlay .gallery-actions a:hover {
                background: color-mix(in srgb, var(--accent-color), transparent 20%);
                transform: scale(1.1);
            }

.gallery-2 .glightbox-clean .gslide-description {
    background: #272727;
}

.gallery-2 .glightbox-clean .gslide-title {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/*--------------------------------------------------------------
# Service Details 3 Section
--------------------------------------------------------------*/
.service-details-3 .service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

    .service-details-3 .service-image img {
        border-radius: 15px;
    }

    .service-details-3 .service-image .service-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
    }

.service-details-3 .service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .service-details-3 .service-content h2 {
        font-size: 2rem;
    }
}

.service-details-3 .service-content .service-tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-details-3 .service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details-3 .service-content .service-features {
    margin: 2rem 0;
}

    .service-details-3 .service-content .service-features h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--heading-color);
    }

    .service-details-3 .service-content .service-features ul {
        list-style: none;
        padding: 0;
    }

        .service-details-3 .service-content .service-features ul li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            color: color-mix(in srgb, var(--default-color), transparent 10%);
        }

            .service-details-3 .service-content .service-features ul li i {
                color: var(--accent-color);
                margin-right: 0.8rem;
                font-size: 1.1rem;
            }

.service-details-3 .service-content .service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 576px) {
    .service-details-3 .service-content .service-actions {
        flex-direction: column;
    }
}

.service-details-3 .service-content .service-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-details-3 .service-content .service-actions .btn-primary:hover {
        background: color-mix(in srgb, var(--accent-color), black 10%);
        transform: translateY(-2px);
    }

.service-details-3 .service-content .service-actions .btn-secondary {
    background: transparent;
    color: var(--heading-color);
    padding: 12px 28px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-details-3 .service-content .service-actions .btn-secondary:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

.service-details-3 .service-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .service-details-3 .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .service-details-3 .service-card .card-icon {
        width: 70px;
        height: 70px;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

        .service-details-3 .service-card .card-icon i {
            font-size: 2rem;
            color: var(--accent-color);
        }

    .service-details-3 .service-card h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .service-details-3 .service-card p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 1.5rem;
    }

    .service-details-3 .service-card .card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .service-details-3 .service-card .card-link:hover {
            gap: 0.8rem;
            color: color-mix(in srgb, var(--accent-color), black 10%);
        }

        .service-details-3 .service-card .card-link i {
            transition: transform 0.3s ease;
        }

        .service-details-3 .service-card .card-link:hover i {
            transform: translateX(3px);
        }

.service-details-3 .booking-section {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 2rem;
    border-radius: 15px;
}

    .service-details-3 .booking-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--heading-color);
    }

    .service-details-3 .booking-section p {
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        margin-bottom: 2rem;
    }

    .service-details-3 .booking-section .availability-info .info-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

        .service-details-3 .booking-section .availability-info .info-item i {
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            color: var(--contrast-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-details-3 .booking-section .availability-info .info-item div {
            display: flex;
            flex-direction: column;
        }

            .service-details-3 .booking-section .availability-info .info-item div strong {
                color: var(--heading-color);
                font-weight: 600;
                margin-bottom: 0.2rem;
            }

            .service-details-3 .booking-section .availability-info .info-item div span {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                font-size: 0.9rem;
            }

.service-details-3 .appointment-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .service-details-3 .appointment-card h4 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .service-details-3 .appointment-card p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 2rem;
    }

    .service-details-3 .appointment-card .btn-appointment {
        display: inline-block;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        width: 100%;
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
    }

        .service-details-3 .appointment-card .btn-appointment:hover {
            background: color-mix(in srgb, var(--accent-color), black 10%);
            transform: translateY(-2px);
        }

    .service-details-3 .appointment-card .contact-alternative {
        text-align: center;
        font-size: 0.9rem;
    }

        .service-details-3 .appointment-card .contact-alternative span {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            display: block;
            margin-bottom: 0.3rem;
        }

        .service-details-3 .appointment-card .contact-alternative a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
        }

            .service-details-3 .appointment-card .contact-alternative a:hover {
                color: color-mix(in srgb, var(--accent-color), black 10%);
            }

@media (max-width: 992px) {
    .service-details-3 .service-content {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .service-details-3 .booking-section {
        margin-bottom: 2rem;
    }

    .service-details-3 .availability-info .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/*--------------------------------------------------------------
# Pricing 3 Section
--------------------------------------------------------------*/
.pricing-3 {
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

    .pricing-3 .container {
        position: relative;
        z-index: 1;
    }

    .pricing-3 .pricing-toggle {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--surface-color);
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

        .pricing-3 .pricing-toggle .monthly,
        .pricing-3 .pricing-toggle .yearly {
            font-size: 16px;
            font-weight: 600;
            padding: 0 15px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            cursor: pointer;
            transition: all 0.3s;
        }

            .pricing-3 .pricing-toggle .monthly.active,
            .pricing-3 .pricing-toggle .yearly.active {
                color: var(--accent-color);
            }

        .pricing-3 .pricing-toggle .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 32px;
        }

            .pricing-3 .pricing-toggle .switch input {
                opacity: 0;
                width: 0;
                height: 0;
            }

            .pricing-3 .pricing-toggle .switch .slider {
                position: absolute;
                cursor: pointer;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
                transition: 0.3s;
                border-radius: 34px;
            }

                .pricing-3 .pricing-toggle .switch .slider:before {
                    position: absolute;
                    content: "";
                    height: 24px;
                    width: 24px;
                    left: 4px;
                    bottom: 4px;
                    background-color: var(--contrast-color);
                    transition: 0.3s;
                    border-radius: 50%;
                }

            .pricing-3 .pricing-toggle .switch input:checked + .slider {
                background-color: var(--accent-color);
            }

                .pricing-3 .pricing-toggle .switch input:checked + .slider:before {
                    transform: translateX(28px);
                }

        .pricing-3 .pricing-toggle .save-badge {
            position: absolute;
            right: -15px;
            top: -15px;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 10px;
            border-radius: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            animation: pulse 2s infinite;
        }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pricing-3 .pricing-item {
    position: relative;
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .pricing-3 .pricing-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .pricing-3 .pricing-item.featured {
        border: 2px solid var(--accent-color);
        transform: scale(1.03);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

        .pricing-3 .pricing-item.featured:hover {
            transform: translateY(-10px) scale(1.03);
        }

        .pricing-3 .pricing-item.featured .card-action .btn-pricing {
            background-color: var(--accent-color);
            color: var(--contrast-color);
        }

    .pricing-3 .pricing-item .price.yearly {
        display: none;
    }

    .pricing-3 .pricing-item.yearly-active .price.monthly {
        display: none;
    }

    .pricing-3 .pricing-item.yearly-active .price.yearly {
        display: block;
    }

.pricing-3 .popular-badge {
    position: absolute;
    top: 24px;
    right: -35px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 10;
}

.pricing-3 .card-header {
    padding: 35px 30px 20px;
    text-align: center;
}

    .pricing-3 .card-header h3 {
        font-size: 24px;
        font-weight: 700;
        margin: 15px 0 10px;
        color: var(--heading-color);
    }

    .pricing-3 .card-header p {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-bottom: 0;
    }

.pricing-3 .icon {
    margin: 0 auto;
    width: 70px;
    height: 70px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

    .pricing-3 .icon i {
        color: var(--accent-color);
        font-size: 28px;
        transform: rotate(-45deg);
    }

.pricing-3 .card-price {
    padding: 20px 30px;
    text-align: center;
    background-color: color-mix(in srgb, var(--background-color), #f8f9fa 50%);
}

    .pricing-3 .card-price h4 {
        font-size: 52px;
        font-weight: 700;
        margin: 0;
        color: var(--heading-color);
        line-height: 1;
    }

        .pricing-3 .card-price h4 .currency {
            font-size: 24px;
            position: relative;
            top: -15px;
            margin-right: 2px;
        }

        .pricing-3 .card-price h4 .period {
            font-size: 15px;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            font-weight: 400;
            margin-left: 5px;
        }

.pricing-3 .card-features {
    padding: 30px;
    flex-grow: 1;
}

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

        .pricing-3 .card-features ul li {
            display: flex;
            align-items: flex-start;
            padding: 12px 0;
            color: var(--default-color);
        }

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

                .pricing-3 .card-features ul li.na .feature-icon i {
                    color: #e45353;
                }

                .pricing-3 .card-features ul li.na span {
                    text-decoration: line-through;
                }

        .pricing-3 .card-features ul .feature-icon {
            flex-shrink: 0;
            margin-right: 15px;
        }

            .pricing-3 .card-features ul .feature-icon i {
                color: #25d366;
                font-size: 18px;
            }

.pricing-3 .card-action {
    padding: 20px 30px 35px;
    text-align: center;
}

    .pricing-3 .card-action .btn-pricing {
        display: inline-block;
        padding: 12px 40px;
        border-radius: 50px;
        background-color: color-mix(in srgb, var(--background-color), #f8f9fa 50%);
        color: var(--heading-color);
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        width: 100%;
    }

        .pricing-3 .card-action .btn-pricing:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            transform: translateY(-3px);
        }

@media (max-width: 991px) {
    .pricing-3 .pricing-item.featured {
        transform: scale(1);
    }

        .pricing-3 .pricing-item.featured:hover {
            transform: translateY(-10px);
        }
}

@media (max-width: 768px) {

    .pricing-3 .pricing-toggle .monthly,
    .pricing-3 .pricing-toggle .yearly {
        font-size: 14px;
        padding: 0 10px;
    }

    .pricing-3 .pricing-toggle .switch {
        width: 50px;
    }

    .pricing-3 .card-price h4 {
        font-size: 42px;
    }

        .pricing-3 .card-price h4 .currency {
            font-size: 20px;
        }
}

/*--------------------------------------------------------------
# Call To Action 5 Section
--------------------------------------------------------------*/
.call-to-action-5 {
    padding-top: 100px;
    position: relative;
    isolation: isolate;
    padding-bottom: 100px;
}

    .call-to-action-5 .container {
        position: relative;
    }

    .call-to-action-5 h2 {
        color: var(--heading-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .call-to-action-5 .lead {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .call-to-action-5 .btn {
        padding: 12px 32px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

        .call-to-action-5 .btn:hover {
            transform: translateY(-2px);
        }

    .call-to-action-5 .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .call-to-action-5 .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-5 .btn-outline-primary {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .call-to-action-5 .btn-outline-primary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-5 .scribble {
        position: absolute;
        pointer-events: none;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

        .call-to-action-5 .scribble::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

    .call-to-action-5 .scribble-1 {
        width: 150px;
        height: 150px;
        top: -30px;
        left: 5%;
        animation-delay: 0s;
    }

        .call-to-action-5 .scribble-1::before {
            clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
        }

    .call-to-action-5 .scribble-2 {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 10%;
        animation-delay: -2s;
    }

        .call-to-action-5 .scribble-2::before {
            clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
        }

    .call-to-action-5 .scribble-3 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 15%;
        animation-delay: -4s;
    }

        .call-to-action-5 .scribble-3::before {
            clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
        }

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .call-to-action-5 {
        padding: 60px 0;
    }

        .call-to-action-5 h2 {
            font-size: 2.5rem;
        }

        .call-to-action-5 .lead {
            font-size: 1.1rem;
        }

        .call-to-action-5 .cta-buttons .btn {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        .call-to-action-5 .scribble {
            transform: scale(0.7);
        }
}

/*--------------------------------------------------------------
# Faq 5 Section
--------------------------------------------------------------*/
.faq-5 .faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .faq-5 .faq-item:last-child {
        border-bottom: none;
    }

    .faq-5 .faq-item.faq-active .faq-header .faq-number {
        color: var(--accent-color);
        font-weight: 500;
    }

    .faq-5 .faq-item.faq-active .faq-header h4 {
        color: var(--accent-color);
    }

    .faq-5 .faq-item.faq-active .faq-header .faq-toggle {
        color: var(--accent-color);
        transform: rotate(0deg);
    }

        .faq-5 .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
            opacity: 0;
            transform: rotate(90deg);
        }

        .faq-5 .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
            opacity: 1;
            transform: rotate(0deg);
        }

    .faq-5 .faq-item.faq-active .faq-content {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
    }

    .faq-5 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .faq-5 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
        opacity: 0;
        transform: rotate(-90deg);
    }

    .faq-5 .faq-item .faq-header {
        display: flex;
        align-items: center;
        padding: 40px 0;
        cursor: pointer;
        gap: 0;
        transition: all 0.3s ease;
    }

        .faq-5 .faq-item .faq-header:hover .faq-number {
            transform: scale(1.1);
        }

        .faq-5 .faq-item .faq-header:hover .faq-toggle {
            transform: scale(1.1);
        }

        .faq-5 .faq-item .faq-header .faq-number {
            flex-shrink: 0;
            width: 80px;
            font-family: var(--heading-font);
            font-size: 1.1rem;
            font-weight: 300;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            transition: all 0.3s ease;
            letter-spacing: -0.02em;
        }

        .faq-5 .faq-item .faq-header h4 {
            flex: 1;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--heading-color);
            transition: all 0.3s ease;
            line-height: 1.5;
            letter-spacing: -0.01em;
            margin-right: 20px;
        }

        .faq-5 .faq-item .faq-header .faq-toggle {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }

            .faq-5 .faq-item .faq-header .faq-toggle i {
                position: absolute;
                transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

    .faq-5 .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
        opacity: 0;
    }

        .faq-5 .faq-item .faq-content .content-inner {
            padding: 0 80px 40px 80px;
            overflow: hidden;
        }

            .faq-5 .faq-item .faq-content .content-inner p {
                margin: 0;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                line-height: 1.8;
                font-size: 1rem;
                font-weight: 300;
            }

@media (max-width: 768px) {
    .faq-5 .faq-item .faq-header {
        padding: 30px 0;
    }

        .faq-5 .faq-item .faq-header .faq-number {
            width: 60px;
            font-size: 1rem;
        }

        .faq-5 .faq-item .faq-header h4 {
            font-size: 1.1rem;
            margin-right: 15px;
        }

        .faq-5 .faq-item .faq-header .faq-toggle {
            width: 20px;
            height: 20px;
            font-size: 16px;
        }

    .faq-5 .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px;
    }

        .faq-5 .faq-item .faq-content .content-inner p {
            font-size: 0.95rem;
        }
}

@media (max-width: 576px) {
    .faq-5 .faq-item .faq-header {
        padding: 25px 0;
    }

        .faq-5 .faq-item .faq-header .faq-number {
            width: 50px;
            font-size: 0.9rem;
        }

        .faq-5 .faq-item .faq-header h4 {
            font-size: 1rem;
            margin-right: 10px;
        }

    .faq-5 .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px;
    }

        .faq-5 .faq-item .faq-content .content-inner p {
            font-size: 0.9rem;
        }
}

/*--------------------------------------------------------------
# Hero 6 Section
--------------------------------------------------------------*/
.hero-6 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 120px 0;
}

    .hero-6 .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

@media (max-width: 768px) {
    .hero-6 .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-6 .hero-content p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-6 .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

    .hero-6 .hero-buttons .btn {
        padding: 15px 30px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

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

            .hero-6 .hero-buttons .btn.btn-primary:hover {
                background: color-mix(in srgb, var(--accent-color), black 10%);
                border-color: color-mix(in srgb, var(--accent-color), black 10%);
                transform: translateY(-2px);
            }

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

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

.hero-6 .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .hero-6 .hero-stats .stat-item {
        text-align: center;
    }

        .hero-6 .hero-stats .stat-item .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .hero-6 .hero-stats .stat-item .stat-label {
            display: block;
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 0.5rem;
        }

@media (max-width: 768px) {
    .hero-6 .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-6 .hero-visual {
    position: relative;
}

    .hero-6 .hero-visual .hero-image {
        position: relative;
        z-index: 2;
    }

        .hero-6 .hero-visual .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
        }

.hero-6 .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

    .hero-6 .floating-elements .floating-card {
        position: absolute;
        background: var(--surface-color);
        padding: 1rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero-6 .floating-elements .floating-card i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .hero-6 .floating-elements .floating-card span {
            font-weight: 600;
            color: var(--heading-color);
            font-size: 0.9rem;
        }

        .hero-6 .floating-elements .floating-card.card-1 {
            top: 20%;
            right: -10%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-6 .floating-elements .floating-card.card-2 {
            top: 60%;
            left: -15%;
            animation: float 6s ease-in-out infinite 2s;
        }

        .hero-6 .floating-elements .floating-card.card-3 {
            bottom: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite 4s;
        }

@media (max-width: 992px) {
    .hero-6 .floating-elements .floating-card.card-1 {
        right: -5%;
    }

    .hero-6 .floating-elements .floating-card.card-2 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero-6 .floating-elements .floating-card {
        display: none;
    }
}

.hero-6 .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

    .hero-6 .hero-bg-elements .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    }

        .hero-6 .hero-bg-elements .bg-shape.shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: rotate 20s linear infinite;
        }

        .hero-6 .hero-bg-elements .bg-shape.shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: rotate 15s linear infinite reverse;
        }

    .hero-6 .hero-bg-elements .bg-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveParticles 30s linear infinite;
    }

@keyframes float {

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

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

@media (max-width: 992px) {
    .hero-6 .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-6 .hero-buttons {
        justify-content: center;
    }

    .hero-6 .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Cards 7 Section
--------------------------------------------------------------*/
.cards-7 {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .cards-7 .card-item {
        background-color: var(--surface-color);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        height: 100%;
    }

        .cards-7 .card-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

            .cards-7 .card-item:hover .card-img img {
                transform: scale(1.1);
            }

            .cards-7 .card-item:hover .card-img .card-overlay {
                opacity: 1;
                visibility: visible;
            }

                .cards-7 .card-item:hover .card-img .card-overlay .card-overlay-content {
                    transform: translateY(0);
                }

        .cards-7 .card-item .card-img {
            position: relative;
            overflow: hidden;
        }

            .cards-7 .card-item .card-img img {
                width: 100%;
                aspect-ratio: 16/9;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

            .cards-7 .card-item .card-img .card-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease-in-out;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 2rem;
            }

                .cards-7 .card-item .card-img .card-overlay .card-overlay-content {
                    text-align: center;
                    transform: translateY(20px);
                    transition: transform 0.3s ease-in-out;
                }

                    .cards-7 .card-item .card-img .card-overlay .card-overlay-content h4 {
                        color: var(--contrast-color);
                        font-size: 1.5rem;
                        margin-bottom: 1rem;
                    }

                    .cards-7 .card-item .card-img .card-overlay .card-overlay-content p {
                        color: var(--contrast-color);
                        font-size: 0.9rem;
                        margin-bottom: 1.5rem;
                        opacity: 0.9;
                    }

                    .cards-7 .card-item .card-img .card-overlay .card-overlay-content .btn-link {
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        width: 45px;
                        height: 45px;
                        border-radius: 50%;
                        background-color: var(--contrast-color);
                        color: var(--accent-color);
                        transition: all 0.3s ease;
                    }

                        .cards-7 .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
                            background-color: var(--accent-color);
                            color: var(--contrast-color);
                            transform: rotate(45deg);
                        }

                        .cards-7 .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
                            font-size: 1.2rem;
                        }

        .cards-7 .card-item .card-content {
            padding: 2rem;
        }

            .cards-7 .card-item .card-content .card-category {
                display: inline-block;
                font-size: 0.875rem;
                color: var(--accent-color);
                font-weight: 500;
                margin-bottom: 0.5rem;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .cards-7 .card-item .card-content h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
                color: var(--heading-color);
                font-weight: 600;
                line-height: 1.3;
            }

            .cards-7 .card-item .card-content p {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 0;
            }

/*--------------------------------------------------------------
# Service Details 4 Section
--------------------------------------------------------------*/
.service-details-4 .service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

    .service-details-4 .service-image img {
        border-radius: 15px;
    }

    .service-details-4 .service-image .service-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
    }

.service-details-4 .service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .service-details-4 .service-content h2 {
        font-size: 2rem;
    }
}

.service-details-4 .service-content .service-tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-details-4 .service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details-4 .service-content .service-features {
    margin: 2rem 0;
}

    .service-details-4 .service-content .service-features h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--heading-color);
    }

    .service-details-4 .service-content .service-features ul {
        list-style: none;
        padding: 0;
    }

        .service-details-4 .service-content .service-features ul li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            color: color-mix(in srgb, var(--default-color), transparent 10%);
        }

            .service-details-4 .service-content .service-features ul li i {
                color: var(--accent-color);
                margin-right: 0.8rem;
                font-size: 1.1rem;
            }

.service-details-4 .service-content .service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 576px) {
    .service-details-4 .service-content .service-actions {
        flex-direction: column;
    }
}

.service-details-4 .service-content .service-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-details-4 .service-content .service-actions .btn-primary:hover {
        background: color-mix(in srgb, var(--accent-color), black 10%);
        transform: translateY(-2px);
    }

.service-details-4 .service-content .service-actions .btn-secondary {
    background: transparent;
    color: var(--heading-color);
    padding: 12px 28px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-details-4 .service-content .service-actions .btn-secondary:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

.service-details-4 .service-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .service-details-4 .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .service-details-4 .service-card .card-icon {
        width: 70px;
        height: 70px;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

        .service-details-4 .service-card .card-icon i {
            font-size: 2rem;
            color: var(--accent-color);
        }

    .service-details-4 .service-card h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .service-details-4 .service-card p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 1.5rem;
    }

    .service-details-4 .service-card .card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .service-details-4 .service-card .card-link:hover {
            gap: 0.8rem;
            color: color-mix(in srgb, var(--accent-color), black 10%);
        }

        .service-details-4 .service-card .card-link i {
            transition: transform 0.3s ease;
        }

        .service-details-4 .service-card .card-link:hover i {
            transform: translateX(3px);
        }

.service-details-4 .booking-section {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 2rem;
    border-radius: 15px;
}

    .service-details-4 .booking-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--heading-color);
    }

    .service-details-4 .booking-section p {
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        margin-bottom: 2rem;
    }

    .service-details-4 .booking-section .availability-info .info-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

        .service-details-4 .booking-section .availability-info .info-item i {
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            color: var(--contrast-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-details-4 .booking-section .availability-info .info-item div {
            display: flex;
            flex-direction: column;
        }

            .service-details-4 .booking-section .availability-info .info-item div strong {
                color: var(--heading-color);
                font-weight: 600;
                margin-bottom: 0.2rem;
            }

            .service-details-4 .booking-section .availability-info .info-item div span {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                font-size: 0.9rem;
            }

.service-details-4 .appointment-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .service-details-4 .appointment-card h4 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .service-details-4 .appointment-card p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 2rem;
    }

    .service-details-4 .appointment-card .btn-appointment {
        display: inline-block;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        width: 100%;
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
    }

        .service-details-4 .appointment-card .btn-appointment:hover {
            background: color-mix(in srgb, var(--accent-color), black 10%);
            transform: translateY(-2px);
        }

    .service-details-4 .appointment-card .contact-alternative {
        text-align: center;
        font-size: 0.9rem;
    }

        .service-details-4 .appointment-card .contact-alternative span {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            display: block;
            margin-bottom: 0.3rem;
        }

        .service-details-4 .appointment-card .contact-alternative a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
        }

            .service-details-4 .appointment-card .contact-alternative a:hover {
                color: color-mix(in srgb, var(--accent-color), black 10%);
            }

@media (max-width: 992px) {
    .service-details-4 .service-content {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .service-details-4 .booking-section {
        margin-bottom: 2rem;
    }

    .service-details-4 .availability-info .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/*--------------------------------------------------------------
# Call To Action 6 Section
--------------------------------------------------------------*/
.call-to-action-6 {
    padding-top: 100px;
    position: relative;
    isolation: isolate;
    padding-bottom: 100px;
}

    .call-to-action-6 .container {
        position: relative;
    }

    .call-to-action-6 h2 {
        color: var(--heading-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .call-to-action-6 .lead {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .call-to-action-6 .btn {
        padding: 12px 32px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

        .call-to-action-6 .btn:hover {
            transform: translateY(-2px);
        }

    .call-to-action-6 .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .call-to-action-6 .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-6 .btn-outline-primary {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .call-to-action-6 .btn-outline-primary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-6 .scribble {
        position: absolute;
        pointer-events: none;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

        .call-to-action-6 .scribble::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

    .call-to-action-6 .scribble-1 {
        width: 150px;
        height: 150px;
        top: -30px;
        left: 5%;
        animation-delay: 0s;
    }

        .call-to-action-6 .scribble-1::before {
            clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
        }

    .call-to-action-6 .scribble-2 {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 10%;
        animation-delay: -2s;
    }

        .call-to-action-6 .scribble-2::before {
            clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
        }

    .call-to-action-6 .scribble-3 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 15%;
        animation-delay: -4s;
    }

        .call-to-action-6 .scribble-3::before {
            clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
        }

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .call-to-action-6 {
        padding: 60px 0;
    }

        .call-to-action-6 h2 {
            font-size: 2.5rem;
        }

        .call-to-action-6 .lead {
            font-size: 1.1rem;
        }

        .call-to-action-6 .cta-buttons .btn {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        .call-to-action-6 .scribble {
            transform: scale(0.7);
        }
}

/*--------------------------------------------------------------
# Faq 6 Section
--------------------------------------------------------------*/
.faq-6 .faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .faq-6 .faq-item:last-child {
        border-bottom: none;
    }

    .faq-6 .faq-item.faq-active .faq-header .faq-number {
        color: var(--accent-color);
        font-weight: 500;
    }

    .faq-6 .faq-item.faq-active .faq-header h4 {
        color: var(--accent-color);
    }

    .faq-6 .faq-item.faq-active .faq-header .faq-toggle {
        color: var(--accent-color);
        transform: rotate(0deg);
    }

        .faq-6 .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
            opacity: 0;
            transform: rotate(90deg);
        }

        .faq-6 .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
            opacity: 1;
            transform: rotate(0deg);
        }

    .faq-6 .faq-item.faq-active .faq-content {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
    }

    .faq-6 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .faq-6 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
        opacity: 0;
        transform: rotate(-90deg);
    }

    .faq-6 .faq-item .faq-header {
        display: flex;
        align-items: center;
        padding: 40px 0;
        cursor: pointer;
        gap: 0;
        transition: all 0.3s ease;
    }

        .faq-6 .faq-item .faq-header:hover .faq-number {
            transform: scale(1.1);
        }

        .faq-6 .faq-item .faq-header:hover .faq-toggle {
            transform: scale(1.1);
        }

        .faq-6 .faq-item .faq-header .faq-number {
            flex-shrink: 0;
            width: 80px;
            font-family: var(--heading-font);
            font-size: 1.1rem;
            font-weight: 300;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            transition: all 0.3s ease;
            letter-spacing: -0.02em;
        }

        .faq-6 .faq-item .faq-header h4 {
            flex: 1;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--heading-color);
            transition: all 0.3s ease;
            line-height: 1.5;
            letter-spacing: -0.01em;
            margin-right: 20px;
        }

        .faq-6 .faq-item .faq-header .faq-toggle {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }

            .faq-6 .faq-item .faq-header .faq-toggle i {
                position: absolute;
                transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

    .faq-6 .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
        opacity: 0;
    }

        .faq-6 .faq-item .faq-content .content-inner {
            padding: 0 80px 40px 80px;
            overflow: hidden;
        }

            .faq-6 .faq-item .faq-content .content-inner p {
                margin: 0;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                line-height: 1.8;
                font-size: 1rem;
                font-weight: 300;
            }

@media (max-width: 768px) {
    .faq-6 .faq-item .faq-header {
        padding: 30px 0;
    }

        .faq-6 .faq-item .faq-header .faq-number {
            width: 60px;
            font-size: 1rem;
        }

        .faq-6 .faq-item .faq-header h4 {
            font-size: 1.1rem;
            margin-right: 15px;
        }

        .faq-6 .faq-item .faq-header .faq-toggle {
            width: 20px;
            height: 20px;
            font-size: 16px;
        }

    .faq-6 .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px;
    }

        .faq-6 .faq-item .faq-content .content-inner p {
            font-size: 0.95rem;
        }
}

@media (max-width: 576px) {
    .faq-6 .faq-item .faq-header {
        padding: 25px 0;
    }

        .faq-6 .faq-item .faq-header .faq-number {
            width: 50px;
            font-size: 0.9rem;
        }

        .faq-6 .faq-item .faq-header h4 {
            font-size: 1rem;
            margin-right: 10px;
        }

    .faq-6 .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px;
    }

        .faq-6 .faq-item .faq-content .content-inner p {
            font-size: 0.9rem;
        }
}

/*--------------------------------------------------------------
# Hero 7 Section
--------------------------------------------------------------*/
.hero-7 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 120px 0;
}

    .hero-7 .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

@media (max-width: 768px) {
    .hero-7 .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-7 .hero-content p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-7 .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

    .hero-7 .hero-buttons .btn {
        padding: 15px 30px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

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

            .hero-7 .hero-buttons .btn.btn-primary:hover {
                background: color-mix(in srgb, var(--accent-color), black 10%);
                border-color: color-mix(in srgb, var(--accent-color), black 10%);
                transform: translateY(-2px);
            }

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

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

.hero-7 .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .hero-7 .hero-stats .stat-item {
        text-align: center;
    }

        .hero-7 .hero-stats .stat-item .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .hero-7 .hero-stats .stat-item .stat-label {
            display: block;
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 0.5rem;
        }

@media (max-width: 768px) {
    .hero-7 .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-7 .hero-visual {
    position: relative;
}

    .hero-7 .hero-visual .hero-image {
        position: relative;
        z-index: 2;
    }

        .hero-7 .hero-visual .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
        }

.hero-7 .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

    .hero-7 .floating-elements .floating-card {
        position: absolute;
        background: var(--surface-color);
        padding: 1rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero-7 .floating-elements .floating-card i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .hero-7 .floating-elements .floating-card span {
            font-weight: 600;
            color: var(--heading-color);
            font-size: 0.9rem;
        }

        .hero-7 .floating-elements .floating-card.card-1 {
            top: 20%;
            right: -10%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-7 .floating-elements .floating-card.card-2 {
            top: 60%;
            left: -15%;
            animation: float 6s ease-in-out infinite 2s;
        }

        .hero-7 .floating-elements .floating-card.card-3 {
            bottom: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite 4s;
        }

@media (max-width: 992px) {
    .hero-7 .floating-elements .floating-card.card-1 {
        right: -5%;
    }

    .hero-7 .floating-elements .floating-card.card-2 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero-7 .floating-elements .floating-card {
        display: none;
    }
}

.hero-7 .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

    .hero-7 .hero-bg-elements .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    }

        .hero-7 .hero-bg-elements .bg-shape.shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: rotate 20s linear infinite;
        }

        .hero-7 .hero-bg-elements .bg-shape.shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: rotate 15s linear infinite reverse;
        }

    .hero-7 .hero-bg-elements .bg-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveParticles 30s linear infinite;
    }

@keyframes float {

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

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

@media (max-width: 992px) {
    .hero-7 .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-7 .hero-buttons {
        justify-content: center;
    }

    .hero-7 .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Cards 9 Section
--------------------------------------------------------------*/
.cards-9 .why-box {
    color: var(--contrast-color);
    background: var(--accent-color);
    padding: 30px;
}

    .cards-9 .why-box h3 {
        color: var(--contrast-color);
        font-weight: 700;
        font-size: 34px;
        margin-bottom: 30px;
    }

    .cards-9 .why-box p {
        margin-bottom: 30px;
    }

    .cards-9 .why-box .more-btn {
        display: inline-block;
        background: color-mix(in srgb, var(--contrast-color), transparent 85%);
        padding: 8px 40px 10px 40px;
        color: var(--contrast-color);
        transition: all ease-in-out 0.4s;
        border-radius: 50px;
    }

        .cards-9 .why-box .more-btn i {
            font-size: 14px;
        }

        .cards-9 .why-box .more-btn:hover {
            color: var(--accent-color);
            background: var(--surface-color);
        }

.cards-9 .icon-box {
    background-color: var(--surface-color);
    text-align: center;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .cards-9 .icon-box i {
        color: var(--accent-color);
        margin-bottom: 30px;
        font-size: 32px;
        margin-bottom: 30px;
        background: color-mix(in srgb, var(--accent-color), transparent 95%);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 72px;
        height: 72px;
        transition: 0.3s;
    }

    .cards-9 .icon-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 30px 0;
    }

    .cards-9 .icon-box p {
        font-size: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

    .cards-9 .icon-box:hover i {
        color: var(--contrast-color);
        background: var(--accent-color);
    }

/*--------------------------------------------------------------
# Service Details 5 Section
--------------------------------------------------------------*/
.service-details-5 .service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

    .service-details-5 .service-image img {
        border-radius: 15px;
    }

    .service-details-5 .service-image .service-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
    }

.service-details-5 .service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .service-details-5 .service-content h2 {
        font-size: 2rem;
    }
}

.service-details-5 .service-content .service-tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-details-5 .service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details-5 .service-content .service-features {
    margin: 2rem 0;
}

    .service-details-5 .service-content .service-features h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--heading-color);
    }

    .service-details-5 .service-content .service-features ul {
        list-style: none;
        padding: 0;
    }

        .service-details-5 .service-content .service-features ul li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            color: color-mix(in srgb, var(--default-color), transparent 10%);
        }

            .service-details-5 .service-content .service-features ul li i {
                color: var(--accent-color);
                margin-right: 0.8rem;
                font-size: 1.1rem;
            }

.service-details-5 .service-content .service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 576px) {
    .service-details-5 .service-content .service-actions {
        flex-direction: column;
    }
}

.service-details-5 .service-content .service-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-details-5 .service-content .service-actions .btn-primary:hover {
        background: color-mix(in srgb, var(--accent-color), black 10%);
        transform: translateY(-2px);
    }

.service-details-5 .service-content .service-actions .btn-secondary {
    background: transparent;
    color: var(--heading-color);
    padding: 12px 28px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-details-5 .service-content .service-actions .btn-secondary:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

.service-details-5 .service-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .service-details-5 .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .service-details-5 .service-card .card-icon {
        width: 70px;
        height: 70px;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

        .service-details-5 .service-card .card-icon i {
            font-size: 2rem;
            color: var(--accent-color);
        }

    .service-details-5 .service-card h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .service-details-5 .service-card p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 1.5rem;
    }

    .service-details-5 .service-card .card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .service-details-5 .service-card .card-link:hover {
            gap: 0.8rem;
            color: color-mix(in srgb, var(--accent-color), black 10%);
        }

        .service-details-5 .service-card .card-link i {
            transition: transform 0.3s ease;
        }

        .service-details-5 .service-card .card-link:hover i {
            transform: translateX(3px);
        }

.service-details-5 .booking-section {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 2rem;
    border-radius: 15px;
}

    .service-details-5 .booking-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--heading-color);
    }

    .service-details-5 .booking-section p {
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        margin-bottom: 2rem;
    }

    .service-details-5 .booking-section .availability-info .info-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

        .service-details-5 .booking-section .availability-info .info-item i {
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            color: var(--contrast-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-details-5 .booking-section .availability-info .info-item div {
            display: flex;
            flex-direction: column;
        }

            .service-details-5 .booking-section .availability-info .info-item div strong {
                color: var(--heading-color);
                font-weight: 600;
                margin-bottom: 0.2rem;
            }

            .service-details-5 .booking-section .availability-info .info-item div span {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                font-size: 0.9rem;
            }

.service-details-5 .appointment-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .service-details-5 .appointment-card h4 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .service-details-5 .appointment-card p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 2rem;
    }

    .service-details-5 .appointment-card .btn-appointment {
        display: inline-block;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        width: 100%;
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
    }

        .service-details-5 .appointment-card .btn-appointment:hover {
            background: color-mix(in srgb, var(--accent-color), black 10%);
            transform: translateY(-2px);
        }

    .service-details-5 .appointment-card .contact-alternative {
        text-align: center;
        font-size: 0.9rem;
    }

        .service-details-5 .appointment-card .contact-alternative span {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            display: block;
            margin-bottom: 0.3rem;
        }

        .service-details-5 .appointment-card .contact-alternative a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
        }

            .service-details-5 .appointment-card .contact-alternative a:hover {
                color: color-mix(in srgb, var(--accent-color), black 10%);
            }

@media (max-width: 992px) {
    .service-details-5 .service-content {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .service-details-5 .booking-section {
        margin-bottom: 2rem;
    }

    .service-details-5 .availability-info .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/*--------------------------------------------------------------
# Service Details 6 Section
--------------------------------------------------------------*/
.service-details-6 {
    padding: 80px 0;
}

    .service-details-6 .service-image {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

        .service-details-6 .service-image img {
            transition: transform 0.5s ease;
        }

            .service-details-6 .service-image img:hover {
                transform: scale(1.03);
            }

    .service-details-6 .service-content {
        padding-left: 30px;
    }

@media (max-width: 992px) {
    .service-details-6 .service-content {
        padding-left: 15px;
        margin-top: 40px;
    }
}

.service-details-6 .service-tag {
    display: inline-block;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-details-6 h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-details-6 .service-tagline {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 18px;
    margin-bottom: 25px;
    font-style: italic;
}

.service-details-6 .service-description p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-details-6 .service-features {
    margin: 30px 0;
}

    .service-details-6 .service-features h4 {
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 600;
    }

    .service-details-6 .service-features ul {
        padding-left: 0;
        list-style: none;
    }

        .service-details-6 .service-features ul li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

            .service-details-6 .service-features ul li i {
                color: var(--accent-color);
                font-size: 20px;
                margin-right: 15px;
                flex-shrink: 0;
            }

            .service-details-6 .service-features ul li span {
                line-height: 1.5;
            }

.service-details-6 .service-cta {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

    .service-details-6 .service-cta .btn {
        padding: 12px 30px;
        border-radius: 5px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .service-details-6 .service-cta .btn.btn-primary {
            background-color: var(--accent-color);
            border: 2px solid var(--accent-color);
            color: var(--contrast-color);
        }

            .service-details-6 .service-cta .btn.btn-primary:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
                border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
            }

        .service-details-6 .service-cta .btn.btn-outline {
            background-color: transparent;
            border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
            color: var(--default-color);
        }

            .service-details-6 .service-cta .btn.btn-outline:hover {
                border-color: var(--default-color);
                background-color: var(--default-color);
                color: var(--contrast-color);
            }

.service-details-6 .additional-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    background-color: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

    .service-details-6 .additional-info .info-item {
        display: flex;
        align-items: flex-start;
        flex: 1;
        min-width: 220px;
    }

        .service-details-6 .additional-info .info-item i {
            font-size: 28px;
            color: var(--accent-color);
            margin-right: 15px;
        }

        .service-details-6 .additional-info .info-item h4 {
            margin-bottom: 5px;
            font-size: 18px;
        }

        .service-details-6 .additional-info .info-item p {
            margin-bottom: 0;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

.service-details-6 .related-services {
    margin-top: 60px;
}

    .service-details-6 .related-services .related-title {
        position: relative;
        margin-bottom: 40px;
        font-size: 24px;
        font-weight: 600;
        padding-bottom: 15px;
    }

        .service-details-6 .related-services .related-title:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 3px;
            background-color: var(--accent-color);
        }

.service-details-6 .related-service-card {
    background-color: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .service-details-6 .related-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

        .service-details-6 .related-service-card:hover .service-link i {
            transform: translateX(5px);
        }

    .service-details-6 .related-service-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .service-details-6 .related-service-card h4 {
        padding: 20px 20px 10px;
        font-size: 20px;
        font-weight: 600;
    }

    .service-details-6 .related-service-card p {
        padding: 0 20px;
        font-size: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 25%);
    }

    .service-details-6 .related-service-card .service-link {
        display: inline-block;
        padding: 0 20px 20px;
        color: var(--accent-color);
        font-weight: 500;
    }

        .service-details-6 .related-service-card .service-link i {
            transition: transform 0.3s ease;
            margin-left: 5px;
        }

@media (max-width: 768px) {
    .service-details-6 .additional-info {
        flex-direction: column;
        gap: 20px;
    }

        .service-details-6 .additional-info .info-item {
            width: 100%;
        }

    .service-details-6 .related-service-card {
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Pricing 2 Section
--------------------------------------------------------------*/
.pricing-2 {
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

    .pricing-2 .container {
        position: relative;
        z-index: 1;
    }

    .pricing-2 .pricing-toggle {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--surface-color);
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

        .pricing-2 .pricing-toggle .monthly,
        .pricing-2 .pricing-toggle .yearly {
            font-size: 16px;
            font-weight: 600;
            padding: 0 15px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            cursor: pointer;
            transition: all 0.3s;
        }

            .pricing-2 .pricing-toggle .monthly.active,
            .pricing-2 .pricing-toggle .yearly.active {
                color: var(--accent-color);
            }

        .pricing-2 .pricing-toggle .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 32px;
        }

            .pricing-2 .pricing-toggle .switch input {
                opacity: 0;
                width: 0;
                height: 0;
            }

            .pricing-2 .pricing-toggle .switch .slider {
                position: absolute;
                cursor: pointer;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
                transition: 0.3s;
                border-radius: 34px;
            }

                .pricing-2 .pricing-toggle .switch .slider:before {
                    position: absolute;
                    content: "";
                    height: 24px;
                    width: 24px;
                    left: 4px;
                    bottom: 4px;
                    background-color: var(--contrast-color);
                    transition: 0.3s;
                    border-radius: 50%;
                }

            .pricing-2 .pricing-toggle .switch input:checked + .slider {
                background-color: var(--accent-color);
            }

                .pricing-2 .pricing-toggle .switch input:checked + .slider:before {
                    transform: translateX(28px);
                }

        .pricing-2 .pricing-toggle .save-badge {
            position: absolute;
            right: -15px;
            top: -15px;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 10px;
            border-radius: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            animation: pulse 2s infinite;
        }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pricing-2 .pricing-item {
    position: relative;
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .pricing-2 .pricing-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .pricing-2 .pricing-item.featured {
        border: 2px solid var(--accent-color);
        transform: scale(1.03);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

        .pricing-2 .pricing-item.featured:hover {
            transform: translateY(-10px) scale(1.03);
        }

        .pricing-2 .pricing-item.featured .card-action .btn-pricing {
            background-color: var(--accent-color);
            color: var(--contrast-color);
        }

    .pricing-2 .pricing-item .price.yearly {
        display: none;
    }

    .pricing-2 .pricing-item.yearly-active .price.monthly {
        display: none;
    }

    .pricing-2 .pricing-item.yearly-active .price.yearly {
        display: block;
    }

.pricing-2 .popular-badge {
    position: absolute;
    top: 24px;
    right: -35px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 10;
}

.pricing-2 .card-header {
    padding: 35px 30px 20px;
    text-align: center;
}

    .pricing-2 .card-header h3 {
        font-size: 24px;
        font-weight: 700;
        margin: 15px 0 10px;
        color: var(--heading-color);
    }

    .pricing-2 .card-header p {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-bottom: 0;
    }

.pricing-2 .icon {
    margin: 0 auto;
    width: 70px;
    height: 70px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

    .pricing-2 .icon i {
        color: var(--accent-color);
        font-size: 28px;
        transform: rotate(-45deg);
    }

.pricing-2 .card-price {
    padding: 20px 30px;
    text-align: center;
    background-color: color-mix(in srgb, var(--background-color), #f8f9fa 50%);
}

    .pricing-2 .card-price h4 {
        font-size: 52px;
        font-weight: 700;
        margin: 0;
        color: var(--heading-color);
        line-height: 1;
    }

        .pricing-2 .card-price h4 .currency {
            font-size: 24px;
            position: relative;
            top: -15px;
            margin-right: 2px;
        }

        .pricing-2 .card-price h4 .period {
            font-size: 15px;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            font-weight: 400;
            margin-left: 5px;
        }

.pricing-2 .card-features {
    padding: 30px;
    flex-grow: 1;
}

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

        .pricing-2 .card-features ul li {
            display: flex;
            align-items: flex-start;
            padding: 12px 0;
            color: var(--default-color);
        }

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

                .pricing-2 .card-features ul li.na .feature-icon i {
                    color: #e45353;
                }

                .pricing-2 .card-features ul li.na span {
                    text-decoration: line-through;
                }

        .pricing-2 .card-features ul .feature-icon {
            flex-shrink: 0;
            margin-right: 15px;
        }

            .pricing-2 .card-features ul .feature-icon i {
                color: #25d366;
                font-size: 18px;
            }

.pricing-2 .card-action {
    padding: 20px 30px 35px;
    text-align: center;
}

    .pricing-2 .card-action .btn-pricing {
        display: inline-block;
        padding: 12px 40px;
        border-radius: 50px;
        background-color: color-mix(in srgb, var(--background-color), #f8f9fa 50%);
        color: var(--heading-color);
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        width: 100%;
    }

        .pricing-2 .card-action .btn-pricing:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            transform: translateY(-3px);
        }

@media (max-width: 991px) {
    .pricing-2 .pricing-item.featured {
        transform: scale(1);
    }

        .pricing-2 .pricing-item.featured:hover {
            transform: translateY(-10px);
        }
}

@media (max-width: 768px) {

    .pricing-2 .pricing-toggle .monthly,
    .pricing-2 .pricing-toggle .yearly {
        font-size: 14px;
        padding: 0 10px;
    }

    .pricing-2 .pricing-toggle .switch {
        width: 50px;
    }

    .pricing-2 .card-price h4 {
        font-size: 42px;
    }

        .pricing-2 .card-price h4 .currency {
            font-size: 20px;
        }
}

/*--------------------------------------------------------------
# Call To Action 7 Section
--------------------------------------------------------------*/
.call-to-action-7 {
    padding-top: 100px;
    position: relative;
    isolation: isolate;
    padding-bottom: 100px;
}

    .call-to-action-7 .container {
        position: relative;
    }

    .call-to-action-7 h2 {
        color: var(--heading-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .call-to-action-7 .lead {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .call-to-action-7 .btn {
        padding: 12px 32px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

        .call-to-action-7 .btn:hover {
            transform: translateY(-2px);
        }

    .call-to-action-7 .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .call-to-action-7 .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-7 .btn-outline-primary {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .call-to-action-7 .btn-outline-primary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-7 .scribble {
        position: absolute;
        pointer-events: none;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

        .call-to-action-7 .scribble::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

    .call-to-action-7 .scribble-1 {
        width: 150px;
        height: 150px;
        top: -30px;
        left: 5%;
        animation-delay: 0s;
    }

        .call-to-action-7 .scribble-1::before {
            clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
        }

    .call-to-action-7 .scribble-2 {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 10%;
        animation-delay: -2s;
    }

        .call-to-action-7 .scribble-2::before {
            clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
        }

    .call-to-action-7 .scribble-3 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 15%;
        animation-delay: -4s;
    }

        .call-to-action-7 .scribble-3::before {
            clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
        }

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .call-to-action-7 {
        padding: 60px 0;
    }

        .call-to-action-7 h2 {
            font-size: 2.5rem;
        }

        .call-to-action-7 .lead {
            font-size: 1.1rem;
        }

        .call-to-action-7 .cta-buttons .btn {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        .call-to-action-7 .scribble {
            transform: scale(0.7);
        }
}

/*--------------------------------------------------------------
# Faq 7 Section
--------------------------------------------------------------*/
.faq-7 {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .faq-7 .faq-item {
        margin-bottom: 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

        .faq-7 .faq-item:last-child {
            border-bottom: none;
        }

        .faq-7 .faq-item.faq-active .faq-header .faq-number {
            color: var(--accent-color);
            font-weight: 500;
        }

        .faq-7 .faq-item.faq-active .faq-header h4 {
            color: var(--accent-color);
        }

        .faq-7 .faq-item.faq-active .faq-header .faq-toggle {
            color: var(--accent-color);
            transform: rotate(0deg);
        }

            .faq-7 .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
                opacity: 0;
                transform: rotate(90deg);
            }

            .faq-7 .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
                opacity: 1;
                transform: rotate(0deg);
            }

        .faq-7 .faq-item.faq-active .faq-content {
            grid-template-rows: 1fr;
            visibility: visible;
            opacity: 1;
        }

        .faq-7 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
            opacity: 1;
            transform: rotate(0deg);
        }

        .faq-7 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
            opacity: 0;
            transform: rotate(-90deg);
        }

        .faq-7 .faq-item .faq-header {
            display: flex;
            align-items: center;
            padding: 40px 0;
            cursor: pointer;
            gap: 0;
            transition: all 0.3s ease;
        }

            .faq-7 .faq-item .faq-header:hover .faq-number {
                transform: scale(1.1);
            }

            .faq-7 .faq-item .faq-header:hover .faq-toggle {
                transform: scale(1.1);
            }

            .faq-7 .faq-item .faq-header .faq-number {
                flex-shrink: 0;
                width: 80px;
                font-family: var(--heading-font);
                font-size: 1.1rem;
                font-weight: 300;
                color: color-mix(in srgb, var(--default-color), transparent 50%);
                transition: all 0.3s ease;
                letter-spacing: -0.02em;
            }

            .faq-7 .faq-item .faq-header h4 {
                flex: 1;
                margin: 0;
                font-family: var(--heading-font);
                font-size: 1.25rem;
                font-weight: 300;
                color: var(--heading-color);
                transition: all 0.3s ease;
                line-height: 1.5;
                letter-spacing: -0.01em;
                margin-right: 20px;
            }

            .faq-7 .faq-item .faq-header .faq-toggle {
                flex-shrink: 0;
                width: 24px;
                height: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                font-size: 18px;
                transition: all 0.3s ease;
                position: relative;
            }

                .faq-7 .faq-item .faq-header .faq-toggle i {
                    position: absolute;
                    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                }

        .faq-7 .faq-item .faq-content {
            display: grid;
            grid-template-rows: 0fr;
            transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            visibility: hidden;
            opacity: 0;
        }

            .faq-7 .faq-item .faq-content .content-inner {
                padding: 0 80px 40px 80px;
                overflow: hidden;
            }

                .faq-7 .faq-item .faq-content .content-inner p {
                    margin: 0;
                    color: color-mix(in srgb, var(--default-color), transparent 25%);
                    line-height: 1.8;
                    font-size: 1rem;
                    font-weight: 300;
                }

@media (max-width: 768px) {
    .faq-7 .faq-item .faq-header {
        padding: 30px 0;
    }

        .faq-7 .faq-item .faq-header .faq-number {
            width: 60px;
            font-size: 1rem;
        }

        .faq-7 .faq-item .faq-header h4 {
            font-size: 1.1rem;
            margin-right: 15px;
        }

        .faq-7 .faq-item .faq-header .faq-toggle {
            width: 20px;
            height: 20px;
            font-size: 16px;
        }

    .faq-7 .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px;
    }

        .faq-7 .faq-item .faq-content .content-inner p {
            font-size: 0.95rem;
        }
}

@media (max-width: 576px) {
    .faq-7 .faq-item .faq-header {
        padding: 25px 0;
    }

        .faq-7 .faq-item .faq-header .faq-number {
            width: 50px;
            font-size: 0.9rem;
        }

        .faq-7 .faq-item .faq-header h4 {
            font-size: 1rem;
            margin-right: 10px;
        }

    .faq-7 .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px;
    }

        .faq-7 .faq-item .faq-content .content-inner p {
            font-size: 0.9rem;
        }
}

/*--------------------------------------------------------------
# Hero 8 Section
--------------------------------------------------------------*/
.hero-8 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 120px 0;
}

    .hero-8 .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

@media (max-width: 768px) {
    .hero-8 .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-8 .hero-content p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-8 .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

    .hero-8 .hero-buttons .btn {
        padding: 15px 30px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

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

            .hero-8 .hero-buttons .btn.btn-primary:hover {
                background: color-mix(in srgb, var(--accent-color), black 10%);
                border-color: color-mix(in srgb, var(--accent-color), black 10%);
                transform: translateY(-2px);
            }

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

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

.hero-8 .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .hero-8 .hero-stats .stat-item {
        text-align: center;
    }

        .hero-8 .hero-stats .stat-item .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .hero-8 .hero-stats .stat-item .stat-label {
            display: block;
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 0.5rem;
        }

@media (max-width: 768px) {
    .hero-8 .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-8 .hero-visual {
    position: relative;
}

    .hero-8 .hero-visual .hero-image {
        position: relative;
        z-index: 2;
    }

        .hero-8 .hero-visual .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
        }

.hero-8 .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

    .hero-8 .floating-elements .floating-card {
        position: absolute;
        background: var(--surface-color);
        padding: 1rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero-8 .floating-elements .floating-card i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .hero-8 .floating-elements .floating-card span {
            font-weight: 600;
            color: var(--heading-color);
            font-size: 0.9rem;
        }

        .hero-8 .floating-elements .floating-card.card-1 {
            top: 20%;
            right: -10%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-8 .floating-elements .floating-card.card-2 {
            top: 60%;
            left: -15%;
            animation: float 6s ease-in-out infinite 2s;
        }

        .hero-8 .floating-elements .floating-card.card-3 {
            bottom: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite 4s;
        }

@media (max-width: 992px) {
    .hero-8 .floating-elements .floating-card.card-1 {
        right: -5%;
    }

    .hero-8 .floating-elements .floating-card.card-2 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero-8 .floating-elements .floating-card {
        display: none;
    }
}

.hero-8 .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

    .hero-8 .hero-bg-elements .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    }

        .hero-8 .hero-bg-elements .bg-shape.shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: rotate 20s linear infinite;
        }

        .hero-8 .hero-bg-elements .bg-shape.shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: rotate 15s linear infinite reverse;
        }

    .hero-8 .hero-bg-elements .bg-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveParticles 30s linear infinite;
    }

@keyframes float {

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

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

@media (max-width: 992px) {
    .hero-8 .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-8 .hero-buttons {
        justify-content: center;
    }

    .hero-8 .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Pricing 5 Section
--------------------------------------------------------------*/
.pricing-5 {
    --card-border-color: color-mix(in srgb, var(--default-color), transparent 85%);
    --card-shadow-color: color-mix(in srgb, var(--default-color), transparent 92%);
    --card-hover-shadow: color-mix(in srgb, var(--default-color), transparent 88%);
    --badge-bg: color-mix(in srgb, var(--accent-color), var(--surface-color) 40%);
}

    .pricing-5 .pricing-intro {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-5 .pricing-card {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 32px 28px;
        background-color: var(--surface-color);
        border: 1px solid var(--card-border-color);
        border-radius: 20px;
        box-shadow: 0 20px 40px -32px var(--card-shadow-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

        .pricing-5 .pricing-card:hover {
            transform: translateY(-6px);
            border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
            box-shadow: 0 28px 48px -28px var(--card-hover-shadow);
        }

        .pricing-5 .pricing-card .plan-badge {
            position: absolute;
            top: 18px;
            right: 24px;
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
            border-radius: 999px;
        }

        .pricing-5 .pricing-card .plan-header {
            margin-bottom: 26px;
        }

            .pricing-5 .pricing-card .plan-header .plan-label {
                display: inline-flex;
                align-items: center;
                padding: 6px 14px;
                margin-bottom: 14px;
                font-size: 13px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                color: color-mix(in srgb, var(--accent-color), transparent 15%);
                background: color-mix(in srgb, var(--accent-color), var(--surface-color) 70%);
                border-radius: 999px;
            }

            .pricing-5 .pricing-card .plan-header .plan-description {
                margin-bottom: 0;
                font-size: 15px;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
            }

        .pricing-5 .pricing-card .plan-price {
            display: flex;
            align-items: baseline;
            gap: 6px;
            margin-bottom: 26px;
            font-family: var(--heading-font);
            color: var(--heading-color);
        }

            .pricing-5 .pricing-card .plan-price .currency {
                font-size: 20px;
                font-weight: 600;
            }

            .pricing-5 .pricing-card .plan-price .amount {
                font-size: 48px;
                font-weight: 700;
                line-height: 1;
            }

            .pricing-5 .pricing-card .plan-price .duration {
                font-size: 16px;
                font-weight: 500;
                color: color-mix(in srgb, var(--default-color), transparent 35%);
            }

        .pricing-5 .pricing-card .plan-features {
            flex-grow: 1;
            display: grid;
            gap: 14px;
            margin-bottom: 32px;
        }

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

                .pricing-5 .pricing-card .plan-features li i {
                    font-size: 18px;
                    color: var(--accent-color);
                    margin-top: 2px;
                }

        .pricing-5 .pricing-card .plan-action {
            margin-top: auto;
        }

            .pricing-5 .pricing-card .plan-action .btn-plan {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                padding: 12px 18px;
                font-weight: 600;
                border-radius: 12px;
                color: var(--contrast-color);
                background: var(--accent-color);
                transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
            }

                .pricing-5 .pricing-card .plan-action .btn-plan:hover {
                    background: color-mix(in srgb, var(--accent-color), transparent 10%);
                    transform: translateY(-2px);
                }

        .pricing-5 .pricing-card.featured {
            border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
            background: color-mix(in srgb, var(--surface-color), var(--accent-color) 6%);
        }

            .pricing-5 .pricing-card.featured .plan-label {
                background: var(--accent-color);
                color: var(--contrast-color);
            }

@media (max-width: 992px) {
    .pricing-5 .pricing-card {
        padding: 28px 24px;
    }

        .pricing-5 .pricing-card .plan-price .amount {
            font-size: 40px;
        }
}

@media (max-width: 576px) {
    .pricing-5 .pricing-card {
        border-radius: 16px;
    }

        .pricing-5 .pricing-card .plan-price {
            flex-wrap: wrap;
        }
}

/*--------------------------------------------------------------
# Call To Action 8 Section
--------------------------------------------------------------*/
.call-to-action-8 {
    padding-top: 100px;
    position: relative;
    isolation: isolate;
    padding-bottom: 100px;
}

    .call-to-action-8 .container {
        position: relative;
    }

    .call-to-action-8 h2 {
        color: var(--heading-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .call-to-action-8 .lead {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .call-to-action-8 .btn {
        padding: 12px 32px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

        .call-to-action-8 .btn:hover {
            transform: translateY(-2px);
        }

    .call-to-action-8 .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .call-to-action-8 .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-8 .btn-outline-primary {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .call-to-action-8 .btn-outline-primary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-8 .scribble {
        position: absolute;
        pointer-events: none;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

        .call-to-action-8 .scribble::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

    .call-to-action-8 .scribble-1 {
        width: 150px;
        height: 150px;
        top: -30px;
        left: 5%;
        animation-delay: 0s;
    }

        .call-to-action-8 .scribble-1::before {
            clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
        }

    .call-to-action-8 .scribble-2 {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 10%;
        animation-delay: -2s;
    }

        .call-to-action-8 .scribble-2::before {
            clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
        }

    .call-to-action-8 .scribble-3 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 15%;
        animation-delay: -4s;
    }

        .call-to-action-8 .scribble-3::before {
            clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
        }

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .call-to-action-8 {
        padding: 60px 0;
    }

        .call-to-action-8 h2 {
            font-size: 2.5rem;
        }

        .call-to-action-8 .lead {
            font-size: 1.1rem;
        }

        .call-to-action-8 .cta-buttons .btn {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        .call-to-action-8 .scribble {
            transform: scale(0.7);
        }
}

/*--------------------------------------------------------------
# Faq 8 Section
--------------------------------------------------------------*/
.faq-8 .faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .faq-8 .faq-item:last-child {
        border-bottom: none;
    }

    .faq-8 .faq-item.faq-active .faq-header .faq-number {
        color: var(--accent-color);
        font-weight: 500;
    }

    .faq-8 .faq-item.faq-active .faq-header h4 {
        color: var(--accent-color);
    }

    .faq-8 .faq-item.faq-active .faq-header .faq-toggle {
        color: var(--accent-color);
        transform: rotate(0deg);
    }

        .faq-8 .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
            opacity: 0;
            transform: rotate(90deg);
        }

        .faq-8 .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
            opacity: 1;
            transform: rotate(0deg);
        }

    .faq-8 .faq-item.faq-active .faq-content {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
    }

    .faq-8 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .faq-8 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
        opacity: 0;
        transform: rotate(-90deg);
    }

    .faq-8 .faq-item .faq-header {
        display: flex;
        align-items: center;
        padding: 40px 0;
        cursor: pointer;
        gap: 0;
        transition: all 0.3s ease;
    }

        .faq-8 .faq-item .faq-header:hover .faq-number {
            transform: scale(1.1);
        }

        .faq-8 .faq-item .faq-header:hover .faq-toggle {
            transform: scale(1.1);
        }

        .faq-8 .faq-item .faq-header .faq-number {
            flex-shrink: 0;
            width: 80px;
            font-family: var(--heading-font);
            font-size: 1.1rem;
            font-weight: 300;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            transition: all 0.3s ease;
            letter-spacing: -0.02em;
        }

        .faq-8 .faq-item .faq-header h4 {
            flex: 1;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--heading-color);
            transition: all 0.3s ease;
            line-height: 1.5;
            letter-spacing: -0.01em;
            margin-right: 20px;
        }

        .faq-8 .faq-item .faq-header .faq-toggle {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }

            .faq-8 .faq-item .faq-header .faq-toggle i {
                position: absolute;
                transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

    .faq-8 .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
        opacity: 0;
    }

        .faq-8 .faq-item .faq-content .content-inner {
            padding: 0 80px 40px 80px;
            overflow: hidden;
        }

            .faq-8 .faq-item .faq-content .content-inner p {
                margin: 0;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                line-height: 1.8;
                font-size: 1rem;
                font-weight: 300;
            }

@media (max-width: 768px) {
    .faq-8 .faq-item .faq-header {
        padding: 30px 0;
    }

        .faq-8 .faq-item .faq-header .faq-number {
            width: 60px;
            font-size: 1rem;
        }

        .faq-8 .faq-item .faq-header h4 {
            font-size: 1.1rem;
            margin-right: 15px;
        }

        .faq-8 .faq-item .faq-header .faq-toggle {
            width: 20px;
            height: 20px;
            font-size: 16px;
        }

    .faq-8 .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px;
    }

        .faq-8 .faq-item .faq-content .content-inner p {
            font-size: 0.95rem;
        }
}

@media (max-width: 576px) {
    .faq-8 .faq-item .faq-header {
        padding: 25px 0;
    }

        .faq-8 .faq-item .faq-header .faq-number {
            width: 50px;
            font-size: 0.9rem;
        }

        .faq-8 .faq-item .faq-header h4 {
            font-size: 1rem;
            margin-right: 10px;
        }

    .faq-8 .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px;
    }

        .faq-8 .faq-item .faq-content .content-inner p {
            font-size: 0.9rem;
        }
}

/*--------------------------------------------------------------
# Hero 9 Section
--------------------------------------------------------------*/
.hero-9 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 120px 0;
}

    .hero-9 .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

@media (max-width: 768px) {
    .hero-9 .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-9 .hero-content p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-9 .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

    .hero-9 .hero-buttons .btn {
        padding: 15px 30px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

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

            .hero-9 .hero-buttons .btn.btn-primary:hover {
                background: color-mix(in srgb, var(--accent-color), black 10%);
                border-color: color-mix(in srgb, var(--accent-color), black 10%);
                transform: translateY(-2px);
            }

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

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

.hero-9 .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .hero-9 .hero-stats .stat-item {
        text-align: center;
    }

        .hero-9 .hero-stats .stat-item .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .hero-9 .hero-stats .stat-item .stat-label {
            display: block;
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 0.5rem;
        }

@media (max-width: 768px) {
    .hero-9 .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-9 .hero-visual {
    position: relative;
}

    .hero-9 .hero-visual .hero-image {
        position: relative;
        z-index: 2;
    }

        .hero-9 .hero-visual .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
        }

.hero-9 .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

    .hero-9 .floating-elements .floating-card {
        position: absolute;
        background: var(--surface-color);
        padding: 1rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero-9 .floating-elements .floating-card i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .hero-9 .floating-elements .floating-card span {
            font-weight: 600;
            color: var(--heading-color);
            font-size: 0.9rem;
        }

        .hero-9 .floating-elements .floating-card.card-1 {
            top: 20%;
            right: -10%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-9 .floating-elements .floating-card.card-2 {
            top: 60%;
            left: -15%;
            animation: float 6s ease-in-out infinite 2s;
        }

        .hero-9 .floating-elements .floating-card.card-3 {
            bottom: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite 4s;
        }

@media (max-width: 992px) {
    .hero-9 .floating-elements .floating-card.card-1 {
        right: -5%;
    }

    .hero-9 .floating-elements .floating-card.card-2 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero-9 .floating-elements .floating-card {
        display: none;
    }
}

.hero-9 .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

    .hero-9 .hero-bg-elements .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    }

        .hero-9 .hero-bg-elements .bg-shape.shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: rotate 20s linear infinite;
        }

        .hero-9 .hero-bg-elements .bg-shape.shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: rotate 15s linear infinite reverse;
        }

    .hero-9 .hero-bg-elements .bg-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveParticles 30s linear infinite;
    }

@keyframes float {

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

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

@media (max-width: 992px) {
    .hero-9 .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-9 .hero-buttons {
        justify-content: center;
    }

    .hero-9 .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Pricing 6 Section
--------------------------------------------------------------*/
.pricing-6 .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    position: relative;
}

    .pricing-6 .pricing-item h3 {
        font-weight: 700;
        margin-bottom: 0;
        font-size: 24px;
    }

    .pricing-6 .pricing-item h4 {
        font-size: 48px;
        color: var(--accent-color);
        font-weight: 400;
        font-family: var(--heading-font);
        margin-bottom: 25px;
        text-align: center;
    }

        .pricing-6 .pricing-item h4 sup {
            font-size: 28px;
        }

        .pricing-6 .pricing-item h4 span {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
            font-size: 18px;
        }

    .pricing-6 .pricing-item ul {
        padding: 20px 0;
        list-style: none;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        text-align: left;
        line-height: 20px;
    }

        .pricing-6 .pricing-item ul li {
            padding-top: 15px;
            display: flex;
            align-items: center;
        }

        .pricing-6 .pricing-item ul i {
            color: #059652;
            font-size: 24px;
            padding-right: 3px;
        }

        .pricing-6 .pricing-item ul .na {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
        }

            .pricing-6 .pricing-item ul .na i {
                color: color-mix(in srgb, var(--default-color), transparent 60%);
            }

            .pricing-6 .pricing-item ul .na span {
                text-decoration: line-through;
            }

.pricing-6 .buy-btn {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    display: inline-block;
    padding: 12px 40px;
    border-radius: 4px;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    font-family: var(--heading-font);
}

    .pricing-6 .buy-btn:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

.pricing-6 .featured {
    background: var(--accent-color);
}

    .pricing-6 .featured h3,
    .pricing-6 .featured h4,
    .pricing-6 .featured h4 span,
    .pricing-6 .featured ul,
    .pricing-6 .featured ul .na,
    .pricing-6 .featured ul i,
    .pricing-6 .featured ul .na i {
        color: var(--contrast-color);
    }

    .pricing-6 .featured .buy-btn {
        background: var(--accent-color);
        color: var(--contrast-color);
        border-color: var(--contrast-color);
    }

        .pricing-6 .featured .buy-btn:hover {
            background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
            color: var(--contrast-color);
        }

/*--------------------------------------------------------------
# Call To Action 9 Section
--------------------------------------------------------------*/
.call-to-action-9 {
    padding-top: 100px;
    position: relative;
    isolation: isolate;
    padding-bottom: 100px;
}

    .call-to-action-9 .container {
        position: relative;
    }

    .call-to-action-9 h2 {
        color: var(--heading-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .call-to-action-9 .lead {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .call-to-action-9 .btn {
        padding: 12px 32px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

        .call-to-action-9 .btn:hover {
            transform: translateY(-2px);
        }

    .call-to-action-9 .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .call-to-action-9 .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-9 .btn-outline-primary {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .call-to-action-9 .btn-outline-primary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-9 .scribble {
        position: absolute;
        pointer-events: none;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

        .call-to-action-9 .scribble::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

    .call-to-action-9 .scribble-1 {
        width: 150px;
        height: 150px;
        top: -30px;
        left: 5%;
        animation-delay: 0s;
    }

        .call-to-action-9 .scribble-1::before {
            clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
        }

    .call-to-action-9 .scribble-2 {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 10%;
        animation-delay: -2s;
    }

        .call-to-action-9 .scribble-2::before {
            clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
        }

    .call-to-action-9 .scribble-3 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 15%;
        animation-delay: -4s;
    }

        .call-to-action-9 .scribble-3::before {
            clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
        }

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .call-to-action-9 {
        padding: 60px 0;
    }

        .call-to-action-9 h2 {
            font-size: 2.5rem;
        }

        .call-to-action-9 .lead {
            font-size: 1.1rem;
        }

        .call-to-action-9 .cta-buttons .btn {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        .call-to-action-9 .scribble {
            transform: scale(0.7);
        }
}

/*--------------------------------------------------------------
# Faq 9 Section
--------------------------------------------------------------*/
.faq-9 .faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .faq-9 .faq-item:last-child {
        border-bottom: none;
    }

    .faq-9 .faq-item.faq-active .faq-header .faq-number {
        color: var(--accent-color);
        font-weight: 500;
    }

    .faq-9 .faq-item.faq-active .faq-header h4 {
        color: var(--accent-color);
    }

    .faq-9 .faq-item.faq-active .faq-header .faq-toggle {
        color: var(--accent-color);
        transform: rotate(0deg);
    }

        .faq-9 .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
            opacity: 0;
            transform: rotate(90deg);
        }

        .faq-9 .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
            opacity: 1;
            transform: rotate(0deg);
        }

    .faq-9 .faq-item.faq-active .faq-content {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
    }

    .faq-9 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .faq-9 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
        opacity: 0;
        transform: rotate(-90deg);
    }

    .faq-9 .faq-item .faq-header {
        display: flex;
        align-items: center;
        padding: 40px 0;
        cursor: pointer;
        gap: 0;
        transition: all 0.3s ease;
    }

        .faq-9 .faq-item .faq-header:hover .faq-number {
            transform: scale(1.1);
        }

        .faq-9 .faq-item .faq-header:hover .faq-toggle {
            transform: scale(1.1);
        }

        .faq-9 .faq-item .faq-header .faq-number {
            flex-shrink: 0;
            width: 80px;
            font-family: var(--heading-font);
            font-size: 1.1rem;
            font-weight: 300;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            transition: all 0.3s ease;
            letter-spacing: -0.02em;
        }

        .faq-9 .faq-item .faq-header h4 {
            flex: 1;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--heading-color);
            transition: all 0.3s ease;
            line-height: 1.5;
            letter-spacing: -0.01em;
            margin-right: 20px;
        }

        .faq-9 .faq-item .faq-header .faq-toggle {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }

            .faq-9 .faq-item .faq-header .faq-toggle i {
                position: absolute;
                transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

    .faq-9 .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
        opacity: 0;
    }

        .faq-9 .faq-item .faq-content .content-inner {
            padding: 0 80px 40px 80px;
            overflow: hidden;
        }

            .faq-9 .faq-item .faq-content .content-inner p {
                margin: 0;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                line-height: 1.8;
                font-size: 1rem;
                font-weight: 300;
            }

@media (max-width: 768px) {
    .faq-9 .faq-item .faq-header {
        padding: 30px 0;
    }

        .faq-9 .faq-item .faq-header .faq-number {
            width: 60px;
            font-size: 1rem;
        }

        .faq-9 .faq-item .faq-header h4 {
            font-size: 1.1rem;
            margin-right: 15px;
        }

        .faq-9 .faq-item .faq-header .faq-toggle {
            width: 20px;
            height: 20px;
            font-size: 16px;
        }

    .faq-9 .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px;
    }

        .faq-9 .faq-item .faq-content .content-inner p {
            font-size: 0.95rem;
        }
}

@media (max-width: 576px) {
    .faq-9 .faq-item .faq-header {
        padding: 25px 0;
    }

        .faq-9 .faq-item .faq-header .faq-number {
            width: 50px;
            font-size: 0.9rem;
        }

        .faq-9 .faq-item .faq-header h4 {
            font-size: 1rem;
            margin-right: 10px;
        }

    .faq-9 .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px;
    }

        .faq-9 .faq-item .faq-content .content-inner p {
            font-size: 0.9rem;
        }
}

/*--------------------------------------------------------------
# Hero 10 Section
--------------------------------------------------------------*/
.hero-10 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 120px 0;
}

    .hero-10 .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

@media (max-width: 768px) {
    .hero-10 .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-10 .hero-content p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-10 .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

    .hero-10 .hero-buttons .btn {
        padding: 15px 30px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

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

            .hero-10 .hero-buttons .btn.btn-primary:hover {
                background: color-mix(in srgb, var(--accent-color), black 10%);
                border-color: color-mix(in srgb, var(--accent-color), black 10%);
                transform: translateY(-2px);
            }

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

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

.hero-10 .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .hero-10 .hero-stats .stat-item {
        text-align: center;
    }

        .hero-10 .hero-stats .stat-item .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .hero-10 .hero-stats .stat-item .stat-label {
            display: block;
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 0.5rem;
        }

@media (max-width: 768px) {
    .hero-10 .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-10 .hero-visual {
    position: relative;
}

    .hero-10 .hero-visual .hero-image {
        position: relative;
        z-index: 2;
    }

        .hero-10 .hero-visual .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
        }

.hero-10 .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

    .hero-10 .floating-elements .floating-card {
        position: absolute;
        background: var(--surface-color);
        padding: 1rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero-10 .floating-elements .floating-card i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .hero-10 .floating-elements .floating-card span {
            font-weight: 600;
            color: var(--heading-color);
            font-size: 0.9rem;
        }

        .hero-10 .floating-elements .floating-card.card-1 {
            top: 20%;
            right: -10%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-10 .floating-elements .floating-card.card-2 {
            top: 60%;
            left: -15%;
            animation: float 6s ease-in-out infinite 2s;
        }

        .hero-10 .floating-elements .floating-card.card-3 {
            bottom: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite 4s;
        }

@media (max-width: 992px) {
    .hero-10 .floating-elements .floating-card.card-1 {
        right: -5%;
    }

    .hero-10 .floating-elements .floating-card.card-2 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero-10 .floating-elements .floating-card {
        display: none;
    }
}

.hero-10 .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

    .hero-10 .hero-bg-elements .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    }

        .hero-10 .hero-bg-elements .bg-shape.shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: rotate 20s linear infinite;
        }

        .hero-10 .hero-bg-elements .bg-shape.shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: rotate 15s linear infinite reverse;
        }

    .hero-10 .hero-bg-elements .bg-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveParticles 30s linear infinite;
    }

@keyframes float {

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

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

@media (max-width: 992px) {
    .hero-10 .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-10 .hero-buttons {
        justify-content: center;
    }

    .hero-10 .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Cards 8 Section
--------------------------------------------------------------*/
.cards-8 {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .cards-8 .card-item {
        background-color: var(--surface-color);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        height: 100%;
    }

        .cards-8 .card-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

            .cards-8 .card-item:hover .card-img img {
                transform: scale(1.1);
            }

            .cards-8 .card-item:hover .card-img .card-overlay {
                opacity: 1;
                visibility: visible;
            }

                .cards-8 .card-item:hover .card-img .card-overlay .card-overlay-content {
                    transform: translateY(0);
                }

        .cards-8 .card-item .card-img {
            position: relative;
            overflow: hidden;
        }

            .cards-8 .card-item .card-img img {
                width: 100%;
                aspect-ratio: 16/9;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

            .cards-8 .card-item .card-img .card-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease-in-out;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 2rem;
            }

                .cards-8 .card-item .card-img .card-overlay .card-overlay-content {
                    text-align: center;
                    transform: translateY(20px);
                    transition: transform 0.3s ease-in-out;
                }

                    .cards-8 .card-item .card-img .card-overlay .card-overlay-content h4 {
                        color: var(--contrast-color);
                        font-size: 1.5rem;
                        margin-bottom: 1rem;
                    }

                    .cards-8 .card-item .card-img .card-overlay .card-overlay-content p {
                        color: var(--contrast-color);
                        font-size: 0.9rem;
                        margin-bottom: 1.5rem;
                        opacity: 0.9;
                    }

                    .cards-8 .card-item .card-img .card-overlay .card-overlay-content .btn-link {
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        width: 45px;
                        height: 45px;
                        border-radius: 50%;
                        background-color: var(--contrast-color);
                        color: var(--accent-color);
                        transition: all 0.3s ease;
                    }

                        .cards-8 .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
                            background-color: var(--accent-color);
                            color: var(--contrast-color);
                            transform: rotate(45deg);
                        }

                        .cards-8 .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
                            font-size: 1.2rem;
                        }

        .cards-8 .card-item .card-content {
            padding: 2rem;
        }

            .cards-8 .card-item .card-content .card-category {
                display: inline-block;
                font-size: 0.875rem;
                color: var(--accent-color);
                font-weight: 500;
                margin-bottom: 0.5rem;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .cards-8 .card-item .card-content h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
                color: var(--heading-color);
                font-weight: 600;
                line-height: 1.3;
            }

            .cards-8 .card-item .card-content p {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 0;
            }

/*--------------------------------------------------------------
# Service Details 8 Section
--------------------------------------------------------------*/
.service-details-8 {
    padding-top: 80px;
    padding-bottom: 4px;
}

    .service-details-8 .service-intro {
        text-align: center;
        margin-bottom: 80px;
    }

        .service-details-8 .service-intro .service-badge {
            margin-bottom: 24px;
        }

            .service-details-8 .service-intro .service-badge span {
                display: inline-block;
                padding: 8px 24px;
                background: color-mix(in srgb, var(--accent-color), transparent 92%);
                color: var(--accent-color);
                font-size: 14px;
                font-weight: 500;
                letter-spacing: 1px;
                text-transform: uppercase;
            }

        .service-details-8 .service-intro h1 {
            font-size: 3.5rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 32px;
            color: var(--heading-color);
            letter-spacing: -0.02em;
        }

@media (max-width: 768px) {
    .service-details-8 .service-intro h1 {
        font-size: 2.5rem;
    }
}

.service-details-8 .service-intro .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-details-8 .service-content {
    margin-bottom: 80px;
}

.service-details-8 .visual-section {
    margin-bottom: 80px;
}

    .service-details-8 .visual-section .service-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .service-details-8 .visual-section .service-text {
        padding-left: 40px;
    }

@media (max-width: 992px) {
    .service-details-8 .visual-section .service-text {
        padding-left: 0;
        margin-top: 40px;
    }
}

.service-details-8 .visual-section .service-text h2 {
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .service-details-8 .visual-section .service-text h2 {
        font-size: 1.8rem;
    }
}

.service-details-8 .visual-section .service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--default-color);
    margin-bottom: 20px;
}

    .service-details-8 .visual-section .service-text p:last-child {
        margin-bottom: 0;
    }

.service-details-8 .features-section {
    margin-bottom: 80px;
    padding: 60px 0;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
}

    .service-details-8 .features-section .feature-item {
        text-align: center;
        padding: 0 20px;
    }

        .service-details-8 .features-section .feature-item .feature-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .service-details-8 .features-section .feature-item .feature-icon i {
                font-size: 2rem;
                color: var(--accent-color);
            }

        .service-details-8 .features-section .feature-item h4 {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 16px;
            color: var(--heading-color);
        }

        .service-details-8 .features-section .feature-item p {
            font-size: 1rem;
            line-height: 1.6;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin: 0;
        }

.service-details-8 .process-section {
    margin-bottom: 80px;
}

    .service-details-8 .process-section .process-info {
        padding-right: 40px;
    }

@media (max-width: 992px) {
    .service-details-8 .process-section .process-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.service-details-8 .process-section .process-info h3 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--heading-color);
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .service-details-8 .process-section .process-info h3 {
        font-size: 1.6rem;
    }
}

.service-details-8 .process-section .process-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--default-color);
    margin: 0;
}

.service-details-8 .process-section .process-steps .step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

    .service-details-8 .process-section .process-steps .step:last-child {
        margin-bottom: 0;
    }

    .service-details-8 .process-section .process-steps .step .step-number {
        min-width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent-color);
        color: var(--contrast-color);
        font-size: 14px;
        font-weight: 500;
    }

    .service-details-8 .process-section .process-steps .step .step-content h5 {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 8px;
        color: var(--heading-color);
    }

    .service-details-8 .process-section .process-steps .step .step-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin: 0;
    }

.service-details-8 .info-grid .info-card {
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 32px;
}

    .service-details-8 .info-grid .info-card .info-header {
        margin-bottom: 24px;
    }

        .service-details-8 .info-grid .info-card .info-header h4 {
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--heading-color);
        }

        .service-details-8 .info-grid .info-card .info-header p {
            font-size: 0.95rem;
            line-height: 1.5;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin: 0;
        }

    .service-details-8 .info-grid .info-card .info-content .price-range {
        text-align: center;
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .service-details-8 .info-grid .info-card .info-content .price-range .price-label {
            display: block;
            font-size: 0.85rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-details-8 .info-grid .info-card .info-content .price-range .price-value {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--accent-color);
            display: block;
        }

    .service-details-8 .info-grid .info-card .info-content .info-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .service-details-8 .info-grid .info-card .info-content .info-list li {
            font-size: 0.95rem;
            color: var(--default-color);
            margin-bottom: 12px;
            position: relative;
            padding-left: 20px;
        }

            .service-details-8 .info-grid .info-card .info-content .info-list li:last-child {
                margin-bottom: 0;
            }

            .service-details-8 .info-grid .info-card .info-content .info-list li::before {
                content: "•";
                position: absolute;
                left: 0;
                color: var(--accent-color);
            }

    .service-details-8 .info-grid .info-card .testimonial-content p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--default-color);
        margin-bottom: 24px;
        font-style: italic;
    }

    .service-details-8 .info-grid .info-card .testimonial-content .testimonial-author {
        display: flex;
        align-items: center;
        gap: 16px;
    }

        .service-details-8 .info-grid .info-card .testimonial-content .testimonial-author .author-image {
            width: 48px;
            height: 48px;
            object-fit: cover;
        }

        .service-details-8 .info-grid .info-card .testimonial-content .testimonial-author .author-info h6 {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 4px;
            color: var(--heading-color);
        }

        .service-details-8 .info-grid .info-card .testimonial-content .testimonial-author .author-info span {
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

    .service-details-8 .info-grid .info-card .service-form .form-field {
        margin-bottom: 16px;
    }

    .service-details-8 .info-grid .info-card .service-form input[type=text],
    .service-details-8 .info-grid .info-card .service-form input[type=email],
    .service-details-8 .info-grid .info-card .service-form input[type=tel],
    .service-details-8 .info-grid .info-card .service-form textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
        font-size: 14px;
        background-color: var(--surface-color);
        color: var(--default-color);
        transition: border-color 0.3s ease;
    }

        .service-details-8 .info-grid .info-card .service-form input[type=text]:focus,
        .service-details-8 .info-grid .info-card .service-form input[type=email]:focus,
        .service-details-8 .info-grid .info-card .service-form input[type=tel]:focus,
        .service-details-8 .info-grid .info-card .service-form textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .service-details-8 .info-grid .info-card .service-form input[type=text]::placeholder,
        .service-details-8 .info-grid .info-card .service-form input[type=email]::placeholder,
        .service-details-8 .info-grid .info-card .service-form input[type=tel]::placeholder,
        .service-details-8 .info-grid .info-card .service-form textarea::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .service-details-8 .info-grid .info-card .service-form .submit-btn {
        background: var(--accent-color);
        color: var(--contrast-color);
        border: none;
        padding: 12px 24px;
        font-size: 0.95rem;
        font-weight: 500;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        margin-top: 8px;
    }

        .service-details-8 .info-grid .info-card .service-form .submit-btn:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

        .service-details-8 .info-grid .info-card .service-form .submit-btn i {
            font-size: 0.85rem;
        }

@media (max-width: 768px) {
    .service-details-8 {
        padding: 60px 0;
    }

        .service-details-8 .service-intro {
            margin-bottom: 60px;
        }

        .service-details-8 .service-content {
            margin-bottom: 60px;
        }

        .service-details-8 .visual-section,
        .service-details-8 .features-section,
        .service-details-8 .process-section {
            margin-bottom: 60px;
        }

            .service-details-8 .features-section .row > div {
                margin-bottom: 40px;
            }

                .service-details-8 .features-section .row > div:last-child {
                    margin-bottom: 0;
                }

        .service-details-8 .info-grid .row > div {
            margin-bottom: 32px;
        }

            .service-details-8 .info-grid .row > div:last-child {
                margin-bottom: 0;
            }
}

/*--------------------------------------------------------------
# Service Details 7 Section
--------------------------------------------------------------*/
.service-details-7 .service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

    .service-details-7 .service-image img {
        border-radius: 15px;
    }

    .service-details-7 .service-image .service-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
    }

.service-details-7 .service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .service-details-7 .service-content h2 {
        font-size: 2rem;
    }
}

.service-details-7 .service-content .service-tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-details-7 .service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details-7 .service-content .service-features {
    margin: 2rem 0;
}

    .service-details-7 .service-content .service-features h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--heading-color);
    }

    .service-details-7 .service-content .service-features ul {
        list-style: none;
        padding: 0;
    }

        .service-details-7 .service-content .service-features ul li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            color: color-mix(in srgb, var(--default-color), transparent 10%);
        }

            .service-details-7 .service-content .service-features ul li i {
                color: var(--accent-color);
                margin-right: 0.8rem;
                font-size: 1.1rem;
            }

.service-details-7 .service-content .service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 576px) {
    .service-details-7 .service-content .service-actions {
        flex-direction: column;
    }
}

.service-details-7 .service-content .service-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-details-7 .service-content .service-actions .btn-primary:hover {
        background: color-mix(in srgb, var(--accent-color), black 10%);
        transform: translateY(-2px);
    }

.service-details-7 .service-content .service-actions .btn-secondary {
    background: transparent;
    color: var(--heading-color);
    padding: 12px 28px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-details-7 .service-content .service-actions .btn-secondary:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

.service-details-7 .service-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .service-details-7 .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .service-details-7 .service-card .card-icon {
        width: 70px;
        height: 70px;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

        .service-details-7 .service-card .card-icon i {
            font-size: 2rem;
            color: var(--accent-color);
        }

    .service-details-7 .service-card h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .service-details-7 .service-card p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 1.5rem;
    }

    .service-details-7 .service-card .card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .service-details-7 .service-card .card-link:hover {
            gap: 0.8rem;
            color: color-mix(in srgb, var(--accent-color), black 10%);
        }

        .service-details-7 .service-card .card-link i {
            transition: transform 0.3s ease;
        }

        .service-details-7 .service-card .card-link:hover i {
            transform: translateX(3px);
        }

.service-details-7 .booking-section {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 2rem;
    border-radius: 15px;
}

    .service-details-7 .booking-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--heading-color);
    }

    .service-details-7 .booking-section p {
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        margin-bottom: 2rem;
    }

    .service-details-7 .booking-section .availability-info .info-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

        .service-details-7 .booking-section .availability-info .info-item i {
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            color: var(--contrast-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-details-7 .booking-section .availability-info .info-item div {
            display: flex;
            flex-direction: column;
        }

            .service-details-7 .booking-section .availability-info .info-item div strong {
                color: var(--heading-color);
                font-weight: 600;
                margin-bottom: 0.2rem;
            }

            .service-details-7 .booking-section .availability-info .info-item div span {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                font-size: 0.9rem;
            }

.service-details-7 .appointment-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .service-details-7 .appointment-card h4 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .service-details-7 .appointment-card p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 2rem;
    }

    .service-details-7 .appointment-card .btn-appointment {
        display: inline-block;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        width: 100%;
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
    }

        .service-details-7 .appointment-card .btn-appointment:hover {
            background: color-mix(in srgb, var(--accent-color), black 10%);
            transform: translateY(-2px);
        }

    .service-details-7 .appointment-card .contact-alternative {
        text-align: center;
        font-size: 0.9rem;
    }

        .service-details-7 .appointment-card .contact-alternative span {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            display: block;
            margin-bottom: 0.3rem;
        }

        .service-details-7 .appointment-card .contact-alternative a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
        }

            .service-details-7 .appointment-card .contact-alternative a:hover {
                color: color-mix(in srgb, var(--accent-color), black 10%);
            }

@media (max-width: 992px) {
    .service-details-7 .service-content {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .service-details-7 .booking-section {
        margin-bottom: 2rem;
    }

    .service-details-7 .availability-info .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/*--------------------------------------------------------------
# Call To Action 10 Section
--------------------------------------------------------------*/
.call-to-action-10 {
    padding-top: 100px;
    position: relative;
    isolation: isolate;
    padding-bottom: 100px;
}

    .call-to-action-10 .container {
        position: relative;
    }

    .call-to-action-10 h2 {
        color: var(--heading-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .call-to-action-10 .lead {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .call-to-action-10 .btn {
        padding: 12px 32px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

        .call-to-action-10 .btn:hover {
            transform: translateY(-2px);
        }

    .call-to-action-10 .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .call-to-action-10 .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-10 .btn-outline-primary {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .call-to-action-10 .btn-outline-primary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-10 .scribble {
        position: absolute;
        pointer-events: none;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

        .call-to-action-10 .scribble::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

    .call-to-action-10 .scribble-1 {
        width: 150px;
        height: 150px;
        top: -30px;
        left: 5%;
        animation-delay: 0s;
    }

        .call-to-action-10 .scribble-1::before {
            clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
        }

    .call-to-action-10 .scribble-2 {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 10%;
        animation-delay: -2s;
    }

        .call-to-action-10 .scribble-2::before {
            clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
        }

    .call-to-action-10 .scribble-3 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 15%;
        animation-delay: -4s;
    }

        .call-to-action-10 .scribble-3::before {
            clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
        }

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .call-to-action-10 {
        padding: 60px 0;
    }

        .call-to-action-10 h2 {
            font-size: 2.5rem;
        }

        .call-to-action-10 .lead {
            font-size: 1.1rem;
        }

        .call-to-action-10 .cta-buttons .btn {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        .call-to-action-10 .scribble {
            transform: scale(0.7);
        }
}

/*--------------------------------------------------------------
# Faq 10 Section
--------------------------------------------------------------*/
.faq-10 .faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .faq-10 .faq-item:last-child {
        border-bottom: none;
    }

    .faq-10 .faq-item.faq-active .faq-header .faq-number {
        color: var(--accent-color);
        font-weight: 500;
    }

    .faq-10 .faq-item.faq-active .faq-header h4 {
        color: var(--accent-color);
    }

    .faq-10 .faq-item.faq-active .faq-header .faq-toggle {
        color: var(--accent-color);
        transform: rotate(0deg);
    }

        .faq-10 .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
            opacity: 0;
            transform: rotate(90deg);
        }

        .faq-10 .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
            opacity: 1;
            transform: rotate(0deg);
        }

    .faq-10 .faq-item.faq-active .faq-content {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
    }

    .faq-10 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .faq-10 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
        opacity: 0;
        transform: rotate(-90deg);
    }

    .faq-10 .faq-item .faq-header {
        display: flex;
        align-items: center;
        padding: 40px 0;
        cursor: pointer;
        gap: 0;
        transition: all 0.3s ease;
    }

        .faq-10 .faq-item .faq-header:hover .faq-number {
            transform: scale(1.1);
        }

        .faq-10 .faq-item .faq-header:hover .faq-toggle {
            transform: scale(1.1);
        }

        .faq-10 .faq-item .faq-header .faq-number {
            flex-shrink: 0;
            width: 80px;
            font-family: var(--heading-font);
            font-size: 1.1rem;
            font-weight: 300;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            transition: all 0.3s ease;
            letter-spacing: -0.02em;
        }

        .faq-10 .faq-item .faq-header h4 {
            flex: 1;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--heading-color);
            transition: all 0.3s ease;
            line-height: 1.5;
            letter-spacing: -0.01em;
            margin-right: 20px;
        }

        .faq-10 .faq-item .faq-header .faq-toggle {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }

            .faq-10 .faq-item .faq-header .faq-toggle i {
                position: absolute;
                transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

    .faq-10 .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
        opacity: 0;
    }

        .faq-10 .faq-item .faq-content .content-inner {
            padding: 0 80px 40px 80px;
            overflow: hidden;
        }

            .faq-10 .faq-item .faq-content .content-inner p {
                margin: 0;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                line-height: 1.8;
                font-size: 1rem;
                font-weight: 300;
            }

@media (max-width: 768px) {
    .faq-10 .faq-item .faq-header {
        padding: 30px 0;
    }

        .faq-10 .faq-item .faq-header .faq-number {
            width: 60px;
            font-size: 1rem;
        }

        .faq-10 .faq-item .faq-header h4 {
            font-size: 1.1rem;
            margin-right: 15px;
        }

        .faq-10 .faq-item .faq-header .faq-toggle {
            width: 20px;
            height: 20px;
            font-size: 16px;
        }

    .faq-10 .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px;
    }

        .faq-10 .faq-item .faq-content .content-inner p {
            font-size: 0.95rem;
        }
}

@media (max-width: 576px) {
    .faq-10 .faq-item .faq-header {
        padding: 25px 0;
    }

        .faq-10 .faq-item .faq-header .faq-number {
            width: 50px;
            font-size: 0.9rem;
        }

        .faq-10 .faq-item .faq-header h4 {
            font-size: 1rem;
            margin-right: 10px;
        }

    .faq-10 .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px;
    }

        .faq-10 .faq-item .faq-content .content-inner p {
            font-size: 0.9rem;
        }
}

/*--------------------------------------------------------------
# Hero 11 Section
--------------------------------------------------------------*/
.hero-11 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 120px 0;
}

    .hero-11 .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

@media (max-width: 768px) {
    .hero-11 .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-11 .hero-content p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-11 .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

    .hero-11 .hero-buttons .btn {
        padding: 15px 30px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

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

            .hero-11 .hero-buttons .btn.btn-primary:hover {
                background: color-mix(in srgb, var(--accent-color), black 10%);
                border-color: color-mix(in srgb, var(--accent-color), black 10%);
                transform: translateY(-2px);
            }

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

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

.hero-11 .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .hero-11 .hero-stats .stat-item {
        text-align: center;
    }

        .hero-11 .hero-stats .stat-item .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .hero-11 .hero-stats .stat-item .stat-label {
            display: block;
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 0.5rem;
        }

@media (max-width: 768px) {
    .hero-11 .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-11 .hero-visual {
    position: relative;
}

    .hero-11 .hero-visual .hero-image {
        position: relative;
        z-index: 2;
    }

        .hero-11 .hero-visual .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
        }

.hero-11 .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

    .hero-11 .floating-elements .floating-card {
        position: absolute;
        background: var(--surface-color);
        padding: 1rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero-11 .floating-elements .floating-card i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .hero-11 .floating-elements .floating-card span {
            font-weight: 600;
            color: var(--heading-color);
            font-size: 0.9rem;
        }

        .hero-11 .floating-elements .floating-card.card-1 {
            top: 20%;
            right: -10%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-11 .floating-elements .floating-card.card-2 {
            top: 60%;
            left: -15%;
            animation: float 6s ease-in-out infinite 2s;
        }

        .hero-11 .floating-elements .floating-card.card-3 {
            bottom: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite 4s;
        }

@media (max-width: 992px) {
    .hero-11 .floating-elements .floating-card.card-1 {
        right: -5%;
    }

    .hero-11 .floating-elements .floating-card.card-2 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .hero-11 .floating-elements .floating-card {
        display: none;
    }
}

.hero-11 .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

    .hero-11 .hero-bg-elements .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    }

        .hero-11 .hero-bg-elements .bg-shape.shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: rotate 20s linear infinite;
        }

        .hero-11 .hero-bg-elements .bg-shape.shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: rotate 15s linear infinite reverse;
        }

    .hero-11 .hero-bg-elements .bg-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveParticles 30s linear infinite;
    }

@keyframes float {

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

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

@media (max-width: 992px) {
    .hero-11 .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-11 .hero-buttons {
        justify-content: center;
    }

    .hero-11 .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
    padding: 10px 0;
}

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

.clients .swiper-slide img {
    transition: 0.3s;
}

    .clients .swiper-slide img:hover {
        transform: scale(1.1);
    }

/*--------------------------------------------------------------
# Service Details 10 Section
--------------------------------------------------------------*/
.service-details-10 {
    padding-top: 60px;
    padding-bottom: 35px;
}

    .service-details-10 .service-image {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
    }

        .service-details-10 .service-image img {
            border-radius: 15px;
        }

        .service-details-10 .service-image .service-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--accent-color);
            color: var(--contrast-color);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
        }

    .service-details-10 .service-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

@media (max-width: 768px) {
    .service-details-10 .service-content h2 {
        font-size: 2rem;
    }
}

.service-details-10 .service-content .service-tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-details-10 .service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details-10 .service-content .service-features {
    margin: 2rem 0;
}

    .service-details-10 .service-content .service-features h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--heading-color);
    }

    .service-details-10 .service-content .service-features ul {
        list-style: none;
        padding: 0;
    }

        .service-details-10 .service-content .service-features ul li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            color: color-mix(in srgb, var(--default-color), transparent 10%);
        }

            .service-details-10 .service-content .service-features ul li i {
                color: var(--accent-color);
                margin-right: 0.8rem;
                font-size: 1.1rem;
            }

.service-details-10 .service-content .service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 576px) {
    .service-details-10 .service-content .service-actions {
        flex-direction: column;
    }
}

.service-details-10 .service-content .service-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-details-10 .service-content .service-actions .btn-primary:hover {
        background: color-mix(in srgb, var(--accent-color), black 10%);
        transform: translateY(-2px);
    }

.service-details-10 .service-content .service-actions .btn-secondary {
    background: transparent;
    color: var(--heading-color);
    padding: 12px 28px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-details-10 .service-content .service-actions .btn-secondary:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

.service-details-10 .service-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .service-details-10 .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .service-details-10 .service-card .card-icon {
        width: 70px;
        height: 70px;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

        .service-details-10 .service-card .card-icon i {
            font-size: 2rem;
            color: var(--accent-color);
        }

    .service-details-10 .service-card h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .service-details-10 .service-card p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 1.5rem;
    }

    .service-details-10 .service-card .card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .service-details-10 .service-card .card-link:hover {
            gap: 0.8rem;
            color: color-mix(in srgb, var(--accent-color), black 10%);
        }

        .service-details-10 .service-card .card-link i {
            transition: transform 0.3s ease;
        }

        .service-details-10 .service-card .card-link:hover i {
            transform: translateX(3px);
        }

.service-details-10 .booking-section {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 2rem;
    border-radius: 15px;
}

    .service-details-10 .booking-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--heading-color);
    }

    .service-details-10 .booking-section p {
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        margin-bottom: 2rem;
    }

    .service-details-10 .booking-section .availability-info .info-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

        .service-details-10 .booking-section .availability-info .info-item i {
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            color: var(--contrast-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-details-10 .booking-section .availability-info .info-item div {
            display: flex;
            flex-direction: column;
        }

            .service-details-10 .booking-section .availability-info .info-item div strong {
                color: var(--heading-color);
                font-weight: 600;
                margin-bottom: 0.2rem;
            }

            .service-details-10 .booking-section .availability-info .info-item div span {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                font-size: 0.9rem;
            }

.service-details-10 .appointment-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .service-details-10 .appointment-card h4 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .service-details-10 .appointment-card p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 2rem;
    }

    .service-details-10 .appointment-card .btn-appointment {
        display: inline-block;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        width: 100%;
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
    }

        .service-details-10 .appointment-card .btn-appointment:hover {
            background: color-mix(in srgb, var(--accent-color), black 10%);
            transform: translateY(-2px);
        }

    .service-details-10 .appointment-card .contact-alternative {
        text-align: center;
        font-size: 0.9rem;
    }

        .service-details-10 .appointment-card .contact-alternative span {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            display: block;
            margin-bottom: 0.3rem;
        }

        .service-details-10 .appointment-card .contact-alternative a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
        }

            .service-details-10 .appointment-card .contact-alternative a:hover {
                color: color-mix(in srgb, var(--accent-color), black 10%);
            }

@media (max-width: 992px) {
    .service-details-10 .service-content {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .service-details-10 .booking-section {
        margin-bottom: 2rem;
    }

    .service-details-10 .availability-info .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/*--------------------------------------------------------------
# Stats 2 Section
--------------------------------------------------------------*/
.stats-2 .avatars {
    position: relative;
}

    .stats-2 .avatars img {
        width: 60px;
        height: 60px;
        border: 3px solid var(--accent-color);
        margin-right: -15px;
        transition: transform 0.3s ease;
    }

        .stats-2 .avatars img:hover {
            transform: translateY(-5px);
            z-index: 2;
        }

.stats-2 .counters h2 {
    color: var(--heading-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

    .stats-2 .counters h2 span {
        display: inline-block;
    }

.stats-2 .counters p {
    color: var(--default-color);
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .stats-2 .row {
        text-align: center;
    }

    .stats-2 .avatars {
        justify-content: center;
        margin-bottom: 40px;
    }

    .stats-2 .counters h2 {
        font-size: 36px;
    }

    .stats-2 .counters p {
        font-size: 16px;
    }

    .stats-2 .counters .col-md-4 {
        margin-bottom: 30px;
    }

        .stats-2 .counters .col-md-4:last-child {
            margin-bottom: 0;
        }
}

@media (max-width: 576px) {
    .stats-2 {
        padding: 60px 0;
    }

        .stats-2 .avatars {
            flex-wrap: wrap;
            justify-content: center;
        }

            .stats-2 .avatars img {
                margin: 0 -8px;
            }
}

/*--------------------------------------------------------------
# Faq 11 Section
--------------------------------------------------------------*/
.faq-11 .faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .faq-11 .faq-item:last-child {
        border-bottom: none;
    }

    .faq-11 .faq-item.faq-active .faq-header .faq-number {
        color: var(--accent-color);
        font-weight: 500;
    }

    .faq-11 .faq-item.faq-active .faq-header h4 {
        color: var(--accent-color);
    }

    .faq-11 .faq-item.faq-active .faq-header .faq-toggle {
        color: var(--accent-color);
        transform: rotate(0deg);
    }

        .faq-11 .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
            opacity: 0;
            transform: rotate(90deg);
        }

        .faq-11 .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
            opacity: 1;
            transform: rotate(0deg);
        }

    .faq-11 .faq-item.faq-active .faq-content {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
    }

    .faq-11 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .faq-11 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
        opacity: 0;
        transform: rotate(-90deg);
    }

    .faq-11 .faq-item .faq-header {
        display: flex;
        align-items: center;
        padding: 40px 0;
        cursor: pointer;
        gap: 0;
        transition: all 0.3s ease;
    }

        .faq-11 .faq-item .faq-header:hover .faq-number {
            transform: scale(1.1);
        }

        .faq-11 .faq-item .faq-header:hover .faq-toggle {
            transform: scale(1.1);
        }

        .faq-11 .faq-item .faq-header .faq-number {
            flex-shrink: 0;
            width: 80px;
            font-family: var(--heading-font);
            font-size: 1.1rem;
            font-weight: 300;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            transition: all 0.3s ease;
            letter-spacing: -0.02em;
        }

        .faq-11 .faq-item .faq-header h4 {
            flex: 1;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--heading-color);
            transition: all 0.3s ease;
            line-height: 1.5;
            letter-spacing: -0.01em;
            margin-right: 20px;
        }

        .faq-11 .faq-item .faq-header .faq-toggle {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }

            .faq-11 .faq-item .faq-header .faq-toggle i {
                position: absolute;
                transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

    .faq-11 .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
        opacity: 0;
    }

        .faq-11 .faq-item .faq-content .content-inner {
            padding: 0 80px 40px 80px;
            overflow: hidden;
        }

            .faq-11 .faq-item .faq-content .content-inner p {
                margin: 0;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                line-height: 1.8;
                font-size: 1rem;
                font-weight: 300;
            }

@media (max-width: 768px) {
    .faq-11 .faq-item .faq-header {
        padding: 30px 0;
    }

        .faq-11 .faq-item .faq-header .faq-number {
            width: 60px;
            font-size: 1rem;
        }

        .faq-11 .faq-item .faq-header h4 {
            font-size: 1.1rem;
            margin-right: 15px;
        }

        .faq-11 .faq-item .faq-header .faq-toggle {
            width: 20px;
            height: 20px;
            font-size: 16px;
        }

    .faq-11 .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px;
    }

        .faq-11 .faq-item .faq-content .content-inner p {
            font-size: 0.95rem;
        }
}

@media (max-width: 576px) {
    .faq-11 .faq-item .faq-header {
        padding: 25px 0;
    }

        .faq-11 .faq-item .faq-header .faq-number {
            width: 50px;
            font-size: 0.9rem;
        }

        .faq-11 .faq-item .faq-header h4 {
            font-size: 1rem;
            margin-right: 10px;
        }

    .faq-11 .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px;
    }

        .faq-11 .faq-item .faq-content .content-inner p {
            font-size: 0.9rem;
        }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    text-align: center;
    margin-bottom: 40px;
    transition: all 0.3s ease-in-out;
}

    .team .team-member .member-img {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        margin-bottom: 30px;
    }

        .team .team-member .member-img img {
            transition: all 0.3s ease-in-out;
            width: 100%;
            height: auto;
            filter: grayscale(100%);
        }

    .team .team-member .member-info h4 {
        font-weight: 300;
        font-size: 1.5rem;
        margin-bottom: 8px;
        color: var(--heading-color);
        line-height: 1.3;
    }

    .team .team-member .member-info span {
        display: block;
        font-size: 0.9rem;
        color: var(--accent-color);
        font-weight: 400;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    .team .team-member .member-info p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .team .team-member .member-info .social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

        .team .team-member .member-info .social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
            border-radius: 50%;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 16px;
            transition: all 0.3s ease-in-out;
        }

            .team .team-member .member-info .social a:hover {
                color: var(--contrast-color);
                background-color: var(--accent-color);
                border-color: var(--accent-color);
                transform: translateY(-2px);
            }

    .team .team-member:hover .member-img img {
        transform: scale(1.05);
        filter: grayscale(0%);
    }

@media (max-width: 992px) {
    .team .team-member .member-info h4 {
        font-size: 1.3rem;
    }

    .team .team-member .member-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .team .team-member .member-info h4 {
        font-size: 1.2rem;
    }

    .team .team-member .member-info p {
        padding: 0;
        font-size: 0.85rem;
    }

    .team .team-member .member-info .social {
        gap: 12px;
    }

        .team .team-member .member-info .social a {
            width: 36px;
            height: 36px;
            font-size: 14px;
        }
}

/*--------------------------------------------------------------
# Testimonials 2 Section
--------------------------------------------------------------*/
.testimonials-2 {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

    .testimonials-2 .testimonials-slider-wrapper {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
    }

    .testimonials-2 .testimonials-carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 2rem 0;
    }

    .testimonials-2 .testimonial-card {
        background: var(--surface-color);
        border-radius: 24px;
        padding: 2.5rem;
        position: relative;
        transition: all 0.4s ease;
        box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
    }

        .testimonials-2 .testimonial-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
        }

        .testimonials-2 .testimonial-card.featured {
            background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, var(--surface-color) 100%);
            border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
            transform: scale(1.05);
        }

            .testimonials-2 .testimonial-card.featured .featured-badge {
                position: absolute;
                top: -12px;
                right: 2rem;
                background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #007bff 20%) 100%);
                color: var(--contrast-color);
                padding: 0.5rem 1rem;
                border-radius: 20px;
                font-size: 0.8rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 70%);
            }

                .testimonials-2 .testimonial-card.featured .featured-badge i {
                    font-size: 0.875rem;
                }

    .testimonials-2 .rating {
        display: flex;
        gap: 0.25rem;
        margin-bottom: 1.5rem;
    }

        .testimonials-2 .rating i {
            color: #ffc107;
            font-size: 1rem;
            filter: drop-shadow(0 2px 4px color-mix(in srgb, #ffc107, transparent 60%));
        }

    .testimonials-2 blockquote {
        font-size: 1.125rem;
        line-height: 1.8;
        color: var(--default-color);
        margin: 0 0 2rem 0;
        position: relative;
        font-style: italic;
    }

        .testimonials-2 blockquote::before {
            content: '"';
            position: absolute;
            top: -1rem;
            left: -0.5rem;
            font-size: 4rem;
            color: color-mix(in srgb, var(--accent-color), transparent 80%);
            font-family: Georgia, serif;
            line-height: 1;
        }

    .testimonials-2 .user-profile {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    }

    .testimonials-2 .avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid var(--accent-color);
        box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .testimonials-2 .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .testimonials-2 .user-info {
        flex: 1;
    }

        .testimonials-2 .user-info h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin: 0 0 0.25rem 0;
            color: var(--heading-color);
        }

        .testimonials-2 .user-info .title {
            font-size: 0.9rem;
            color: var(--accent-color);
            font-weight: 500;
            display: block;
            margin-bottom: 0.25rem;
        }

        .testimonials-2 .user-info .company {
            font-size: 0.85rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-weight: 500;
        }

    .testimonials-2 .navigation-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin-top: 3rem;
    }

    .testimonials-2 .nav-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
        background: var(--surface-color);
        color: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.25rem;
    }

        .testimonials-2 .nav-btn:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
            transform: scale(1.1);
            box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .testimonials-2 .dots-indicator {
        display: flex;
        gap: 0.75rem;
    }

        .testimonials-2 .dots-indicator .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: color-mix(in srgb, var(--accent-color), transparent 70%);
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .testimonials-2 .dots-indicator .dot.active {
                background: var(--accent-color);
                transform: scale(1.2);
            }

@media (max-width: 1199.98px) {
    .testimonials-2 .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials-2 .testimonial-card {
        padding: 2rem;
    }

        .testimonials-2 .testimonial-card.featured {
            transform: scale(1.02);
        }

    .testimonials-2 blockquote {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials-2 .testimonials-carousel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-2 .testimonial-card {
        padding: 1.5rem;
    }

        .testimonials-2 .testimonial-card.featured {
            transform: none;
        }

        .testimonials-2 .testimonial-card:hover {
            transform: translateY(-8px);
        }

    .testimonials-2 blockquote {
        font-size: 0.95rem;
        line-height: 1.7;
    }

        .testimonials-2 blockquote::before {
            font-size: 3rem;
            top: -0.75rem;
        }

    .testimonials-2 .avatar {
        width: 50px;
        height: 50px;
    }

    .testimonials-2 .user-info h4 {
        font-size: 1rem;
    }

    .testimonials-2 .user-info .title {
        font-size: 0.85rem;
    }

    .testimonials-2 .user-info .company {
        font-size: 0.8rem;
    }

    .testimonials-2 .navigation-controls {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonials-2 .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
}

/*--------------------------------------------------------------
# Call To Action 11 Section
--------------------------------------------------------------*/
.call-to-action-11 {
    padding-top: 100px;
    position: relative;
    isolation: isolate;
    padding-bottom: 100px;
}

    .call-to-action-11 .container {
        position: relative;
    }

    .call-to-action-11 h2 {
        color: var(--heading-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .call-to-action-11 .lead {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .call-to-action-11 .btn {
        padding: 12px 32px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

        .call-to-action-11 .btn:hover {
            transform: translateY(-2px);
        }

    .call-to-action-11 .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .call-to-action-11 .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-11 .btn-outline-primary {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .call-to-action-11 .btn-outline-primary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action-11 .scribble {
        position: absolute;
        pointer-events: none;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

        .call-to-action-11 .scribble::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

    .call-to-action-11 .scribble-1 {
        width: 150px;
        height: 150px;
        top: -30px;
        left: 5%;
        animation-delay: 0s;
    }

        .call-to-action-11 .scribble-1::before {
            clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
        }

    .call-to-action-11 .scribble-2 {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 10%;
        animation-delay: -2s;
    }

        .call-to-action-11 .scribble-2::before {
            clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
        }

    .call-to-action-11 .scribble-3 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 15%;
        animation-delay: -4s;
    }

        .call-to-action-11 .scribble-3::before {
            clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
        }

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .call-to-action-11 {
        padding: 60px 0;
    }

        .call-to-action-11 h2 {
            font-size: 2.5rem;
        }

        .call-to-action-11 .lead {
            font-size: 1.1rem;
        }

        .call-to-action-11 .cta-buttons .btn {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        .call-to-action-11 .scribble {
            transform: scale(0.7);
        }
}

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

    .steps-3 .step-item {
        text-align: center;
        padding: 20px;
        position: relative;
        margin-bottom: 30px;
    }

        .steps-3 .step-item::after {
            content: "";
            position: absolute;
            top: 45px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 70%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
            z-index: 0;
        }

        .steps-3 .step-item:last-child::after {
            display: none;
        }

    .steps-3 .step-circle {
        width: 70px;
        height: 70px;
        background-color: var(--surface-color);
        border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease-in-out;
    }

        .steps-3 .step-circle span {
            font-family: var(--heading-font);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--accent-color);
            transition: all 0.3s ease-in-out;
        }

    .steps-3 .step-item:hover .step-circle {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        transform: scale(1.1);
    }

        .steps-3 .step-item:hover .step-circle span {
            color: var(--contrast-color);
        }

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

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

@media (max-width: 991px) {
    .steps-3 .step-item::after {
        display: none;
    }

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

        .steps-3 .step-circle span {
            font-size: 1.3rem;
        }

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

@media (max-width: 767px) {
    .steps-3 .step-circle {
        width: 50px;
        height: 50px;
    }

        .steps-3 .step-circle span {
            font-size: 1.1rem;
        }

    .steps-3 h3 {
        font-size: 1.1rem;
    }

    .steps-3 p {
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .register .registration-form-wrapper {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        background-color: var(--surface-color);
        margin: 60px 0;
    }

    .register .image-container {
        position: relative;
        height: 100%;
        overflow: hidden;
    }

        .register .image-container img {
            object-position: center;
        }

        .register .image-container .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(45, 70, 94, 0.6), rgba(45, 70, 94, 0.9));
        }

        .register .image-container .welcome-text {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 2.5rem;
            color: var(--contrast-color);
            z-index: 1;
        }

            .register .image-container .welcome-text h3 {
                color: var(--contrast-color);
                font-weight: 700;
                margin-bottom: 1rem;
                font-size: 1.75rem;
            }

            .register .image-container .welcome-text p {
                font-size: 0.95rem;
                opacity: 0.9;
                margin-bottom: 0;
            }

    .register .form-container {
        padding: 2.5rem;
        height: 100%;
    }

@media (max-width: 991.98px) {
    .register .form-container {
        padding: 2rem 1.5rem;
    }
}

.register .form-header {
    margin-bottom: 2rem;
    text-align: center;
}

    .register .form-header h2 {
        font-weight: 700;
        margin-bottom: 0.75rem;
        font-size: 1.75rem;
    }

    .register .form-header p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 0.95rem;
    }

        .register .form-header p a {
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }

            .register .form-header p a:hover {
                text-decoration: underline;
            }

.register .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.register .form-control {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    background-color: transparent;
    transition: all 0.3s;
    color: var(--default-color);
}

    .register .form-control:focus {
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
        border-color: var(--accent-color);
    }

.register .password-field .input-group .form-control {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.register .password-field .input-group .toggle-password {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-left: none;
    background-color: var(--surface-color);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    transition: all 0.3s;
}

    .register .password-field .input-group .toggle-password:hover {
        color: var(--default-color);
    }

    .register .password-field .input-group .toggle-password i {
        font-size: 1.1rem;
    }

.register .form-check .form-check-input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.2rem;
    border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

    .register .form-check .form-check-input:checked {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
    }

    .register .form-check .form-check-input:focus {
        box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
        border-color: var(--accent-color);
    }

.register .form-check .form-check-label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    padding-left: 0.25rem;
}

    .register .form-check .form-check-label a {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 600;
    }

        .register .form-check .form-check-label a:hover {
            text-decoration: underline;
        }

.register .btn-register {
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    transition: all 0.3s;
}

    .register .btn-register:hover {
        background-color: color-mix(in srgb, var(--accent-color), #000 10%);
        transform: translateY(-2px);
    }

    .register .btn-register:active {
        transform: translateY(0);
    }

.register .social-login {
    margin-top: 1.5rem;
}

    .register .social-login .divider {
        position: relative;
        text-align: center;
        margin-bottom: 1.5rem;
    }

        .register .social-login .divider::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background-color: color-mix(in srgb, var(--default-color), transparent 85%);
            z-index: 1;
        }

        .register .social-login .divider span {
            position: relative;
            z-index: 2;
            background-color: var(--surface-color);
            padding: 0 1rem;
            font-size: 0.875rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

    .register .social-login .social-buttons {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
    }

        .register .social-login .social-buttons .btn-social {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
            background-color: var(--surface-color);
            color: var(--default-color);
            transition: all 0.3s;
        }

            .register .social-login .social-buttons .btn-social i {
                font-size: 1.1rem;
            }

            .register .social-login .social-buttons .btn-social:hover {
                background-color: color-mix(in srgb, var(--default-color), transparent 95%);
                transform: translateY(-2px);
            }

            .register .social-login .social-buttons .btn-social:active {
                transform: translateY(0);
            }

            .register .social-login .social-buttons .btn-social.btn-google i {
                color: #DB4437;
            }

            .register .social-login .social-buttons .btn-social.btn-facebook i {
                color: #4267B2;
            }

            .register .social-login .social-buttons .btn-social.btn-apple i {
                color: #000000;
            }

@media (max-width: 767.98px) {
    .register {
        margin: 40px 0;
    }

        .register .social-buttons {
            flex-direction: column;
        }
}

/*--------------------------------------------------------------
# Faq 12 Section
--------------------------------------------------------------*/
.faq-12 .faq-tabs .nav-pills {
    display: inline-flex;
    padding: 8px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 50px;
}

    .faq-12 .faq-tabs .nav-pills .nav-item {
        margin: 0 5px;
    }

        .faq-12 .faq-tabs .nav-pills .nav-item:first-child {
            margin-left: 0;
        }

        .faq-12 .faq-tabs .nav-pills .nav-item:last-child {
            margin-right: 0;
        }

    .faq-12 .faq-tabs .nav-pills .nav-link {
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 500;
        color: var(--default-color);
        transition: all 0.3s ease;
    }

        .faq-12 .faq-tabs .nav-pills .nav-link:hover {
            color: var(--accent-color);
        }

        .faq-12 .faq-tabs .nav-pills .nav-link.active {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-12 .faq-tabs .nav-pills .nav-link i {
            font-size: 1.1rem;
        }

@media (max-width: 768px) {
    .faq-12 .faq-tabs .nav-pills {
        flex-wrap: wrap;
        justify-content: center;
    }

        .faq-12 .faq-tabs .nav-pills .nav-item {
            margin: 5px;
        }
}

.faq-12 .faq-list .faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: var(--surface-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-12 .faq-list .faq-item:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

    .faq-12 .faq-list .faq-item h3 {
        display: flex;
        align-items: center;
        padding: 20px 25px;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        background-color: var(--surface-color);
        transition: all 0.3s ease;
        position: relative;
    }

        .faq-12 .faq-list .faq-item h3:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
        }

        .faq-12 .faq-list .faq-item h3 .num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            margin-right: 15px;
            background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
            color: var(--accent-color);
            border-radius: 50%;
            font-size: 0.9rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .faq-12 .faq-list .faq-item h3 .question {
            flex: 1;
        }

        .faq-12 .faq-list .faq-item h3 .faq-toggle {
            font-size: 1.2rem;
            transition: all 0.3s ease;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-left: 15px;
        }

    .faq-12 .faq-list .faq-item .faq-content {
        padding: 15px;
        display: none;
    }

        .faq-12 .faq-list .faq-item .faq-content p {
            overflow: hidden;
            padding: 0;
            margin: 0;
        }

            .faq-12 .faq-list .faq-item .faq-content p:last-child {
                margin-bottom: 0;
                overflow: hidden;
            }

    .faq-12 .faq-list .faq-item.faq-active h3 {
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

        .faq-12 .faq-list .faq-item.faq-active h3 .faq-toggle {
            transform: rotate(45deg);
            color: var(--accent-color);
        }

    .faq-12 .faq-list .faq-item.faq-active .faq-content {
        display: block;
    }

.faq-12 .faq-cta {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    padding: 30px;
    border-radius: 10px;
}

    .faq-12 .faq-cta p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .faq-12 .faq-cta .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        padding: 10px 25px;
        border-radius: 50px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .faq-12 .faq-cta .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), #000 15%);
            border-color: color-mix(in srgb, var(--accent-color), #000 15%);
            transform: translateY(-2px);
        }

@media (max-width: 576px) {
    .faq-12 .faq-list .faq-item h3 {
        padding: 15px 20px;
        font-size: 1rem;
    }

        .faq-12 .faq-list .faq-item h3 .num {
            width: 24px;
            height: 24px;
            margin-right: 10px;
            font-size: 0.8rem;
        }

    .faq-12 .faq-list .faq-item .faq-content .content-inner {
        padding: 0 20px;
    }

    .faq-12 .faq-list .faq-item .faq-content.faq-active .content-inner {
        padding: 15px 20px;
    }
}

/*--------------------------------------------------------------
# Call To Action 12 Section
--------------------------------------------------------------*/
.call-to-action-12 {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

    .call-to-action-12 .cta-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

        .call-to-action-12 .cta-bg::before {
            content: "";
            position: absolute;
            inset: 0;
            background: color-mix(in srgb, var(--background-color), transparent 20%);
        }

    .call-to-action-12 .container {
        position: relative;
        z-index: 2;
    }

    .call-to-action-12 .cta-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

@media (max-width: 768px) {
    .call-to-action-12 .cta-content h2 {
        font-size: 2rem;
    }
}

.call-to-action-12 .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6;
}

.call-to-action-12 .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

    .call-to-action-12 .cta-buttons .btn {
        padding: 12px 30px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

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

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

        .call-to-action-12 .cta-buttons .btn.btn-outline {
            background-color: transparent;
            color: var(--accent-color);
            border-color: var(--accent-color);
        }

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

@media (max-width: 576px) {
    .call-to-action-12 .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .call-to-action-12 .cta-buttons .btn {
            width: 100%;
            max-width: 280px;
            justify-content: center;
        }
}

.call-to-action-12 .cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

    .call-to-action-12 .cta-features .feature-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

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

        .call-to-action-12 .cta-features .feature-item span {
            font-size: 0.95rem;
            font-weight: 500;
        }

@media (max-width: 576px) {
    .call-to-action-12 .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

        .call-to-action-12 .cta-features .feature-item {
            justify-content: center;
        }
}

@media (max-width: 768px) {
    .call-to-action-12 {
        min-height: 400px;
        padding: 80px 0;
    }

        .call-to-action-12 .cta-content h2 {
            margin-bottom: 1rem;
        }

        .call-to-action-12 .cta-content p {
            margin-bottom: 2rem;
        }

        .call-to-action-12 .cta-buttons {
            margin-bottom: 2rem;
        }
}

/*--------------------------------------------------------------
# Gallery 3 Section
--------------------------------------------------------------*/
.gallery-3 .isotope-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}

    .gallery-3 .isotope-filters li {
        display: inline-block;
        padding: 10px 20px;
        background: var(--surface-color);
        color: var(--default-color);
        border-radius: 30px;
        cursor: pointer;
        font-weight: 500;
        font-size: 15px;
        transition: 0.3s;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

        .gallery-3 .isotope-filters li:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 80%);
        }

        .gallery-3 .isotope-filters li.filter-active {
            background: var(--accent-color);
            color: var(--contrast-color);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

@media (max-width: 576px) {
    .gallery-3 .isotope-filters {
        gap: 8px;
    }

        .gallery-3 .isotope-filters li {
            padding: 8px 14px;
            font-size: 14px;
        }
}

.gallery-3 .gallery-item {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .gallery-3 .gallery-item {
        margin-bottom: 20px;
    }
}

.gallery-3 .gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

    .gallery-3 .gallery-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

        .gallery-3 .gallery-card:hover .gallery-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-3 .gallery-card:hover .gallery-image img {
            transform: scale(1.1);
        }

.gallery-3 .gallery-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
    overflow: hidden;
}

    .gallery-3 .gallery-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

.gallery-3 .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--contrast-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

    .gallery-3 .gallery-overlay h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--contrast-color);
    }

    .gallery-3 .gallery-overlay p {
        font-size: 14px;
        margin-bottom: 15px;
        opacity: 0.9;
    }

    .gallery-3 .gallery-overlay .gallery-actions {
        display: flex;
        gap: 15px;
    }

        .gallery-3 .gallery-overlay .gallery-actions a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent-color);
            color: var(--contrast-color);
            font-size: 18px;
            transition: 0.3s;
        }

            .gallery-3 .gallery-overlay .gallery-actions a:hover {
                background: color-mix(in srgb, var(--accent-color), transparent 20%);
                transform: scale(1.1);
            }

.gallery-3 .glightbox-clean .gslide-description {
    background: #272727;
}

.gallery-3 .glightbox-clean .gslide-title {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
