@charset "UTF-8";

:root {
    --default-font: "Microsoft YaHei", "微软雅黑", "Arial", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Verdana", sans-serif;
    --nav-font: "Verdana", sans-serif;
}

:root {
    --background-color: #ffffff;
    --default-color: #070707;
    --heading-color: #2b2b2b;
    --accent-color: #e30d40;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

:root {
    --nav-color: #070707;
    --nav-hover-color: #e30d40;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #070707;
    --nav-dropdown-hover-color: #e30d40;
}

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

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

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

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);
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .container {
        width: 88%;
    }
}

/* 1920屏 (≥1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1680px;
    }
}

/* 2K屏 (≥1600px, 2560px 宽) */
@media (min-width: 1600px) {
    .container {
        max-width: 2200px;
    }
}

/* 4K屏 (≥2560px, 3840px 宽) */
@media (min-width: 2560px) {
    .container {
        max-width: 3300px;
    }
}

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

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

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

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

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

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

.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 25px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

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

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

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

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Megamenu 2 - Desktop */
@media (min-width: 1200px) {
    .navmenu .megamenu-2 {
        position: static;
        /* Hide Mobile Megamenu in Desktop */
        /* Tab Navigation */
        /* Tab Content */
    }

    .navmenu .megamenu-2 .mobile-megamenu {
        display: none;
    }

    .navmenu .megamenu-2 .desktop-megamenu {
        background-color: var(--nav-dropdown-background-color);
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        border-radius: 6px;
        z-index: 99;
        padding: 0;
        display: flex;
        max-height: 80vh;
        overflow: hidden;
    }

    .navmenu .megamenu-2:hover>.desktop-megamenu {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .megamenu-2 .tab-navigation {
        width: 450px;
        background-color: #f7f7f7;
        border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding: 25px 0;
        flex-shrink: 0;
    }

    .navmenu .megamenu-2 .tab-navigation .nav-tabs {
        border: none;
    }

    .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item {
        width: 100%;
        padding-left: 10px;
    }

    .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 35px 25px;
        border: none;
        width: 100%;
        background: transparent;
        transition: all 0.3s;
        border-left: 3px solid transparent;
        border-radius: 0;
        color: var(--nav-dropdown-color);
    }

    .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
        padding-left: 30px;
    }

    .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active {
        background-color: var(--surface-color);
        border-left-color: var(--accent-color);
    }

    .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active i {
        color: var(--accent-color);
    }

    .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active span {
        color: var(--accent-color);
        font-weight: 400;
    }

    .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link i {
        font-size: 20px;
        transition: 0.3s;
        flex-shrink: 0;
    }

    .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link span {
        font-size: 22px;
        font-weight: 400;
        transition: 0.3s;
    }

    .navmenu .megamenu-2 .tab-content {
        flex: 1;
        padding: 30px;
        overflow-y: auto;
        /* Content Grid Layout */
        /* Featured Banner */
        /* Resources Layout */
    }

    .navmenu .megamenu-2 .tab-content .content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 30px;
        align-items: start;
    }

    .navmenu .megamenu-2 .tab-content .content-grid .product-section h4 {
        color: var(--heading-color);
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--accent-color);
    }

    .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 15px;
        border-radius: 8px;
        transition: all 0.3s;
        color: var(--nav-dropdown-color);
    }

    .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
        transform: translateX(8px);
    }

    .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover i {
        color: var(--accent-color);
        transform: scale(1.1);
    }

    .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link i {
        color: color-mix(in srgb, var(--nav-dropdown-color), transparent 20%);
        font-size: 18px;
        transition: all 0.3s;
        min-width: 18px;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div {
        flex: 1;
        min-width: 0;
    }

    .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div span {
        display: block;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 2px;
        line-height: 1.3;
    }

    .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div small {
        color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
        font-size: 12px;
        line-height: 1.3;
        display: block;
    }

    .navmenu .megamenu-2 .tab-content .featured-banner {
        background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
        border-radius: 10px;
        padding: 25px;
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu .megamenu-2 .tab-content .featured-banner .banner-content {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-image {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info {
        flex: 1;
        min-width: 0;
    }

    .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info h5 {
        color: var(--heading-color);
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info p {
        color: var(--nav-dropdown-color);
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn {
        color: var(--accent-color);
        font-size: 14px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: 0.3s;
    }

    .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover {
        color: color-mix(in srgb, var(--accent-color), black 15%);
    }

    .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover i {
        transform: translateX(4px);
    }

    .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn i {
        transition: 0.3s;
    }

    .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        align-items: start;
    }

    .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category {
        background-color: var(--surface-color);
        padding: 25px;
        border-radius: 10px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
        transition: all 0.3s;
    }

    .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
        border-color: var(--accent-color);
    }

    .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category i {
        color: var(--accent-color);
        font-size: 24px;
        margin-bottom: 15px;
        display: block;
    }

    .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category h5 {
        color: var(--heading-color);
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category p {
        color: var(--nav-dropdown-color);
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link {
        color: var(--accent-color);
        font-size: 13px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: 0.3s;
    }

    .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover {
        color: color-mix(in srgb, var(--accent-color), black 15%);
    }

    .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover i {
        transform: translateX(3px);
    }

    .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link i {
        transition: 0.3s;
    }
}

/* Megamenu 2 - Mobile */
@media (max-width: 1199px) {
    .navmenu .megamenu-2 {
        /* Hide Desktop Megamenu in Mobile */
    }

    .navmenu .megamenu-2 .desktop-megamenu {
        display: none;
    }

    .navmenu .megamenu-2 .mobile-megamenu {
        position: static;
        display: none;
        z-index: 99;
        padding: 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;
        border-radius: 6px;
        overflow: hidden;
    }

    .navmenu .megamenu-2 .mobile-megamenu li {
        position: relative;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .navmenu .megamenu-2 .mobile-megamenu li:last-child {
        border-bottom: none;
    }

    .navmenu .megamenu-2 .mobile-megamenu li a {
        padding: 14px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--nav-dropdown-color);
        font-size: 15px;
        transition: 0.3s;
        font-weight: 500;
    }

    .navmenu .megamenu-2 .mobile-megamenu li a:hover {
        color: var(--nav-dropdown-hover-color);
        background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    }

    .navmenu .megamenu-2 .mobile-megamenu li ul {
        padding: 0;
        background-color: color-mix(in srgb, var(--default-color), transparent 97%);
    }

    .navmenu .megamenu-2 .mobile-megamenu li ul li a {
        padding-left: 35px;
        font-size: 14px;
        font-weight: 400;
    }

    .navmenu .megamenu-2 .mobile-megamenu.dropdown-active {
        display: block;
    }
}

/* Products Mega Menu 1 - Desktop */
@media (min-width: 1200px) {
    .navmenu .products-megamenu-1 {
        position: static;
        /*  Hide Desktop Mega Menu 1 in Desktop */
        /* Bootstrap Tabs Navigation */
        /* Tab Content */
    }

    .navmenu .products-megamenu-1 .mobile-megamenu {
        display: none;
    }

    .navmenu .products-megamenu-1 .desktop-megamenu,
    .navmenu .products-megamenu-1 .active,
    .navmenu .products-megamenu-1 .active:focus {
        background-color: var(--nav-dropdown-background-color);
    }

    .navmenu .products-megamenu-1 .desktop-megamenu {
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        border-radius: 6px;
        z-index: 99;
        padding: 20px;
        display: flex;
        flex-direction: column;
        max-height: 80vh;
        overflow: hidden;
    }

    .navmenu .products-megamenu-1:hover>.desktop-megamenu {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .products-megamenu-1 .megamenu-tabs {
        margin-bottom: 15px;
    }

    .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs {
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-item {
        margin-bottom: 0;
    }

    .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link {
        border: none;
        padding: 10px 20px;
        color: var(--nav-dropdown-color);
        font-weight: 500;
        font-size: 15px;
        transition: 0.3s;
        background-color: transparent;
        border-bottom: 2px solid transparent;
    }

    .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link:hover {
        color: var(--nav-dropdown-hover-color);
        border-color: transparent;
    }

    .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link.active {
        color: var(--accent-color);
        background-color: transparent;
        border-bottom: 2px solid var(--accent-color);
        font-size: 18px;
    }

    .navmenu .products-megamenu-1 .megamenu-content {
        flex: 1;
        overflow-y: auto;
        padding-right: 5px;
        /* Hide scrollbar for Chrome, Safari and Opera */
        /* Category Grid */
        /* Product Grid */
    }

    .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar {
        width: 5px;
    }

    .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-track {
        background: color-mix(in srgb, var(--default-color), transparent 95%);
        border-radius: 10px;
    }

    .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-thumb {
        background: color-mix(in srgb, var(--default-color), transparent 80%);
        border-radius: 10px;
    }

    .navmenu .products-megamenu-1 .megamenu-content .tab-content {
        display: none;
    }

    .navmenu .products-megamenu-1 .megamenu-content .tab-content.active {
        display: block;
    }

    .navmenu .products-megamenu-1 .megamenu-content .category-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column {
        background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
        border-radius: 8px;
        padding: 15px;
        transition: 0.3s;
    }

    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column h4 {
        color: var(--heading-color);
        font-size: 16px;
        margin-bottom: 15px;
        font-weight: 600;
        padding-bottom: 10px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        position: relative;
    }

    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column h4:after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--accent-color);
    }

    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li {
        margin-bottom: 10px;
        background-color: none !important;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: start !important;
        width: 100%;
    }

    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li:last-child {
        margin-bottom: 0;
    }

    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a {
        color: var(--nav-dropdown-color);
        font-size: 14px;
        transition: 0.3s;
        padding: 0 0 0 20px;
        display: block;
        position: relative;
        background-color: transparent;
    }

    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:before {
        content: "\f285";
        font-family: "bootstrap-icons";
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 12px;
        color: var(--accent-color);
        opacity: 0.7;
    }

    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover {
        color: var(--nav-dropdown-hover-color);
        transform: translateX(3px);
    }

    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover:before {
        opacity: 1;
    }

    .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column .active {
        background-color: none;
    }

    .navmenu .products-megamenu-1 .megamenu-content .product-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding-top: 10px;
    }

    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card {
        background-color: var(--surface-color);
        overflow: hidden;
    }

    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card:hover .product-image img {
        transform: scale(1.1);
    }

    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image {
        height: 220px;
        position: relative;
        overflow: hidden;
    }

    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new,
    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 3px 8px;
        font-size: 11px;
        font-weight: 600;
        border-radius: 3px;
        z-index: 1;
    }

    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new {
        background-color: #28a745;
        color: white;
    }

    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
        background-color: #dc3545;
        color: white;
    }

    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info {
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info h5 {
        margin: 0 0 5px;
        font-size: 15px;
        font-weight: 600;
        color: var(--heading-color);
        text-align: center;
    }

    /* Info text style */
    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .info {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 14px;
        text-align: center;
    }


    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .info .original-price {
        text-decoration: line-through;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-right: 5px;
        font-weight: normal;
    }

    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view {
        display: inline-block;
        padding: 5px 12px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
        color: var(--accent-color);
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
        transition: 0.3s;
    }

    .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
}

/* Products Mega Menu 1 - Mobile */
@media (max-width: 1199px) {
    .navmenu .products-megamenu-1 {
        /* Hide Desktop Mega Menu 1 in Mobile */
    }

    .navmenu .products-megamenu-1 .desktop-megamenu {
        display: none;
    }

    .navmenu .products-megamenu-1 .mobile-megamenu {
        position: static;
        display: none;
        z-index: 99;
        padding: 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;
        border-radius: 4px;
        overflow: hidden;
    }

    .navmenu .products-megamenu-1 .mobile-megamenu li {
        position: relative;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .navmenu .products-megamenu-1 .mobile-megamenu li:last-child {
        border-bottom: none;
    }

    .navmenu .products-megamenu-1 .mobile-megamenu li a {
        padding: 12px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--nav-dropdown-color);
        font-size: 15px;
        transition: 0.3s;
    }

    .navmenu .products-megamenu-1 .mobile-megamenu li a:hover {
        color: var(--nav-dropdown-hover-color);
        background-color: color-mix(in srgb, var(--default-color), transparent 97%);
    }

    .navmenu .products-megamenu-1 .mobile-megamenu li ul {
        padding: 0;
    }

    .navmenu .products-megamenu-1 .mobile-megamenu.dropdown-active {
        display: block;
    }
}

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

.footer .footer-newsletter {
    background-color: #2e2e2e;
    padding: 60px 0;
}

.footer .footer-newsletter h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer .footer-newsletter p {
    font-size: 16px;
    margin-bottom: 30px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .footer-newsletter .newsletter-form {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

.footer .footer-newsletter .newsletter-form input[type=email] {
    height: 54px;
    border-radius: 50px;
    padding: 10px 25px;
    width: 100%;
    color: var(--default-color);
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer .footer-newsletter .newsletter-form input[type=email]::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.footer .footer-newsletter .newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 0 30px;
    font-weight: 600;
    font-size: 15px;
}

.footer .footer-newsletter .newsletter-form button:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-main {
    padding: 70px 0 40px;
}

.footer .footer-main .footer-widget {
    margin-bottom: 30px;
}

.footer .footer-main .footer-widget .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer .footer-main .footer-widget .logo img {
    max-height: 36px;
    margin-right: 8px;
}


.footer .footer-main .footer-widget .logo span {
    color: var(--heading-color);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: var(--heading-font);
}

.footer .footer-main .footer-widget p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer .footer-main .footer-widget h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer .footer-main .footer-widget h5 {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.footer .footer-main .footer-contact .contact-item i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 12px;
    margin-top: 3px;
}

.footer .footer-main .footer-contact .contact-item span {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.5;
}

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

.footer .footer-main .footer-links li {
    margin-bottom: 16px;
}

.footer .footer-main .footer-links a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer .footer-main .footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer .footer-main .footer-links a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

.footer .footer-main .footer-links a:hover:before {
    width: 100%;
}

.footer .footer-main .app-buttons {
    /* display: flex; */
    gap: 10px;
    margin-top: 15px;
}

.footer .footer-main .app-buttons .app-btn {
    display: flex;
    align-items: center;
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    padding: 15px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer .footer-main .app-buttons .app-btn i {
    font-size: 20px;
    margin-right: 8px;
}

.footer .footer-main .app-buttons .app-btn span {
    font-size: 13px;
    font-weight: 500;
}

.footer .footer-main .app-buttons .app-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    color: var(--contrast-color);
}

.footer .footer-main .social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer .footer-main .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer .footer-main .social-icons a:hover {
    background-color: var(--accent-color);
    transform: rotate(360deg);
    color: var(--contrast-color);
}

.footer .footer-bottom {
    background-color: #1d1d1d;
    padding: 25px 0;
}

.footer .footer-bottom .payment-methods {
    display: flex;
    align-items: center;
}

.footer .footer-bottom .payment-methods span {
    margin-right: 15px;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-bottom .payment-methods .payment-icons {
    display: flex;
    gap: 12px;
}

.footer .footer-bottom .payment-methods .payment-icons i {
    font-size: 22px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: color 0.3s ease;
}

.footer .footer-bottom .payment-methods .payment-icons i:hover {
    color: var(--accent-color);
}

.footer .footer-bottom .copyright {
    padding-top: 10px;
}

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

.footer .footer-bottom .copyright p strong {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-bottom .credits {
    text-align: center;
    padding-top: 5px;
}

.footer .footer-bottom .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0 15px 0;
}

.footer .footer-bottom .legal-links a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 13px;
    transition: color 0.3s ease;
}

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

@media (max-width: 991.98px) {
    .footer .footer-newsletter {
        padding: 50px 0;
    }

    .footer .footer-newsletter h2 {
        font-size: 28px;
    }

    .footer .footer-main {
        padding: 60px 0 30px;
    }
}

@media (max-width: 767.98px) {
    .footer .footer-newsletter {
        padding: 40px 0;
    }

    .footer .footer-newsletter h2 {
        font-size: 24px;
    }

    .footer .footer-newsletter p {
        font-size: 15px;
    }

    .footer .footer-newsletter .newsletter-form button {
        padding: 0 20px;
        font-size: 14px;
    }

    .footer .footer-bottom .payment-methods {
        justify-content: center;
        margin-bottom: 15px;
    }

    .footer .footer-bottom .copyright {
        text-align: center;
    }

    .footer .app-buttons {
        justify-content: center;
    }

    .footer .social-icons {
        justify-content: center;
    }
}

.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;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 160px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.page-title .heading p {
    color: #fff;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 20px 0;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
    padding: 0;
}

.hero-3 .carousel {
    width: 100%;
    min-height: 88vh;
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.hero-3 img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-3 .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-3 .carousel-item:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 90%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-3 .carousel-container {
    position: absolute;
    inset: 90px 100px;
    display: flex;
    max-width: 1000px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}

@media (max-width: 575px) {
    .hero-3 .carousel-container {
        inset: 90px 50px;
    }
}

.hero-3 h2 {
    margin-bottom: 30px;
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

.hero-3 h2 span {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-3 h2 {
        font-size: 30px;
    }

    .page-title .heading h1 {
        font-size: 26px;
    }
}

.hero-3 p {
    font-size: 18px;
    color: #d9d9d9;
}

.hero-3 .btn-get-started {
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0;
    align-self: flex-start;
    flex-shrink: 0;
    border: 2px solid var(--accent-color);
}

.hero-3 .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-3 .carousel-control-prev,
.hero-3 .carousel-control-next {
    width: 10%;
    transition: 0.3s;
    opacity: 0.5;
    z-index: 3;
}

.hero-3 .carousel-control-prev:focus,
.hero-3 .carousel-control-next:focus {
    opacity: 0.5;
}

.hero-3 .carousel-control-prev:hover,
.hero-3 .carousel-control-next:hover {
    opacity: 0.9;
}

@media (min-width: 1024px) {

    .hero-3 .carousel-control-prev,
    .hero-3 .carousel-control-next {
        width: 5%;
    }
}

.hero-3 .carousel-control-next-icon,
.hero-3 .carousel-control-prev-icon {
    background: none;
    font-size: 62px;
    line-height: 1;
    font-weight: 100;
}

.hero-3 .carousel-indicators {
    list-style: none;
}

.hero-3 .carousel-indicators li {
    cursor: pointer;
    opacity: 1;
    height: 6px;
    width: 40px;
    transition: 0.3s;
    padding: 0;
}

.hero-3 .carousel-indicators .active {
    background-color: var(--accent-color);
    width: 80px;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
    --background-color: #f7f8fb;
}

.services-2 .services-showcase {
    margin-bottom: 6rem;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-2 .services-showcase .featured-service {
    position: relative;
    height: 736px;
    overflow: hidden;
}

.services-2 .services-showcase .featured-service .service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-2 .services-showcase .featured-service .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.services-2 .services-showcase .featured-service .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.services-2 .services-showcase .featured-service .service-overlay .overlay-content {
    text-align: center;
    color: var(--contrast-color);
    padding: 2rem;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.services-2 .services-showcase .featured-service .service-overlay .overlay-content h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--contrast-color);
}

.services-2 .services-showcase .featured-service .service-overlay .overlay-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-2 .services-showcase .featured-service .service-overlay .overlay-content .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--contrast-color);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid var(--contrast-color);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.services-2 .services-showcase .featured-service .service-overlay .overlay-content .service-link i {
    transition: transform 0.3s ease;
}

.services-2 .services-showcase .featured-service .service-overlay .overlay-content .service-link:hover {
    color: var(--contrast-color);
    border-color: transparent;
}

.services-2 .services-showcase .featured-service .service-overlay .overlay-content .service-link:hover i {
    transform: translateX(5px);
}

.services-2 .services-showcase .featured-service:hover .service-overlay {
    opacity: 1;
}

.services-2 .services-showcase .featured-service:hover .service-overlay .overlay-content {
    transform: translateY(0);
}

.services-2 .services-showcase .featured-service:hover .service-image img {
    transform: scale(1.05);
}

.services-2 .services-showcase .services-list {
    display: flex;
    flex-direction: column;
    background: var(--surface-color);
}

.services-2 .services-showcase .services-list .service-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3.85rem 4rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
}

.services-2 .services-showcase .services-list .service-item:last-child {
    border-bottom: none;
}

.services-2 .services-showcase .services-list .service-item:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateX(10px);
}

.services-2 .services-showcase .services-list .service-item .service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
}

.services-2 .services-showcase .services-list .service-item .service-icon i {
    font-size: 3rem;
    color: var(--accent-color);
}

.services-2 .services-showcase .services-list .service-item .service-content h4 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.services-2 .services-showcase .services-list .service-item .service-content h4 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-2 .services-showcase .services-list .service-item .service-content h4 a:hover {
    color: var(--accent-color);
}

.services-2 .services-showcase .services-list .service-item .service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    margin-top: 20px;
}

.services-2 .additional-services .service-card {
    background: var(--surface-color);
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-2 .additional-services .service-card .card-image {
    overflow: hidden;
    height: 250px;
}

.services-2 .additional-services .service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.services-2 .additional-services .service-card .card-body {
    padding: 2.5rem 2rem;
}

.services-2 .additional-services .service-card .card-body h4 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.services-2 .additional-services .service-card .card-body h4 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-2 .additional-services .service-card .card-body h4 a:hover {
    color: var(--accent-color);
}

.services-2 .additional-services .service-card .card-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
}

.services-2 .additional-services .service-card .card-body .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.services-2 .additional-services .service-card .card-body .read-more i {
    transition: transform 0.3s ease;
}

.services-2 .additional-services .service-card .card-body .read-more:hover {
    color: var(--heading-color);
}

.services-2 .additional-services .service-card .card-body .read-more:hover i {
    transform: translateX(3px);
}

.services-2 .additional-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-2 .additional-services .service-card:hover .card-image img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .services-2 .services-showcase .featured-service {
        height: 400px;
        margin-bottom: 2rem;
    }

    .services-2 .services-showcase .featured-service .service-overlay .overlay-content {
        padding: 1.5rem;
    }

    .services-2 .services-showcase .featured-service .service-overlay .overlay-content h3 {
        font-size: 2rem;
    }

    .services-2 .services-showcase .services-list .service-item {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .services-2 {
        padding: 80px 0;
    }

    .services-2 .intro-content {
        margin-bottom: 3rem;
    }

    .services-2 .services-showcase {
        margin-bottom: 4rem;
    }

    .services-2 .services-showcase .services-list .service-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .services-2 .services-showcase .services-list .service-item .service-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .services-2 .additional-services .service-card .card-body {
        padding: 2rem 1.5rem;
    }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
    position: relative;
    padding-bottom: 100px;
}

.about-2 .about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-2 .about-content h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}

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

.about-2 .about-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-2 .achievement-boxes .achievement-box {
    background-color: var(--surface-color);
    border-left: 1px solid var(--accent-color);
    padding: 4.8rem 1.2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.about-2 .achievement-boxes .achievement-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-2 .achievement-boxes .achievement-box h3 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--accent-color);
}

.about-2 .achievement-boxes .achievement-box p {
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 500;
}

.about-2 .certifications h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-2 .certifications img {
    transition: transform 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.about-2 .certifications img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.about-2 .cta-container .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-2 .cta-container .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 color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about-2 .about-image {
    position: relative;
}

.about-2 .about-image .main-image {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.about-2 .about-image .image-overlay {
    position: absolute;
    bottom: -60px;
    right: -30px;
    width: 50%;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-2 .about-image .image-overlay img {
    border: 5px solid var(--background-color);
}

.about-2 .about-image .experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1.5rem;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about-2 .about-image .experience-badge span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-2 .about-image .experience-badge p {
    font-size: 0.8rem;
    margin-bottom: 0;
    margin-top: 0.3rem;
}

@media (max-width: 991.98px) {
    .about-2 .about-image {
        margin-top: 3rem;
    }

    .about-2 .about-image .image-overlay {
        bottom: -40px;
        right: -20px;
    }

    .about-2 .about-image .experience-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
        left: -20px;
    }

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

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

@media (max-width: 767.98px) {
    .about-2 .achievement-boxes .achievement-box {
        padding: 3rem 1rem;
    }

    .about-2 .achievement-boxes .achievement-box h3 {
        font-size: 2.6rem;
    }

    .about-2 .achievement-boxes .achievement-box p {
        font-size: 1rem;
    }

    .about-2 .about-image .image-overlay {
        bottom: -30px;
        right: 0;
        width: 40%;
    }
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    background-color: #f7f8fb;
    padding-bottom: 120px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments {
    padding-top: 120px;
    padding-bottom: 120px;
}

.departments .section-label {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0;
    display: block;
}

.departments .medical-specialties {
    margin-top: 3rem;
}

.departments .specialty-navigation {
    margin-bottom: 2rem;
}

.departments .specialty-navigation .nav-pills {
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
}

@media (max-width: 768px) {
    .departments .specialty-navigation .nav-pills {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.departments .specialty-navigation .department-tab {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    border: none;
    border-radius: 0;
    color: var(--default-color);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

@media (max-width: 992px) {
    .departments .specialty-navigation .department-tab {
        font-size: 1rem;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .departments .specialty-navigation .department-tab {
        width: 100%;
        margin-bottom: 0;
    }
}

.departments .specialty-navigation .department-tab:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.departments .specialty-navigation .department-tab.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.departments .specialty-navigation .department-tab.active::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--accent-color);
}

@media (max-width: 768px) {
    .departments .specialty-navigation .department-tab.active::after {
        display: none;
    }
}

.departments .department-content {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 3rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .departments .department-content {
        padding: 2rem 1.5rem;
    }
}

.departments .department-layout {
    align-items: stretch;
}

.departments .department-image {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.departments .department-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.departments .department-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .departments .department-image {
        height: 300px;
        margin-bottom: 2rem;
    }
}

.departments .department-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .departments .department-info {
        height: auto;
    }
}

.departments .department-title {
    color: var(--heading-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .departments .department-title {
        font-size: 1.8rem;
    }
}

.departments .department-description {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.departments .service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.departments .service-item:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateY(-2px);
}

.departments .service-icon {
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.departments .service-icon i {
    color: var(--contrast-color);
    font-size: 1.5rem;
}

.departments .service-content {
    flex: 1;
}

.departments .service-content h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

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

.departments .tab-pane {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.departments .tab-pane.show.active {
    opacity: 1;
    transform: translateY(0);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
    padding: 120px 0;
}

.services .services-row {
    position: relative;
}

.services .services-headline {
    margin-bottom: 25px;
    margin-top: 60px;
}

.services .services-headline .services-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.services .services-headline .services-title {
    color: var(--heading-color);
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.services .services-description {
    margin-bottom: 30px;
}

.services .services-description p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.services .services-image-container {
    position: relative;
    margin-bottom: 30px;
}

.services .services-image-container .services-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: auto;
}

.services .services-image-container .services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services .services-grid {
    margin-left: 50px;
}

@media (max-width: 991px) {
    .services .services-grid {
        margin-left: 0;
        margin-top: 70px;
    }
}

.services .service-card {
    background-color: #fff;
    border-radius: 25px;
    padding: 30px 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(154, 154, 154, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.services .service-card:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.services .service-card:hover .service-icon {
    color: var(--contrast-color);
    transform: scale(0.95);
}

.services .service-card:hover .service-info h3 a,
.services .service-card:hover .service-info p {
    color: var(--contrast-color);
    transform: scale(0.95);
}

.services .service-card:hover .service-content .read-more-btn {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 84%);
    color: var(--contrast-color);
}

.services .service-content .service-icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    margin: 0 auto;
    font-size: 48px;
    color: var(--heading-color);
    transition: all 0.3s ease;
}

.services .service-content .service-info h3 {
    font-size: 2rem;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.services .service-content .service-info h3 a {
    color: var(--heading-color);
    text-decoration: none;
}

.services .service-content .service-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.services .service-content .service-action {
    margin-top: 20px;
}

.services .service-content .service-action .read-more-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.services .service-content .service-action .read-more-btn:hover {
    transform: translateX(5px);
}

.services .service-content .service-action .read-more-btn i {
    margin-left: 5px;
}

@media (max-width: 767px) {
    .services .services-headline .services-title {
        font-size: 2rem;
    }

    .services .services-image-container .services-image {
        height: 350px;
    }

    .services .services-image-container .circular-btn {
        bottom: -40px;
        right: 50%;
        transform: translateX(50%);
    }

    .services .services-image-container .circular-btn .circular-link {
        width: 130px;
        height: 130px;
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# Posts Slider Section
--------------------------------------------------------------*/
.posts-slider {
    --background-color: #f7f8fb;
    padding-top: 80px;
    background: #f7f8fb;
    padding-bottom: 80px;
}

.posts-slider .blog-posts-slider .swiper-wrapper {
    height: auto !important;
}

.posts-slider .blog-posts-slider .swiper-pagination {
    position: relative;
    margin-top: 50px;
}

.posts-slider .blog-posts-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: color-mix(in srgb, var(--default-color), transparent 70%);
    opacity: 1;
    transition: all 0.3s ease;
}

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

.posts-slider .blog-card {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.posts-slider .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.posts-slider .blog-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.posts-slider .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.posts-slider .blog-image .category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.posts-slider .blog-image:hover img {
    transform: scale(1.05);
}

.posts-slider .blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .posts-slider .blog-content {
        padding: 25px;
    }
}

.posts-slider .author-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.posts-slider .author-info .author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.posts-slider .author-info .author-details {
    display: flex;
    flex-direction: column;
}

.posts-slider .author-info .author-details .author-name {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 14px;
    margin-bottom: 2px;
}

.posts-slider .author-info .author-details .publish-date {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.posts-slider h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .posts-slider h3 {
        font-size: 18px;
    }
}

.posts-slider h3 a {
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.posts-slider h3 a:hover {
    color: var(--accent-color);
}

.posts-slider p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 25px;
    flex: 1;
}

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

@media (max-width: 576px) {
    .posts-slider .blog-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

.posts-slider .reading-time {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.posts-slider .reading-time i {
    margin-right: 5px;
    font-size: 14px;
}

.posts-slider .btn-read-more {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 10%));
    color: var(--contrast-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.posts-slider .btn-read-more span {
    margin-right: 8px;
}

.posts-slider .btn-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.posts-slider .btn-read-more:hover {
    transform: translateX(5px);
    background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), #000 10%), var(--accent-color));
    color: var(--contrast-color);
}

.posts-slider .btn-read-more:hover i {
    transform: translateX(3px);
}

@media (max-width: 576px) {
    .posts-slider .btn-read-more {
        align-self: flex-end;
    }
}

/*--------------------------------------------------------------
# About Home Section
--------------------------------------------------------------*/
.about-home .content-wrapper {
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-home .content-wrapper .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
    color: var(--contrast-color);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.about-home .content-wrapper .section-badge i {
    font-size: 1rem;
}

.about-home .content-wrapper h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

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

.about-home .content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
}

.about-home .content-wrapper .highlight-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 576px) {
    .about-home .content-wrapper .highlight-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.about-home .content-wrapper .highlight-stats .stat-item .stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-home .content-wrapper .highlight-stats .stat-item .stat-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
}

.about-home .content-wrapper .amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.about-home .content-wrapper .amenities-list .amenity-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about-home .content-wrapper .amenities-list .amenity-tag i {
    font-size: 0.9rem;
}

.about-home .content-wrapper .cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-home .content-wrapper .cta-group .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about-home .content-wrapper .cta-group .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
    color: var(--contrast-color);
}

.about-home .content-wrapper .cta-group .btn-primary:hover i {
    transform: translateX(3px);
}

.about-home .content-wrapper .cta-group .btn-primary i {
    transition: transform 0.3s ease;
}

.about-home .content-wrapper .cta-group .btn-outline {
    padding: 16px 24px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-home .content-wrapper .cta-group .btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .about-home .content-wrapper {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .about-home .content-wrapper .highlight-stats {
        justify-content: center;
    }

    .about-home .content-wrapper .amenities-list {
        justify-content: center;
    }

    .about-home .content-wrapper .cta-group {
        justify-content: center;
    }
}

.about-home .visual-section {
    position: relative;
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.about-home .visual-section .main-image-container {
    position: relative;
    flex: 1;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
}

.about-home .visual-section .main-image-container .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-home .visual-section .main-image-container .image-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 2rem;
}

.about-home .visual-section .main-image-container .image-overlay-content .award-badge {
    background-color: var(--surface-color);
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-home .visual-section .main-image-container .image-overlay-content .award-badge .award-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.about-home .visual-section .main-image-container .image-overlay-content .award-badge .award-text {
    display: flex;
    flex-direction: column;
}

.about-home .visual-section .main-image-container .image-overlay-content .award-badge .award-text .award-title {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.95rem;
}

.about-home .visual-section .main-image-container .image-overlay-content .award-badge .award-text .award-year {
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-home .visual-section .secondary-images {
    display: flex;
    height: 120px;
    gap: 1px;
}

.about-home .visual-section .secondary-images .secondary-image {
    flex: 1;
    overflow: hidden;
}

.about-home .visual-section .secondary-images .secondary-image:first-child {
    border-radius: 0 0 0 24px;
}

.about-home .visual-section .secondary-images .secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-home .visual-section .secondary-images .secondary-image img:hover {
    transform: scale(1.05);
}

.about-home .visual-section .floating-experience {
    position: absolute;
    bottom: 140px;
    left: -2rem;
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    z-index: 2;
}

.about-home .visual-section .floating-experience .experience-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.about-home .visual-section .floating-experience .experience-content p {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.about-home .visual-section .floating-experience .experience-content .rating-stars {
    display: flex;
    gap: 0.2rem;
}

.about-home .visual-section .floating-experience .experience-content .rating-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .about-home .visual-section {
        min-height: 500px;
        margin-top: 2rem;
    }

    .about-home .visual-section .main-image-container {
        border-radius: 16px 16px 0 0;
    }

    .about-home .visual-section .secondary-images .secondary-image:first-child {
        border-radius: 0 0 0 16px;
    }

    .about-home .visual-section .secondary-images .secondary-image:last-child {
        border-radius: 0 0 16px 0;
    }

    .about-home .visual-section .floating-experience {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 1rem;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .about-home .visual-section .secondary-images {
        flex-direction: column;
        height: 160px;
    }

    .about-home .visual-section .secondary-images .secondary-image:first-child {
        border-radius: 0;
    }

    .about-home .visual-section .secondary-images .secondary-image:last-child {
        border-radius: 0 0 16px 16px;
    }
}

@media (max-width: 992px) {
    .about-home .row {
        flex-direction: column-reverse;
    }
}

/*--------------------------------------------------------------
# Services 3 Section
--------------------------------------------------------------*/
.services-3 {
    background: #f7f8fb;
}

.services-3 .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

@media (min-width: 992px) {
    .services-3 .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}

.services-3 .service-item {
    background: var(--surface-color);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.services-3 .service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 60%), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.services-3 .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services-3 .service-item:hover::before {
    transform: scaleX(1);
}

.services-3 .service-item:hover .service-number {
    color: var(--accent-color);
    transform: scale(1.1);
}

.services-3 .service-item:hover .service-icon {
    transform: scale(1.05);
    background: var(--accent-color);
}

.services-3 .service-item:hover .service-icon i {
    color: var(--contrast-color);
}

.services-3 .service-item:hover .service-cta {
    transform: translateX(8px);
    color: var(--accent-color);
}

.services-3 .service-item.featured {
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 3%));
    border-color: var(--accent-color);
    transform: scale(1.02);
}

.services-3 .service-item.featured .featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-3 .service-item.featured::before {
    transform: scaleX(1);
}

.services-3 .service-item.featured .service-number {
    color: var(--accent-color);
}

.services-3 .service-item .service-number {
    font-size: 14px;
    font-weight: 300;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.services-3 .service-item .service-icon {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.services-3 .service-item .service-icon i {
    font-size: 24px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.services-3 .service-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.services-3 .service-item p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.services-3 .service-item .service-cta {
    display: inline-flex;
    align-items: center;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.services-3 .service-item .service-cta span {
    margin-right: 8px;
}

.services-3 .service-item .service-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.services-3 .service-item .service-cta:hover i {
    transform: translateX(3px);
}

.services-3 .services-footer {
    background: var(--surface-color);
    padding: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 768px) {
    .services-3 .services-footer {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
}

.services-3 .services-footer .footer-content {
    flex: 1;
}

.services-3 .services-footer .footer-content h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.services-3 .services-footer .footer-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.services-3 .services-footer .primary-cta {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 10%));
    color: var(--contrast-color);
    padding: 18px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services-3 .services-footer .primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
    color: var(--contrast-color);
}

.services-3 .services-footer .primary-cta i {
    margin-left: 10px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.services-3 .services-footer .primary-cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .services-3 .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .services-3 .service-item {
        padding: 30px 25px;
    }

    .services-3 .service-item h3 {
        font-size: 22px;
    }

    .services-3 .service-item p {
        font-size: 14px;
    }

    .services-3 .services-footer .footer-content h4 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .services-3 .services-grid {
        gap: 25px;
    }

    .services-3 .service-item {
        padding: 25px 20px;
    }

    .services-3 .service-item .service-icon {
        width: 50px;
        height: 50px;
    }

    .services-3 .service-item .service-icon i {
        font-size: 20px;
    }

    .services-3 .services-footer {
        padding: 30px 20px;
    }

    .services-3 .services-footer .primary-cta {
        padding: 15px 25px;
        font-size: 14px;
    }
}

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

.steps-2 .timeline-container {
    position: relative;
    padding: 30px 0;
}

.steps-2 .timeline-track {
    position: relative;
    margin: 0 auto;
}

.steps-2 .timeline-track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--accent-color) 10%, var(--accent-color) 90%, transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.steps-2 .timeline-item {
    position: relative;
    margin-bottom: 60px;
}

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

.steps-2 .timeline-item.left .timeline-content {
    padding-right: 50px;
    text-align: right;
}

.steps-2 .timeline-item.left .timeline-content .timeline-marker {
    right: -35px;
}

.steps-2 .timeline-item.right .timeline-content {
    padding-left: 50px;
    margin-left: 50%;
}

.steps-2 .timeline-item.right .timeline-content .timeline-marker {
    left: -35px;
}

.steps-2 .timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.steps-2 .timeline-item:hover .timeline-marker .step-icon {
    color: var(--contrast-color);
}

.steps-2 .timeline-item:hover .timeline-body {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.steps-2 .timeline-content {
    position: relative;
    width: 50%;
}

.steps-2 .timeline-marker {
    position: absolute;
    top: 15px;
    width: 70px;
    height: 70px;
    background-color: var(--surface-color);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.steps-2 .timeline-marker .step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 3;
    border: 3px solid var(--surface-color);
}

.steps-2 .timeline-marker .step-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.steps-2 .timeline-body {
    background-color: var(--surface-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.steps-2 .timeline-body 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-2 .timeline-track::before {
        left: 30px;
    }

    .steps-2 .timeline-item.left .timeline-content,
    .steps-2 .timeline-item.right .timeline-content {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        margin-left: 0;
        text-align: left;
    }

    .steps-2 .timeline-item.left .timeline-content .timeline-marker,
    .steps-2 .timeline-item.right .timeline-content .timeline-marker {
        left: 0;
        right: auto;
    }
}

@media (max-width: 767px) {
    .steps-2 .timeline-item {
        margin-bottom: 50px;
    }

    .steps-2 .timeline-marker {
        width: 60px;
        height: 60px;
    }

    .steps-2 .timeline-marker .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .steps-2 .timeline-marker .step-icon {
        font-size: 1.3rem;
    }

    .steps-2 .timeline-body {
        padding: 20px;
    }

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

    .steps-2 .timeline-body p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .steps-2 .timeline-marker {
        width: 50px;
        height: 50px;
    }

    .steps-2 .timeline-marker .step-icon {
        font-size: 1.1rem;
    }

    .steps-2 .timeline-item.left .timeline-content,
    .steps-2 .timeline-item.right .timeline-content {
        padding-left: 70px;
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--heading-color), transparent 95%) 100%);
    position: relative;
    overflow: hidden;
    padding: 150px 0px;
}

.call-to-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../img/google.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.8;
    z-index: 1;
}

.call-to-action .container {
    position: relative;
    z-index: 2;
}

.call-to-action .cta-wrapper {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

@media (max-width: 768px) {
    .call-to-action .cta-wrapper {
        padding: 40px 30px;
    }
}

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

@media (max-width: 768px) {
    .call-to-action .cta-content h2 {
        font-size: 2.2rem;
    }
}

.call-to-action .cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.call-to-action .cta-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: color-mix(in srgb, #787878, transparent 95%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.call-to-action .cta-stats .stat-item:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    transform: translateY(-2px);
}

.call-to-action .cta-stats .stat-item i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.call-to-action .cta-stats .stat-item .stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.call-to-action .cta-stats .stat-item .stat-content .stat-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1;
}

.call-to-action .cta-stats .stat-item .stat-content .stat-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 576px) {
    .call-to-action .cta-stats .row {
        flex-direction: column;
    }

    .call-to-action .cta-stats .stat-item {
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
}

.call-to-action .cta-actions {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.call-to-action .cta-actions .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.call-to-action .cta-actions .action-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-to-action .cta-actions .action-buttons .btn i {
    font-size: 1.2rem;
}

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

.call-to-action .cta-actions .action-buttons .btn.btn-primary:hover {
    background: 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 .cta-actions .action-buttons .btn.btn-outline {
    background: transparent;
    color: var(--heading-color);
    border: 2px solid var(--heading-color);
}

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

.call-to-action .cta-actions .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.call-to-action .cta-actions .contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: color-mix(in srgb, var(--heading-color), transparent 95%);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.call-to-action .cta-actions .contact-info .contact-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.call-to-action .cta-actions .contact-info .contact-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.call-to-action .cta-actions .contact-info .contact-item div strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
}

.call-to-action .cta-actions .contact-info .contact-item div span {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .call-to-action .cta-actions {
        gap: 30px;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Resume 2 Section
--------------------------------------------------------------*/
.resume-2 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.resume-2 .section-header {
    margin-bottom: 2.5rem;
}

.resume-2 .section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.resume-2 .section-header h2 i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.resume-2 .section-header .section-subtitle {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 1rem;
    line-height: 1.6;
}

.resume-2 .experience-section {
    padding-right: 1.5rem;
}

.resume-2 .experience-section .experience-cards .experience-card {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 12px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resume-2 .experience-section .experience-cards .experience-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
}

.resume-2 .experience-section .experience-cards .experience-card:hover {
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
    transform: translateY(-5px);
}

.resume-2 .experience-section .experience-cards .experience-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.resume-2 .experience-section .experience-cards .experience-card .card-header .role-info h3 {
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.resume-2 .experience-section .experience-cards .experience-card .card-header .duration {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.resume-2 .experience-section .experience-cards .experience-card .card-body p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.resume-2 .experience-section .experience-cards .experience-card .card-body .achievements {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.resume-2 .experience-section .experience-cards .experience-card .card-body .achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    font-size: 0.9rem;
}

.resume-2 .experience-section .experience-cards .experience-card .card-body .achievements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.resume-2 .experience-section .experience-cards .experience-card .card-body .achievements li:last-child {
    margin-bottom: 0;
}

.resume-2 .education-section {
    padding-left: 1.5rem;
}

.resume-2 .education-section .education-timeline {
    position: relative;
}

.resume-2 .education-section .education-timeline .timeline-track {
    position: absolute;
    left: 1rem;
    top: 2rem;
    bottom: 2rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
}

.resume-2 .education-section .education-timeline .education-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2.5rem;
}

.resume-2 .education-section .education-timeline .education-item:last-child {
    margin-bottom: 0;
}

.resume-2 .education-section .education-timeline .education-item .timeline-marker {
    position: absolute;
    left: 0.5rem;
    top: 1.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--accent-color);
    border: 3px solid var(--surface-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.resume-2 .education-section .education-timeline .education-item .education-content {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.resume-2 .education-section .education-timeline .education-item .education-content:hover {
    box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.resume-2 .education-section .education-timeline .education-item .education-content .degree-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.resume-2 .education-section .education-timeline .education-item .education-content .degree-header h3 {
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.resume-2 .education-section .education-timeline .education-item .education-content .institution {
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.resume-2 .education-section .education-timeline .education-item .education-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {

    .resume-2 .experience-section,
    .resume-2 .education-section {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .resume-2 .section-header h2 {
        font-size: 1.6rem;
    }

    .resume-2 .experience-cards .experience-card .card-header {
        flex-direction: column;
        gap: 0.8rem;
    }

    .resume-2 .experience-cards .experience-card .card-header .duration {
        align-self: flex-start;
    }

    .resume-2 .education-timeline .education-item .education-content .degree-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .resume-2 .education-timeline .education-item .education-content .degree-header .year {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .resume-2 .section-header h2 {
        font-size: 1.4rem;
    }

    .resume-2 .section-header h2 i {
        font-size: 1.2rem;
    }

    .resume-2 .experience-cards .experience-card {
        padding: 1.3rem;
    }

    .resume-2 .education-timeline .timeline-track {
        left: 0.5rem;
    }

    .resume-2 .education-timeline .education-item {
        padding-left: 2rem;
    }

    .resume-2 .education-timeline .education-item .timeline-marker {
        left: 0;
    }
}

/*--------------------------------------------------------------
# Services 4 Section
--------------------------------------------------------------*/
.services-4 .service-card {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    position: relative;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.services-4 .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
    transition: left 0.5s ease;
}

.services-4 .service-card .service-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--contrast-color);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
    z-index: 2;
}

.services-4 .service-card .service-icon-wrapper {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.services-4 .service-card .service-icon-wrapper .service-icon {
    width: 70px;
    height: 70px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.services-4 .service-card .service-content {
    position: relative;
    z-index: 2;
}

.services-4 .service-card .service-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.services-4 .service-card .service-content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.services-4 .service-card .service-content .service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.services-4 .service-card .service-content .service-list li {
    padding: 6px 0;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.services-4 .service-card .service-content .service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.services-4 .service-card .service-content .service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.services-4 .service-card .service-content .service-pricing .price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.services-4 .service-card .service-content .service-pricing .price-tag::before {
    content: "From ";
    font-size: 12px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.services-4 .service-card .service-content .service-pricing .service-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 25px;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.services-4 .service-card .service-content .service-pricing .service-btn i {
    transition: transform 0.3s ease;
}

.services-4 .service-card .service-content .service-pricing .service-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.services-4 .service-card .service-content .service-pricing .service-btn:hover i {
    transform: translateX(3px);
}

.services-4 .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    border-color: var(--accent-color);
}

.services-4 .service-card:hover::before {
    left: 100%;
}

.services-4 .service-card:hover .service-icon-wrapper .service-icon {
    background: var(--accent-color);
    transform: rotate(5deg) scale(1.1);
}

.services-4 .service-card:hover .service-icon-wrapper .service-icon i {
    color: var(--contrast-color);
}

.services-4 .service-card.featured {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
    border-color: var(--accent-color);
    transform: scale(1.02);
}

.services-4 .service-card.featured .service-number {
    background: var(--contrast-color);
    color: var(--accent-color);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--contrast-color), transparent 60%);
}

.services-4 .service-card.featured .service-icon-wrapper .service-icon {
    background: var(--contrast-color);
}

.services-4 .service-card.featured .service-icon-wrapper .service-icon i {
    color: var(--accent-color);
}

.services-4 .service-card.featured .service-content h4 {
    color: var(--contrast-color);
}

.services-4 .service-card.featured .service-content p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.services-4 .service-card.featured .service-content .service-list li {
    color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.services-4 .service-card.featured .service-content .service-list li::before {
    background: var(--contrast-color);
}

.services-4 .service-card.featured .service-content .service-pricing {
    border-top-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.services-4 .service-card.featured .service-content .service-pricing .price-tag {
    color: var(--contrast-color);
}

.services-4 .service-card.featured .service-content .service-pricing .price-tag::before {
    color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.services-4 .service-card.featured .service-content .service-pricing .service-btn {
    background: var(--contrast-color);
    color: var(--accent-color);
    border-color: var(--contrast-color);
}

.services-4 .service-card.featured .service-content .service-pricing .service-btn:hover {
    background: transparent;
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}

.services-4 .service-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.services-4 .service-card.featured:hover .service-icon-wrapper .service-icon {
    background: var(--contrast-color);
    transform: rotate(-5deg) scale(1.1);
}

.services-4 .service-card.featured:hover .service-icon-wrapper .service-icon i {
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .services-4 .service-card {
        padding: 30px 20px;
    }

    .services-4 .service-card .service-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .services-4 .service-card .service-icon-wrapper .service-icon {
        width: 60px;
        height: 60px;
    }

    .services-4 .service-card .service-icon-wrapper .service-icon i {
        font-size: 28px;
    }

    .services-4 .service-card .service-content h4 {
        font-size: 20px;
    }

    .services-4 .service-card .service-content .service-pricing .price-tag {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .services-4 .service-card {
        padding: 25px 15px;
    }

    .services-4 .service-card .service-content .service-pricing {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .services-4 .service-card .service-content .service-pricing .service-btn {
        width: 100%;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .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 .faq-item:last-child {
    border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
    color: var(--accent-color);
    font-weight: 500;
}

.faq .faq-item.faq-active .faq-header h4 {
    color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
    color: var(--accent-color);
    transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
    opacity: 1;
    transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
    display: flex;
    align-items: center;
    padding: 40px 0;
    cursor: pointer;
    gap: 0;
    transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
    transform: scale(1.1);
}

.faq .faq-item .faq-header:hover .faq-toggle {
    transform: scale(1.1);
}

.faq .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 .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 .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 .faq-item .faq-header .faq-toggle i {
    position: absolute;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .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 .faq-item .faq-content .content-inner {
    padding: 0 80px 40px 80px;
    overflow: hidden;
}

.faq .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 .faq-item .faq-header {
        padding: 30px 0;
    }

    .faq .faq-item .faq-header .faq-number {
        width: 60px;
        font-size: 1rem;
    }

    .faq .faq-item .faq-header h4 {
        font-size: 1.1rem;
        margin-right: 15px;
    }

    .faq .faq-item .faq-header .faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }

    .faq .faq-item .faq-content .content-inner {
        padding: 0 60px 30px 60px;
    }

    .faq .faq-item .faq-content .content-inner p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .faq .faq-item .faq-header {
        padding: 25px 0;
    }

    .faq .faq-item .faq-header .faq-number {
        width: 50px;
        font-size: 0.9rem;
    }

    .faq .faq-item .faq-header h4 {
        font-size: 1rem;
        margin-right: 10px;
    }

    .faq .faq-item .faq-content .content-inner {
        padding: 0 50px 25px 50px;
    }

    .faq .faq-item .faq-content .content-inner p {
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.googlepain {
    padding-top: 60px;
    padding-bottom: 60px;
}

.googlepain .feature-showcase {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.googlepain .feature-showcase::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.googlepain .feature-showcase img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 1;
}

.googlepain .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.googlepain .feature-card {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.googlepain .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), var(--heading-color) 30%) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.googlepain .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 85%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.googlepain .feature-card:hover::before {
    transform: scaleX(1);
}

.googlepain .feature-card:hover .feature-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.googlepain .feature-card:hover .feature-icon i {
    color: var(--contrast-color);
}

.googlepain .feature-card .feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.googlepain .feature-card .feature-header .feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.googlepain .feature-card .feature-header .feature-icon i {
    font-size: 20px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.googlepain .feature-card .feature-header h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: var(--heading-color);
}

.googlepain .feature-card p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991.98px) {
    .googlepain .row {
        flex-direction: column-reverse;
    }

    .googlepain .feature-showcase {
        margin-top: 2rem;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .googlepain .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .googlepain .feature-card {
        padding: 1.25rem;
    }

    .googlepain .feature-card .feature-header .feature-icon {
        width: 40px;
        height: 40px;
    }

    .googlepain .feature-card .feature-header .feature-icon i {
        font-size: 18px;
    }

    .googlepain .feature-card .feature-header h4 {
        font-size: 15px;
    }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .service-item {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 93%);
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    border: 1px solid transparent;
    padding-bottom: 30px;
}

.cards .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 88%);
}

.cards .service-item:hover .image-container img {
    transform: scale(1.05);
}

.cards .service-item:hover .icon-box {
    background-color: var(--accent-color);
    transform: translateX(-50%) rotate(45deg);
    color: var(--contrast-color);
}

.cards .service-item:hover .icon-box i {
    transform: rotate(-45deg);
}

.cards .service-item .image-container {
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.cards .service-item .image-container img {
    transition: transform 0.4s ease;
}

.cards .service-item .icon-box {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 4px solid var(--surface-color);
    transition: all 0.3s ease;
    transform-origin: center;
}

.cards .service-item .icon-box i {
    transition: transform 0.3s ease;
}

.cards .service-item .content {
    padding: 50px 25px 25px 25px;
    text-align: center;
}

.cards .service-item .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cards .service-item .content h4 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.cards .service-item .content h4 a:hover {
    color: var(--accent-color);
}

.cards .service-item .content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.cards .service-item .content .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.cards .service-item .content .read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.cards .service-item .content .read-more:hover i {
    margin-left: 8px;
}

.cards .service-item.featured {
    border: 1px solid var(--accent-color);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.cards .service-item.featured .icon-box {
    background: var(--accent-color);
    color: var(--contrast-color);
}

@media (max-width: 576px) {
    .cards .service-item .content {
        padding: 40px 20px 20px 20px;
    }

    .cards .service-item .content h4 {
        font-size: 18px;
    }
}

.custom-cards .row {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    gap: 15px;
}

.custom-cards .col-lg-6, .custom-cards .col-xl-3 {
    flex: 0 0 19%;  
    max-width: 19%; 
    margin-bottom: 15px;
}


@media (max-width: 1200px) {
    .custom-cards .col-lg-6, .custom-cards .col-xl-3 {
        flex: 0 0 48%;  
        max-width: 48%;
    }
}

@media (max-width: 768px) {
    .custom-cards .col-lg-6, .custom-cards .col-xl-3 {
        flex: 0 0 100%; 
        max-width: 100%;
    }
}


/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .intro-block h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.features-2 .intro-block .lead {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.features-2 .features-list .feature-card {
    background: var(--surface-color);
    border: 2px dashed color-mix(in srgb, var(--accent-color), transparent 60%);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.features-2 .features-list .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.features-2 .features-list .feature-card:hover .icon-wrap {
    background: var(--accent-color);
}

.features-2 .features-list .feature-card:hover .icon-wrap i {
    color: var(--contrast-color);
}

.features-2 .features-list .feature-card .icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    transition: background 0.3s ease;
}

.features-2 .features-list .feature-card .icon-wrap i {
    font-size: 28px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.features-2 .features-list .feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.features-2 .features-list .feature-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.features-2 .images-stack {
    position: relative;
    width: 100%;
}

.features-2 .images-stack .main-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.features-2 .images-stack .main-img img {
    width: 100%;
    object-fit: cover;
}

.features-2 .images-stack .side-img {
    position: absolute;
    left: 5%;
    bottom: -10%;
    width: 40%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.features-2 .images-stack .side-img img {
    width: 100%;
    object-fit: cover;
}

.features-2 .images-stack .stats-badge {
    position: absolute;
    top: 10%;
    right: 8%;
    background: var(--surface-color);
    border-radius: 14px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-2 .images-stack .stats-badge i {
    font-size: 32px;
    color: var(--accent-color);
}

.features-2 .images-stack .stats-badge h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--heading-color);
}

.features-2 .images-stack .stats-badge span {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@media (max-width: 992px) {
    .features-2 .images-stack .side-img {
        width: 50%;
        bottom: -12%;
    }

    .features-2 .images-stack .stats-badge {
        top: 5%;
        right: 6%;
    }
}

@media (max-width: 768px) {
    .features-2 .images-stack .main-img img {
        height: 320px;
    }

    .features-2 .images-stack .side-img {
        display: none;
    }
}

@media (max-width: 768px) {
    .features-2 .intro-block h3 {
        font-size: 28px;
    }

    .features-2 .intro-block .lead {
        font-size: 15px;
    }

    .features-2 .features-list .feature-card {
        padding: 20px 18px;
    }

    .features-2 .features-list .feature-card .icon-wrap {
        width: 56px;
        height: 56px;
    }

    .features-2 .features-list .feature-card .icon-wrap i {
        font-size: 24px;
    }
}

@media (min-width: 992px) {
    .features-2 .images-stack {
        margin-bottom: 120px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 120px 0 60px 0;
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .hero-content {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 3;
}

.hero .google-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero .google-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--background-color), transparent 20%);
    z-index: 2;
}
.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

.hero .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    font-size: 1rem;
}

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

.hero .hero-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);
}

.hero .hero-buttons .btn.btn-outline {
    background-color: transparent;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

@media (max-width: 576px) {
    .hero .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
        min-height: 80vh;
    }

    .hero .hero-content {
        min-height: 80vh;
    }
}


/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-top: 80px;
    background-color: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 60px;
}

.blog-details .post-img {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.blog-details .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .blog-details .post-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-details .article-content {
        padding: 1.5rem;
    }
}

.blog-details .meta-categories {
    margin-bottom: 1rem;
}

.blog-details .meta-categories .category,
.blog-details .meta-categories .reading-time {
    display: inline-flex;
    align-items: center;
    margin-right: 1rem;
    font-size: 0.9rem;
    color: var(--heading-color);
}

.blog-details .meta-categories .category i,
.blog-details .meta-categories .reading-time i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.blog-details .title {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 700;
    margin: 1rem 0 1.5rem;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

@media (max-width: 768px) {
    .blog-details .title {
        font-size: 2rem;
    }
}

.blog-details .meta-top {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-top ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.blog-details .meta-top ul li {
    display: flex;
    align-items: center;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-top ul li i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.blog-details .meta-top ul li .author-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.blog-details .meta-top ul li a {
    color: var(--heading-color);
}

.blog-details .meta-top ul li a:hover {
    color: var(--accent-color);
}

.blog-details .content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-details .content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.blog-details .content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--heading-color);
}

.blog-details .content p {
    margin-bottom: 1.5rem;
}

.blog-details .content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.blog-details .content ul li {
    margin-bottom: 0.5rem;
}

.blog-details .content .content-image {
    margin: 2rem 0;
}

.blog-details .content .content-image img {
    width: 100%;
    border-radius: 8px;
}

.blog-details .content .content-image figcaption {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .content .content-image-split {
    margin: 2rem 0;
}

.blog-details .content .content-image-split img {
    border-radius: 8px;
}

.blog-details .content blockquote {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.blog-details .content blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--heading-color);
    margin: 0 0 1rem;
}

.blog-details .content blockquote cite {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-style: normal;
    display: block;
}

.blog-details .content blockquote cite:before {
    content: "— ";
}

.blog-details .meta-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-details .meta-bottom .article-tags {
    display: flex;
    align-items: center;
}

.blog-details .meta-bottom .article-tags i {
    margin-right: 0.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-bottom .article-tags .tags {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-details .meta-bottom .article-tags .tags li a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.9rem;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.blog-details .meta-bottom .article-tags .tags li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.blog-details .meta-bottom .article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-details .meta-bottom .article-share span {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-bottom .article-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.9rem;
    border-radius:20px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.blog-details .meta-bottom .article-share a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.blog-details .meta-bottom .article-share a i {
    font-size: 1rem;
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
    background: var(--surface-color);
    position: relative;
    padding: 100px 0px;
}

.call-to-action-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, color-mix(in srgb, var(--heading-color), transparent 97%) 100%);
    z-index: 1;
}

.call-to-action-2 .container {
    position: relative;
    z-index: 2;
}

.call-to-action-2 .cta-hero-content .badge-wrapper {
    margin-bottom: 2rem;
}

.call-to-action-2 .cta-hero-content .badge-wrapper .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.call-to-action-2 .cta-hero-content .badge-wrapper .cta-badge i {
    font-size: 1rem;
}

.call-to-action-2 .cta-hero-content h2 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 992px) {
    .call-to-action-2 .cta-hero-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .call-to-action-2 .cta-hero-content h2 {
        font-size: 2.2rem;
    }
}

.call-to-action-2 .cta-hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: color-mix(in srgb, #151515, transparent 10%);
    margin-bottom: 4.5rem;
}

.call-to-action-2 .cta-hero-content .feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.call-to-action-2 .cta-hero-content .feature-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-to-action-2 .cta-hero-content .feature-highlights .highlight-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.call-to-action-2 .cta-hero-content .feature-highlights .highlight-item span {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
}

.call-to-action-2 .cta-form-section .form-container {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 80px color-mix(in srgb, var(--default-color), transparent 88%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

@media (max-width: 768px) {
    .call-to-action-2 .cta-form-section .form-container {
        padding: 30px 25px;
    }
}

.call-to-action-2 .cta-form-section .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.call-to-action-2 .cta-form-section .form-header h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.call-to-action-2 .cta-form-section .form-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 1rem;
    margin: 0;
}

.call-to-action-2 .cta-form-section .form-group {
    margin-bottom: 1rem;
}

.call-to-action-2 .cta-form-section .form-group input,
.call-to-action-2 .cta-form-section .form-group select,
.call-to-action-2 .cta-form-section .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--default-color);
    background-color: var(--surface-color);
}

.call-to-action-2 .cta-form-section .form-group input:focus,
.call-to-action-2 .cta-form-section .form-group select:focus,
.call-to-action-2 .cta-form-section .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action-2 .cta-form-section .form-group input::placeholder,
.call-to-action-2 .cta-form-section .form-group select::placeholder,
.call-to-action-2 .cta-form-section .form-group textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.call-to-action-2 .cta-form-section .form-group select {
    cursor: pointer;
}

.call-to-action-2 .cta-form-section .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.call-to-action-2 .cta-form-section .form-actions {
    margin-top: 2rem;
    text-align: center;
}

.call-to-action-2 .cta-form-section .form-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.call-to-action-2 .cta-form-section .form-actions .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action-2 .cta-form-section .form-actions .btn-primary i {
    font-size: 1.2rem;
}

.call-to-action-2 .cta-form-section .form-actions .contact-alternative {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.call-to-action-2 .cta-form-section .form-actions .contact-alternative span {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.call-to-action-2 .cta-form-section .form-actions .contact-alternative .phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-to-action-2 .cta-form-section .form-actions .contact-alternative .phone-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
}

.call-to-action-2 .cta-form-section .form-actions .contact-alternative .phone-link i {
    font-size: 1rem;
}

.call-to-action-2 .cta-form-section .trust-indicators {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.call-to-action-2 .cta-form-section .trust-indicators .trust-item {
    text-align: center;
}

.call-to-action-2 .cta-form-section .trust-indicators .trust-item .trust-icon {
    margin-bottom: 10px;
}

.call-to-action-2 .cta-form-section .trust-indicators .trust-item .trust-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.call-to-action-2 .cta-form-section .trust-indicators .trust-item .trust-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.call-to-action-2 .cta-form-section .trust-indicators .trust-item .trust-content .trust-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.call-to-action-2 .cta-form-section .trust-indicators .trust-item .trust-content .trust-label {
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

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

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
    position: relative;
    padding-top: 80px;
    background:linear-gradient(135deg, color-mix(in srgb, #0467bd, transparent 95%) 50%, color-mix(in srgb, #1d5eb3, transparent 98%) 25%, transparent 50%);
}

.hero-4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, color-mix(in srgb, #0d2ee3, transparent 92%), transparent 40%);
    pointer-events: none;
}

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

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

.hero-4 .hero-content h1 .accent-text {
    color: var(--accent-color);
    font-size: 24px;
}

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

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

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

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

.hero-4 .company-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 500;
}

.hero-4 .company-badge i {
    font-size: 1.25rem;
}

.hero-4 .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-4 .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 20%);
    border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero-4 .btn-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-4 .btn-link:hover {
    color: var(--accent-color);
}

.hero-4 .btn-link i {
    font-size: 1.5rem;
    vertical-align: middle;
}

.hero-4 .hero-image {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-4 .hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-4 .customers-badge {
    position: absolute;
    bottom: 10px;
    right: 30px;
    background-color: var(--surface-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    animation: float-badge 3s ease-in-out infinite;
    will-change: transform;
}

.hero-4 .customers-badge .customer-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.hero-4 .customers-badge .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--surface-color);
    margin-left: -8px;
}

.hero-4 .customers-badge .avatar:first-child {
    margin-left: 0;
}

.hero-4 .customers-badge .avatar.more {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-4 .customers-badge p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
    .hero-4 .customers-badge {
        position: static;
        margin: 1rem auto;
        max-width: 250px;
    }
}

.hero-4 .stats-row {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    background-color: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
}

.hero-4 .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.hero-4 .stat-item .stat-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 50px;
    transition: 0.3s;
}

.hero-4 .stat-item .stat-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero-4 .stat-item:hover .stat-icon {
    background-color: var(--accent-color);
}

.hero-4 .stat-item:hover .stat-icon i {
    color: var(--contrast-color);
}

.hero-4 .stat-item .stat-content {
    flex-grow: 1;
}

.hero-4 .stat-item .stat-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.hero-4 .stat-item .stat-content p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

@media (max-width: 575px) {
    .hero-4 .stat-item {
        padding: 1.5rem;
    }
}

@keyframes float-badge {
    0% {
        transform: translateY(0);
    }

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

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

/*--------------------------------------------------------------
# Blog Posts 2 Section
--------------------------------------------------------------*/
.blog-posts-2 article {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.blog-posts-2 .post-img img {
    transition: 0.5s;
}

.blog-posts-2 .post-date {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    position: absolute;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.blog-posts-2 .post-content {
    padding: 30px;
}

.blog-posts-2 .post-title {
    font-size: 20px;
    color: var(--heading-color);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.blog-posts-2 .meta i {
    font-size: 16px;
    color: var(--accent-color);
}

.blog-posts-2 .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-2 p {
    margin-top: 20px;
}

.blog-posts-2 hr {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-bottom: 15px;
}

.blog-posts-2 .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts-2 .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.blog-posts-2 article:hover .post-title,
.blog-posts-2 article:hover .readmore {
    color: var(--accent-color);
}

.blog-posts-2 article:hover .post-img img {
    transform: scale(1.1);
}

.blog-posts-2 .post-img {
    height: 250px;
    overflow: hidden;
}

.blog-posts-2 .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-posts-2 .col-lg-4 {
    display: flex;
}

.blog-posts-2 article {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-posts-2 .post-content {
    flex: 1;
}

/*--------------------------------------------------------------
# Pagination 3 Section
--------------------------------------------------------------*/
.pagination-3 {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-3 ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination-3 li {
    margin: 0 5px;
    transition: 0.3s;
}

.pagination-3 li a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-3 li a.active,
.pagination-3 li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pagination-3 li a.active a,
.pagination-3 li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Call To Action 3 Section
--------------------------------------------------------------*/
.call-to-action-3 {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--heading-color), transparent 95%) 100%);
    position: relative;
    overflow: hidden;
}

.call-to-action-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../img/google.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 1;
}

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

.call-to-action-3 .cta-wrapper {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

@media (max-width: 768px) {
    .call-to-action-3 .cta-wrapper {
        padding: 40px 30px;
    }
}

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

@media (max-width: 768px) {
    .call-to-action-3 .cta-content h2 {
        font-size: 2.2rem;
    }
}

.call-to-action-3 .cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.call-to-action-3 .cta-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.call-to-action-3 .cta-stats .stat-item:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    transform: translateY(-2px);
}

.call-to-action-3 .cta-stats .stat-item i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.call-to-action-3 .cta-stats .stat-item .stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.call-to-action-3 .cta-stats .stat-item .stat-content .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.call-to-action-3 .cta-stats .stat-item .stat-content .stat-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 576px) {
    .call-to-action-3 .cta-stats .row {
        flex-direction: column;
    }

    .call-to-action-3 .cta-stats .stat-item {
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
}

.call-to-action-3 .cta-actions {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.call-to-action-3 .cta-actions .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.call-to-action-3 .cta-actions .action-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-to-action-3 .cta-actions .action-buttons .btn i {
    font-size: 1.2rem;
}

.call-to-action-3 .cta-actions .action-buttons .btn.btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

.call-to-action-3 .cta-actions .action-buttons .btn.btn-primary:hover {
    background: 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-3 .cta-actions .action-buttons .btn.btn-outline {
    background: transparent;
    color: var(--heading-color);
    border: 2px solid var(--heading-color);
}

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

.call-to-action-3 .cta-actions .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.call-to-action-3 .cta-actions .contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: color-mix(in srgb, var(--heading-color), transparent 95%);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.call-to-action-3 .cta-actions .contact-info .contact-item i {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.call-to-action-3 .cta-actions .contact-info .contact-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.call-to-action-3 .cta-actions .contact-info .contact-item div strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
}

.call-to-action-3 .cta-actions .contact-info .contact-item div span {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .call-to-action-3 .cta-actions {
        gap: 30px;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
    height: auto !important;
}

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

.service-details .service-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.service-details .service-header h1:after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
}

.service-details .service-header .service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 25px;
}

.service-details .service-header .service-meta span {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-header .service-meta span i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 16px;
}

.service-details .service-header .lead {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-tabs {
    margin-bottom: 50px;
}

.service-details .service-tabs .nav-tabs {
    border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
    margin-bottom: 30px;
}

.service-details .service-tabs .nav-tabs .nav-item {
    margin-right: 5px;
}

.service-details .service-tabs .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 12px 20px;
    font-weight: 600;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
    position: relative;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
    margin-right: 8px;
    font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
    color: var(--heading-color);
    background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
    width: 30%;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link.active:after {
    width: 100%;
}

.service-details .service-tabs .tab-content .content-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-details .service-tabs .tab-content img {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .process-timeline {
    position: relative;
    padding-left: 30px;
}

.service-details .service-tabs .tab-content .process-timeline:before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 15px;
    width: 2px;
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item {
    position: relative;
    padding-bottom: 35px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item:last-child {
    padding-bottom: 0;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-marker {
    position: absolute;
    left: -30px;
    top: -5px;
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content {
    padding-left: 10px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

.service-details .service-tabs .tab-content .benefit-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.service-details .service-tabs .tab-content .benefit-card:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .benefit-card:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
    transform: rotateY(180deg);
    background-color: var(--accent-color);
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon i {
    color: var(--contrast-color);
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
    font-size: 28px;
    color: var(--accent-color);
    transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .benefit-card p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
}

.service-details .service-gallery h3 {
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 700;
}

.service-details .service-gallery .service-details-slider {
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.service-details .service-gallery .service-details-slider .portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-details .service-gallery .service-details-slider .portfolio-item:hover .portfolio-info {
    opacity: 1;
    transform: translateY(0);
}

.service-details .service-gallery .service-details-slider .portfolio-item img {
    border-radius: 12px;
    transition: all 0.4s ease;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 30px 20px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info h5 {
    color: var(--contrast-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    margin: 0;
    font-size: 14px;
}

.service-details .service-gallery .service-details-slider .swiper-pagination {
    padding-top: 5px;
    bottom: 0;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    opacity: 1;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 5px;
    background-color: var(--accent-color);
}

.service-details .service-sidebar {
    position: sticky;
    top: 100px;
}

.service-details .service-sidebar .action-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
    border-radius: 15px;
    padding: 35px 30px;
    color: var(--contrast-color);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.service-details .service-sidebar .action-card:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.service-details .service-sidebar .action-card:after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.service-details .service-sidebar .action-card h3 {
    color: var(--contrast-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-details .service-sidebar .action-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-details .service-sidebar .action-card .btn-primary {
    background-color: var(--contrast-color);
    color: var(--accent-color);
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-details .service-sidebar .action-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-sidebar .action-card .guarantee {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.service-details .service-sidebar .action-card .guarantee i {
    margin-right: 5px;
}

.service-details .service-sidebar .service-features-list {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .service-features-list h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

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

.service-details .service-sidebar .service-features-list ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.service-details .service-sidebar .service-features-list ul li:last-child {
    margin-bottom: 0;
}

.service-details .service-sidebar .service-features-list ul li i {
    flex-shrink: 0;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.service-details .service-sidebar .service-features-list ul li div {
    flex: 1;
}

.service-details .service-sidebar .service-features-list ul li div h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-details .service-sidebar .service-features-list ul li div p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
    font-size: 14px;
}

.service-details .service-sidebar .testimonial-card {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .testimonial-card .testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .testimonial-header i {
    font-size: 36px;
    color: var(--accent-color);
    opacity: 0.3;
}

.service-details .service-sidebar .testimonial-card .testimonial-header .rating {
    display: flex;
}

.service-details .service-sidebar .testimonial-card .testimonial-header .rating i {
    color: #FFD700;
    font-size: 16px;
    opacity: 1;
    margin-left: 2px;
}

.service-details .service-sidebar .testimonial-card .testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .testimonial-card .client-info {
    display: flex;
    align-items: center;
}

.service-details .service-sidebar .testimonial-card .client-info .client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.service-details .service-sidebar .testimonial-card .client-info .client-details h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px;
}

.service-details .service-sidebar .testimonial-card .client-info .client-details span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .contact-info {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.service-details .service-sidebar .contact-info .contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

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

.service-details .service-sidebar .contact-info .contact-method i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
}

.service-details .service-sidebar .contact-info .contact-method div {
    flex: 1;
}

.service-details .service-sidebar .contact-info .contact-method div span {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 5px;
}

.service-details .service-sidebar .contact-info .contact-method div p {
    margin: 0;
    font-weight: 600;
    color: var(--heading-color);
}

@media (max-width: 991px) {
    .service-details .service-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .service-details .service-header h1 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .service-details .service-tabs .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .service-details .service-tabs .nav-tabs .nav-link {
        white-space: nowrap;
        padding: 10px 15px;
        font-size: 14px;
    }

    .service-details .service-tabs .nav-tabs .nav-link i {
        font-size: 16px;
    }

    .service-details .service-header h1 {
        font-size: 26px;
    }

    .service-details .service-header .service-meta {
        gap: 15px;
    }

    .service-details .service-header .service-meta span {
        font-size: 14px;
    }

    .service-details .service-header .lead {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# download Section
--------------------------------------------------------------*/
.ansu-download {
  position: relative;
  overflow: hidden;
}

.ansu-download::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.ansu-download .container {
  position: relative;
  z-index: 1;
}

.ansu-download .cta-content {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 50px 40px;
  margin: 20px 0;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  overflow: hidden;
}

.ansu-download .cta-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.file-icon {
  font-size: 3rem;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: transform 0.3s ease;
}

.cta-content:hover .file-icon {
  transform: scale(1.1);
}

.ansu-download .text-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.ansu-download .text-content .lead {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.ansu-download .meta {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.ansu-download .notice {
  font-size: 0.9rem;
  color: #ff4b4b;
  font-weight: 500;
}

.ansu-download .btn-cta {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 40px;
  border: none;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.ansu-download .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #000 10%), color-mix(in srgb, var(--accent-color), #000 25%));
}

@media (max-width: 992px) {
  .ansu-download .text-content {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .file-icon {
    margin-bottom: 1rem;
  }
  .ansu-download .cta-content {
    padding: 40px 30px;
  }
}


.ansu-download .feature-item {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 25px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ansu-download .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.ansu-download .feature-item .icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  transition: all 0.3s ease;
}

.ansu-download .feature-item:hover .icon-wrapper {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.ansu-download .feature-item i {
  color: var(--contrast-color);
  font-size: 1.8rem;
}

.ansu-download .feature-item h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.ansu-download .feature-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .ansu-download .cta-content {
    padding: 40px 25px;
  }
}


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

.faq-4 .faq-sidebar {
    position: sticky;
    top: 100px;
}

.faq-4 .faq-sidebar .faq-image {
    margin-bottom: 30px;
    border-radius: 14px;
    overflow: hidden;
}

.faq-4 .faq-sidebar .faq-image img {
    transition: transform 0.5s ease;
}

.faq-4 .faq-sidebar .faq-image img:hover {
    transform: scale(1.04);
}

.faq-4 .faq-sidebar .contact-box {
    background-color: color-mix(in srgb, #67a2ee, transparent 90%)
    border-radius: 14px;
    padding: 30px;
}

.faq-4 .faq-sidebar .contact-box h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-4 .faq-sidebar .contact-box h3 i {
    font-size: 32px;
    color: var(--accent-color);
}

.faq-4 .faq-sidebar .contact-box p {
    margin-bottom: 20px;
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.faq-4 .faq-sidebar .contact-box .btn-contact {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 44px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-4 .faq-sidebar .contact-box .btn-contact:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq-4 .faq-tabs .nav-pills {
    gap: 15px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-bottom: 15px;
}

.faq-4 .faq-tabs .nav-pills .nav-link {
    background: transparent;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    padding: 14px 30px;
    transition: all 0.3s ease;
}

.faq-4 .faq-tabs .nav-pills .nav-link.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq-4 .faq-tabs .nav-pills .nav-link:hover:not(.active) {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    color: var(--default-color);
}

.faq-4 .faq-tabs .tab-content {
    padding-top: 25px;
}

.faq-4 .faq-item {
    position: relative;
    margin-bottom: 20px;
    background-color: var(--surface-color);
    border-radius: 14px;
    box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-4 .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.faq-4 .faq-item h3 {
    font-size: 18px;
    font-weight: 400;
    padding-right: 35px;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

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

.faq-4 .faq-item .faq-content p {
    margin-bottom: 0;
    padding-top: 15px;
    font-size: 17px;
    line-height: 1.6;
    overflow: hidden;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq-4 .faq-item .faq-toggle {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 18px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-4 .faq-item.faq-active {
    background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
}

.faq-4 .faq-item.faq-active h3 {
    color: var(--accent-color);
}

.faq-4 .faq-item.faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
}

.faq-4 .faq-item.faq-active .faq-toggle {
    transform: rotate(180deg);
}

@media (max-width: 991.98px) {
    .faq-4 .faq-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .faq-4 .faq-sidebar .contact-box {
        text-align: center;
    }

    .faq-4 .faq-tabs .nav-pills {
        flex-wrap: wrap;
    }

    .faq-4 .faq-tabs .nav-pills .nav-item {
        flex: 1 0 30%;
    }

    .faq-4 .faq-tabs .nav-pills .nav-link {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .faq-4 .faq-tabs .nav-pills .nav-item {
        flex: 1 0 100%;
    }

    .faq-4 .faq-item {
        padding: 20px;
    }

    .faq-4 .faq-item h3 {
        font-size: 16px;
        line-height: 1.5;
    }

    .faq-4 .faq-item .faq-toggle {
        right: 20px;
        top: 20px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .intro-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.about .intro-content .lead {
    font-size: 1.3rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    font-weight: 400;
}

.about .hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about .hero-image img {
    transition: transform 0.5s ease;
}

.about .hero-image img:hover {
    transform: scale(1.05);
}

.about .hero-image .floating-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .about .hero-image .floating-stats {
        bottom: -20px;
        right: -20px;
        gap: 0.5rem;
    }
}

.about .hero-image .floating-stats .stat-item {
    background: var(--surface-color);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
    min-width: 80px;
}

@media (max-width: 768px) {
    .about .hero-image .floating-stats .stat-item {
        padding: 1rem 0.8rem;
        min-width: 70px;
    }
}

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

@media (max-width: 768px) {
    .about .hero-image .floating-stats .stat-item .number {
        font-size: 1.4rem;
    }
}

.about .hero-image .floating-stats .stat-item .label {
    display: block;
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
    margin-top: 0.3rem;
}

.about .story-content .story-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.about .story-content .story-badge i {
    font-size: 1.1rem;
}

.about .story-content h3 {
    font-size: 2.5rem;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .about .story-content h3 {
        font-size: 2rem;
    }
}

.about .story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 1.5rem;
}

.about .story-content .mission-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .story-content .mission-box .mission-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about .story-content .mission-box .mission-text h4 {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.about .story-content .mission-box .mission-text p {
    margin: 0;
    font-style: italic;
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .features-grid .section-header h3 {
    font-size: 2.5rem;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about .features-grid .section-header h3 {
        font-size: 2rem;
    }
}

.about .features-grid .section-header p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.about .features-grid .feature-card {
    height: 280px;
    position: relative;
    perspective: 1000px;
    cursor: pointer;
}

.about .features-grid .feature-card .feature-front,
.about .features-grid .feature-card .feature-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.about .features-grid .feature-card .feature-front {
    background: var(--surface-color);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about .features-grid .feature-card .feature-front .feature-icon {
    width: 80px;
    height: 80px;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.about .features-grid .feature-card .feature-front h4 {
    font-size: 1.4rem;
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about .features-grid .feature-card .feature-front p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.about .features-grid .feature-card .feature-back {
    background: var(--accent-color);
    transform: rotateY(180deg);
}

.about .features-grid .feature-card .feature-back p {
    color: var(--contrast-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.about .features-grid .feature-card:hover .feature-front {
    transform: rotateY(180deg);
}

.about .features-grid .feature-card:hover .feature-back {
    transform: rotateY(0deg);
}

.about .journey-timeline .timeline-header h3 {
    font-size: 2.5rem;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about .journey-timeline .timeline-header h3 {
        font-size: 2rem;
    }
}

.about .journey-timeline .timeline-header p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.about .journey-timeline .timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.about .journey-timeline .timeline-container .timeline-milestone {
    position: relative;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .about .journey-timeline .timeline-container .timeline-milestone {
        margin-bottom: 3rem;
    }
}

.about .journey-timeline .timeline-container .timeline-milestone .milestone-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    color: var(--contrast-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
    z-index: 2;
}

@media (max-width: 768px) {
    .about .journey-timeline .timeline-container .timeline-milestone .milestone-marker {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 1rem;
        width: 80px;
        height: 80px;
    }
}

.about .journey-timeline .timeline-container .timeline-milestone .milestone-content {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (min-width: 769px) {
    .about .journey-timeline .timeline-container .timeline-milestone .milestone-content {
        width: 40%;
        margin-top: -50px;
    }
}

.about .journey-timeline .timeline-container .timeline-milestone .milestone-content h4 {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about .journey-timeline .timeline-container .timeline-milestone .milestone-content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 769px) {
    .about .journey-timeline .timeline-container .timeline-milestone:nth-child(odd) .milestone-content {
        margin-left: 0;
    }
}

@media (min-width: 769px) {
    .about .journey-timeline .timeline-container .timeline-milestone:nth-child(even) .milestone-content {
        margin-left: 60%;
    }
}

.about .cta-banner {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), color-mix(in srgb, var(--heading-color), transparent 10%)), url("../img/google.jpg") center/cover;
    border-radius: 25px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.about .cta-banner .cta-overlay {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

@media (max-width: 768px) {
    .about .cta-banner .cta-overlay {
        padding: 2rem;
    }
}

.about .cta-banner .cta-content {
    text-align: center;
    color: var(--contrast-color);
}

.about .cta-banner .cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .about .cta-banner .cta-content h3 {
        font-size: 2rem;
    }
}

.about .cta-banner .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about .cta-banner .cta-content .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about .cta-banner .cta-content .cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.about .cta-banner .cta-content .cta-buttons .btn.btn-primary {
    background: var(--contrast-color);
    color: var(--accent-color);
}

.about .cta-banner .cta-content .cta-buttons .btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--contrast-color), transparent 60%);
}

.about .cta-banner .cta-content .cta-buttons .btn.btn-outline {
    background: transparent;
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.portfolio .portfolio-filters li {
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
}

.portfolio .portfolio-filters li:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.portfolio .portfolio-filters li.filter-active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.portfolio .portfolio-card {
    background-color: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.portfolio .portfolio-card:hover .portfolio-img .portfolio-overlay {
    opacity: 1;
}

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

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

.portfolio .portfolio-card .portfolio-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay a {
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay a:hover {
    background-color: color-mix(in srgb, var(--accent-color), #fff 20%);
    transform: translateY(-5px);
}

.portfolio .portfolio-card .portfolio-info {
    padding: 20px;
}

.portfolio .portfolio-card .portfolio-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.portfolio .portfolio-card .portfolio-info p {
    font-size: 0.9rem;
    color: var(--default-color);
    margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-info .portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio .portfolio-card .portfolio-info .portfolio-tags span {
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
}

.portfolio .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.portfolio .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);
}

/*--------------------------------------------------------------
# webquestion Section
--------------------------------------------------------------*/
.webquestion .category-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.webquestion .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.webquestion .category-card .category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.webquestion .category-card .category-icon i {
    font-size: 30px;
    color: var(--contrast-color);
}

.webquestion .category-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.webquestion .category-card .course-count {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
}

.webquestion .category-card.category-tech .category-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.webquestion .category-card.category-tech:hover {
    border-color: #3b82f6;
}

.webquestion .category-card.category-business .category-icon {
    background: linear-gradient(135deg, #10b981, #047857);
}

.webquestion .category-card.category-business:hover {
    border-color: #10b981;
}

.webquestion .category-card.category-design .category-icon {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.webquestion .category-card.category-design:hover {
    border-color: #8b5cf6;
}

.webquestion .category-card.category-health .category-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.webquestion .category-card.category-health:hover {
    border-color: #ef4444;
}

.webquestion .category-card.category-language .category-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.webquestion .category-card.category-language:hover {
    border-color: #f97316;
}

.webquestion .category-card.category-science .category-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.webquestion .category-card.category-science:hover {
    border-color: #06b6d4;
}

.webquestion .category-card.category-marketing .category-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.webquestion .category-card.category-marketing:hover {
    border-color: #ec4899;
}

.webquestion .category-card.category-finance .category-icon {
    background: linear-gradient(135deg, #059669, #047857);
}

.webquestion .category-card.category-finance:hover {
    border-color: #059669;
}

.webquestion .category-card.category-photography .category-icon {
    background: linear-gradient(135deg, #64748b, #475569);
}

.webquestion .category-card.category-photography:hover {
    border-color: #64748b;
}

.webquestion .category-card.category-music .category-icon {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.webquestion .category-card.category-music:hover {
    border-color: #7c3aed;
}

.webquestion .category-card.category-engineering .category-icon {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.webquestion .category-card.category-engineering:hover {
    border-color: #6b7280;
}

.webquestion .category-card.category-law .category-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.webquestion .category-card.category-law:hover {
    border-color: #f59e0b;
}

.webquestion .category-card.category-culinary .category-icon {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.webquestion .category-card.category-culinary:hover {
    border-color: #f43f5e;
}

.webquestion .category-card.category-sports .category-icon {
    background: linear-gradient(135deg, #84cc16, #65a30d);
}

.webquestion .category-card.category-sports:hover {
    border-color: #84cc16;
}

.webquestion .category-card.category-writing .category-icon {
    background: linear-gradient(135deg, #6366f1, #4338ca);
}

.webquestion .category-card.category-writing:hover {
    border-color: #6366f1;
}

.webquestion .category-card.category-psychology .category-icon {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.webquestion .category-card.category-psychology:hover {
    border-color: #14b8a6;
}

.webquestion .category-card.category-environment .category-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.webquestion .category-card.category-environment:hover {
    border-color: #22c55e;
}

.webquestion .category-card.category-communication .category-icon {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.webquestion .category-card.category-communication:hover {
    border-color: #0ea5e9;
}

@media (max-width: 576px) {
    .webquestion .category-card {
        padding: 20px 15px;
    }

    .webquestion .category-card .category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .webquestion .category-card .category-icon i {
        font-size: 24px;
    }

    .webquestion .category-card h5 {
        font-size: 14px;
    }

    .webquestion .category-card .course-count {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Services 7 Section
--------------------------------------------------------------*/
.services-7 .service-card {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    position: relative;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.services-7 .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
    transition: left 0.5s ease;
}

.services-7 .service-card .service-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--contrast-color);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
    z-index: 2;
}

.services-7 .service-card .service-icon-wrapper {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.services-7 .service-card .service-icon-wrapper .service-icon {
    width: 70px;
    height: 70px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.services-7 .service-card .service-content {
    position: relative;
    z-index: 2;
}

.services-7 .service-card .service-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.services-7 .service-card .service-content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.services-7 .service-card .service-content .service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.services-7 .service-card .service-content .service-list li {
    padding: 6px 0;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.services-7 .service-card .service-content .service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.services-7 .service-card .service-content .service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.services-7 .service-card .service-content .service-pricing .price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.services-7 .service-card .service-content .service-pricing .price-tag::before {
    content: "From ";
    font-size: 12px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.services-7 .service-card .service-content .service-pricing .service-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 25px;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.services-7 .service-card .service-content .service-pricing .service-btn i {
    transition: transform 0.3s ease;
}

.services-7 .service-card .service-content .service-pricing .service-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.services-7 .service-card .service-content .service-pricing .service-btn:hover i {
    transform: translateX(3px);
}

.services-7 .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    border-color: var(--accent-color);
}

.services-7 .service-card:hover::before {
    left: 100%;
}

.services-7 .service-card:hover .service-icon-wrapper .service-icon {
    background: var(--accent-color);
    transform: rotate(5deg) scale(1.1);
}

.services-7 .service-card:hover .service-icon-wrapper .service-icon i {
    color: var(--contrast-color);
}

.services-7 .service-card.featured {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
    border-color: var(--accent-color);
    transform: scale(1.02);
}

.services-7 .service-card.featured .service-number {
    background: var(--contrast-color);
    color: var(--accent-color);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--contrast-color), transparent 60%);
}

.services-7 .service-card.featured .service-icon-wrapper .service-icon {
    background: var(--contrast-color);
}

.services-7 .service-card.featured .service-icon-wrapper .service-icon i {
    color: var(--accent-color);
}

.services-7 .service-card.featured .service-content h4 {
    color: var(--contrast-color);
}

.services-7 .service-card.featured .service-content p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.services-7 .service-card.featured .service-content .service-list li {
    color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.services-7 .service-card.featured .service-content .service-list li::before {
    background: var(--contrast-color);
}

.services-7 .service-card.featured .service-content .service-pricing {
    border-top-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.services-7 .service-card.featured .service-content .service-pricing .price-tag {
    color: var(--contrast-color);
}

.services-7 .service-card.featured .service-content .service-pricing .price-tag::before {
    color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.services-7 .service-card.featured .service-content .service-pricing .service-btn {
    background: var(--contrast-color);
    color: var(--accent-color);
    border-color: var(--contrast-color);
}

.services-7 .service-card.featured .service-content .service-pricing .service-btn:hover {
    background: transparent;
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}

.services-7 .service-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.services-7 .service-card.featured:hover .service-icon-wrapper .service-icon {
    background: var(--contrast-color);
    transform: rotate(-5deg) scale(1.1);
}

.services-7 .service-card.featured:hover .service-icon-wrapper .service-icon i {
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .services-7 .service-card {
        padding: 30px 20px;
    }

    .services-7 .service-card .service-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .services-7 .service-card .service-icon-wrapper .service-icon {
        width: 60px;
        height: 60px;
    }

    .services-7 .service-card .service-icon-wrapper .service-icon i {
        font-size: 28px;
    }

    .services-7 .service-card .service-content h4 {
        font-size: 20px;
    }

    .services-7 .service-card .service-content .service-pricing .price-tag {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .services-7 .service-card {
        padding: 25px 15px;
    }

    .services-7 .service-card .service-content .service-pricing {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .services-7 .service-card .service-content .service-pricing .service-btn {
        width: 100%;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-highlight {
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chefs .chef-highlight .chef-image {
    overflow: hidden;
    margin-bottom: 0;
}

.chefs .chef-highlight .chef-image img {
    transition: transform 0.6s;
    width: 100%;
    object-fit: cover;
}

.chefs .chef-highlight .chef-image:hover img {
    transform: scale(1.05);
}

.chefs .chef-highlight .chef-details {
    padding: 2.5rem;
}

.chefs .chef-highlight .chef-details h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.chefs .chef-highlight .chef-details h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.chefs .chef-highlight .chef-details .chef-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.chefs .chef-highlight .chef-details .chef-awards span {
    font-size: 0.9rem;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    display: inline-flex;
    align-items: center;
}

.chefs .chef-highlight .chef-details .chef-awards span i {
    margin-right: 0.4rem;
    color: var(--accent-color);
}

.chefs .chef-highlight .chef-details p {
    margin-bottom: 1.5rem;
    line-height: 2.5;
    color: #444;
}

.chefs .chef-highlight .chef-details .chef-signature {
    display: block;
    max-width: 180px;
    margin-top: 1.5rem;
}

.chefs .chef-highlight .chef-details .chef-signature img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .chefs .chef-highlight {
        margin-bottom: 2.5rem;
    }
}

.chefs .team-container {
    padding-left: 1rem;
}

@media (max-width: 991px) {
    .chefs .team-container {
        padding-left: 0;
    }
}

.chefs .chef-card {
    background-color: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

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

.chefs .chef-card:hover .social-links {
    opacity: 1;
    visibility: visible;
}

.chefs .chef-card .chef-img {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.chefs .chef-card .chef-img img {
    width: 100%;
    height:auto;
    object-fit: cover;
    transition: transform 0.5s;
}

.chefs .chef-card .chef-img .social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.chefs .chef-card .chef-img .social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-color);
    color: var(--accent-color);
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
}

.chefs .chef-card .chef-img .social-links a:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.chefs .chef-card .chef-info {
    padding: 1.5rem;
}

.chefs .chef-card .chef-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.chefs .chef-card .chef-info .role {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.chefs .chef-card .chef-info .details {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    background: #f7f8fb;
}

.about .intro-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.about .intro-content .lead {
    font-size: 1.3rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    font-weight: 400;
}

.about .hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about .hero-image img {
    transition: transform 0.5s ease;
}

.about .hero-image img:hover {
    transform: scale(1.05);
}

.about .hero-image .floating-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .about .hero-image .floating-stats {
        bottom: -20px;
        right: -20px;
        gap: 0.5rem;
    }
}

.about .hero-image .floating-stats .stat-item {
    background: var(--surface-color);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
    min-width: 80px;
}

@media (max-width: 768px) {
    .about .hero-image .floating-stats .stat-item {
        padding: 1rem 0.8rem;
        min-width: 70px;
    }
}

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

@media (max-width: 768px) {
    .about .hero-image .floating-stats .stat-item .number {
        font-size: 1.4rem;
    }
}

.about .hero-image .floating-stats .stat-item .label {
    display: block;
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
    margin-top: 0.3rem;
}

.about .story-content .story-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.about .story-content .story-badge i {
    font-size: 1.1rem;
}

.about .story-content h3 {
    font-size: 2.5rem;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .about .story-content h3 {
        font-size: 2rem;
    }
}

.about .story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 1.5rem;
}

.about .story-content .mission-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .story-content .mission-box .mission-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about .story-content .mission-box .mission-text h4 {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.about .story-content .mission-box .mission-text p {
    margin: 0;
    font-style: italic;
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .features-grid .section-header h3 {
    font-size: 2.5rem;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about .features-grid .section-header h3 {
        font-size: 2rem;
    }
}

.about .features-grid .section-header p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.about .features-grid .feature-card {
    height: 280px;
    position: relative;
    perspective: 1000px;
    cursor: pointer;
}

.about .features-grid .feature-card .feature-front,
.about .features-grid .feature-card .feature-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.about .features-grid .feature-card .feature-front {
    background: var(--surface-color);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about .features-grid .feature-card .feature-front .feature-icon {
    width: 80px;
    height: 80px;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.about .features-grid .feature-card .feature-front h4 {
    font-size: 1.4rem;
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about .features-grid .feature-card .feature-front p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.about .features-grid .feature-card .feature-back {
    background: var(--accent-color);
    transform: rotateY(180deg);
}

.about .features-grid .feature-card .feature-back p {
    color: var(--contrast-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.about .features-grid .feature-card:hover .feature-front {
    transform: rotateY(180deg);
}

.about .features-grid .feature-card:hover .feature-back {
    transform: rotateY(0deg);
}

.about .journey-timeline .timeline-header h3 {
    font-size: 2.5rem;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about .journey-timeline .timeline-header h3 {
        font-size: 2rem;
    }
}

.about .journey-timeline .timeline-header p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.about .journey-timeline .timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.about .journey-timeline .timeline-container .timeline-milestone {
    position: relative;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .about .journey-timeline .timeline-container .timeline-milestone {
        margin-bottom: 3rem;
    }
}

.about .journey-timeline .timeline-container .timeline-milestone .milestone-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    color: var(--contrast-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
    z-index: 2;
}

@media (max-width: 768px) {
    .about .journey-timeline .timeline-container .timeline-milestone .milestone-marker {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 1rem;
        width: 80px;
        height: 80px;
    }
}

.about .journey-timeline .timeline-container .timeline-milestone .milestone-content {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (min-width: 769px) {
    .about .journey-timeline .timeline-container .timeline-milestone .milestone-content {
        width: 40%;
        margin-top: -50px;
    }
}

.about .journey-timeline .timeline-container .timeline-milestone .milestone-content h4 {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about .journey-timeline .timeline-container .timeline-milestone .milestone-content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 769px) {
    .about .journey-timeline .timeline-container .timeline-milestone:nth-child(odd) .milestone-content {
        margin-left: 0;
    }
}

@media (min-width: 769px) {
    .about .journey-timeline .timeline-container .timeline-milestone:nth-child(even) .milestone-content {
        margin-left: 60%;
    }
}

.about .cta-banner {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), color-mix(in srgb, var(--heading-color), transparent 10%)), url("../img/google.jpg") center/cover;
    border-radius: 25px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.about .cta-banner .cta-overlay {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

@media (max-width: 768px) {
    .about .cta-banner .cta-overlay {
        padding: 2rem;
    }
}

.about .cta-banner .cta-content {
    text-align: center;
    color: var(--contrast-color);
}

.about .cta-banner .cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .about .cta-banner .cta-content h3 {
        font-size: 2rem;
    }
}

.about .cta-banner .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about .cta-banner .cta-content .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about .cta-banner .cta-content .cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.about .cta-banner .cta-content .cta-buttons .btn.btn-primary {
    background: var(--contrast-color);
    color: var(--accent-color);
}

.about .cta-banner .cta-content .cta-buttons .btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--contrast-color), transparent 60%);
}

.about .cta-banner .cta-content .cta-buttons .btn.btn-outline {
    background: transparent;
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2{
    background: #f7f8fb;
}

.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;
    }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
:root {
  --project-image-h: 560px;
}

.projects .project-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.projects .project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.projects .project-image {
  position: relative;
  overflow: hidden;
  height: var(--project-image-h);
}

.projects .project-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 5s ease-in-out; 
  transform: translateY(0);
}

.projects .project-image:hover img {
  transform: translateY(calc(-100% + var(--project-image-h)));
}

.projects .project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.projects .project-status {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.projects .project-status.completed {
  background: color-mix(in srgb, #28a745, transparent 20%);
  color: #ffffff;
}

.projects .btn-project {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.projects .btn-project:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

.projects .project-info {
  padding: 25px;
}

.projects .project-category {
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.projects .project-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
  line-height: 1.3;
}

.projects .project-description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.projects .project-meta {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
}

.projects .project-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.projects .project-meta span i {
  font-size: 14px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  :root {
    --project-image-h: 300px; 
  }

  .projects .project-meta {
    flex-direction: column;
    gap: 8px;
  }

  .projects .project-title {
    font-size: 18px;
  }
}


.float-bar {
    position: fixed;
    right: 20px;
    bottom: 25%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 按钮样式 */
.float-item {
    position: relative;
    width: 68px;
    height: 68px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.float-item i {
    font-size: 32px;
    color: #e30d40;
}

.float-item:hover i {
    color: #fff;
}

.float-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: #fff;
}

/* 弹出层（二维码/电话） */
.float-popup {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    background: #fff;
    border-radius: 8px;
    padding: 10px 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    white-space: nowrap;
    color: #707070;
}

.float-item:hover .float-popup {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.float-popup img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
}

.float-popup p {
    font-size: 13px;
}

.phone-number {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    padding: 15px !important;
}

@media (max-width: 992px) {
    .float-bar {
        display: none;
    }
}
.post-navigation {
    display: flex;
    justify-content: space-between; 
    margin-top: 50px;
    gap: 20px;
    flex-wrap: nowrap; 
}

.post-navigation .prev-post,
.post-navigation .next-post {
    flex: 0 0 48%;
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    border: 1px solid #dbdbdb;
}

.post-navigation a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    width: 100%;
}

.post-navigation .prev-post i,
.post-navigation .next-post i {
    font-size: 24px;
    color: #e30d40;
    transition: color 0.3s;
}

.post-navigation .prev-post i {
    margin-right: 10px;
}

.post-navigation .next-post i {
    margin-left: 10px;
}

.post-navigation .post-text {
    flex: 1;
    overflow: hidden;
}

.post-navigation .label {
    font-size: 14px;
    color: #5b5b5b;
    display: block;
    margin-bottom: 5px;
}

.post-navigation .title {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-navigation .prev-post:hover,
.post-navigation .next-post:hover {
    background: #e30d40;
}

.post-navigation .prev-post:hover i,
.post-navigation .next-post:hover i,
.post-navigation .prev-post:hover .title,
.post-navigation .prev-post:hover .label,
.post-navigation .next-post:hover .title,
.post-navigation .next-post:hover .label {
    color: #fff; 
}

@media screen and (max-width: 768px) {
    .post-navigation {
        flex-wrap: wrap;
    }
    .post-navigation .prev-post,
    .post-navigation .next-post {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }
}
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* 弹窗内容 */
.modal-content {
    background: var(--surface-color);
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

/* 显示状态 */
.modal-overlay.show {
    display: flex;
}
.modal-overlay.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 标题与提示 */
.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.modal-tip {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 20px;
}

/* 表单样式 */
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-color);
}

/* 多选select高度自适应 */
.form-group select {
    height: auto;
    min-height: 40px;
}

/* 提交按钮 */
.btn-submit {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
    color: var(--contrast-color);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

/* 提交成功信息 */
.success-message {
    display: none;
    text-align: center;
    padding: 20px;
}
.success-message i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.success-message p {
    font-size: 1rem;
    color: var(--heading-color);
}