/**
* Template Name: Constructify
* Template URL: https://bootstrapmade.com/constructify-bootstrap-construction-website-template/
* Updated: Feb 11 2026 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

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

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

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

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

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

.dark-background {
    --background-color: #0f1f2e;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #223040;
    --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0.9);
    --default-color: #37423b;
    --heading-color: #0f2a44;
    background: color-mix(in srgb, var(--background-color) 92%, transparent);
    padding: 16px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    transition: all 0.3s ease;
    z-index: 997;
}

    .header .logo {
        gap: 12px;
    }

        .header .logo .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: color-mix(in srgb, var(--accent-color) 15%, transparent);
            color: var(--accent-color);
            font-size: 20px;
        }

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

    .header .header-actions {
        margin: 0 16px;
    }

        .header .header-actions .action-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--default-color);
        }

            .header .header-actions .action-link i {
                font-size: 18px;
                color: var(--accent-color);
            }

    .header .btn-quote {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 12px 24px;
        border-radius: 24px;
        background: var(--accent-color);
        color: var(--contrast-color);
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
    }

        .header .btn-quote:hover {
            background: color-mix(in srgb, var(--accent-color) 90%, black);
        }

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

    .header .btn-quote {
        order: 2;
        margin-right: 12px;
        padding: 10px 20px;
    }

    .header .header-actions {
        display: none !important;
    }

    .header .navmenu {
        order: 3;
    }
}

@media (max-width: 576px) {
    .header .logo {
        gap: 8px;
    }

        .header .logo .logo-icon {
            width: 36px;
            height: 36px;
            font-size: 18px;
        }

        .header .logo h1 {
            font-size: 24px;
        }
}

.scrolled .header {
    background: color-mix(in srgb, var(--background-color) 98%, transparent);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color) 12%, transparent);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.98);
    --default-color: #37423b;
}

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

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

        .navmenu li {
            position: relative;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            padding: 16px 14px;
            font-size: 16px;
            font-family: var(--nav-font);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .navmenu a:after,
            .navmenu a:focus:after {
                content: "";
                position: absolute;
                left: 14px;
                right: 14px;
                bottom: 8px;
                height: 2px;
                background: var(--accent-color);
                transform: scaleX(0);
                transition: transform 0.3s ease;
            }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
            }

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

            .navmenu li:hover > a:after,
            .navmenu .active:after,
            .navmenu .active:focus:after {
                transform: scaleX(1);
            }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 12px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 0;
            top: 120%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 8px;
            z-index: 99;
            box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color) 12%, transparent);
        }

            .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:after {
                    display: none;
                }

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

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

@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: 70px 20px 20px 20px;
            padding: 12px 0;
            margin: 0;
            border-radius: 12px;
            background-color: var(--nav-mobile-background-color);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: 0 18px 40px color-mix(in srgb, var(--default-color) 12%, transparent);
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 12px 20px;
            font-family: var(--nav-font);
            font-size: 16px;
            font-weight: 600;
            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) 12%, transparent);
            }

            .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) 10%, transparent);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
        }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: color-mix(in srgb, var(--accent-color) 6%, transparent);
        }

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

        .mobile-nav-active .mobile-nav-toggle {
            color: var(--contrast-color);
            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: color-mix(in srgb, var(--default-color) 75%, transparent);
            transition: 0.3s;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

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

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

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

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

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

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

    .page-title h1 {
        font-size: 24px;
        font-weight: 700;
    }

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    padding: 96px 0 0;
    overflow: hidden;
}

    .hero .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

        .hero .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero .hero-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 42, 68, 0.92) 0%, rgba(15, 42, 68, 0.75) 100%);
        }

    .hero .container {
        z-index: 2;
    }

    .hero .badge-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: color-mix(in srgb, var(--contrast-color), transparent 85%);
        color: var(--contrast-color);
        padding: 8px 16px;
        border-radius: 24px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 24px;
    }

        .hero .badge-label i {
            font-size: 16px;
        }

    .hero h1 {
        font-size: 56px;
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 24px;
        color: var(--contrast-color);
    }

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

    .hero .lead {
        font-size: 18px;
        line-height: 1.6;
        color: color-mix(in srgb, var(--contrast-color), transparent 20%);
        max-width: 580px;
        margin-bottom: 32px;
    }

    .hero .hero-actions {
        margin-bottom: 80px;
    }

        .hero .hero-actions .btn-main {
            background: var(--accent-color);
            color: var(--contrast-color);
            padding: 14px 32px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
        }

            .hero .hero-actions .btn-main:hover {
                background: color-mix(in srgb, var(--accent-color), black 10%);
            }

        .hero .hero-actions .btn-outline {
            border: 2px solid var(--contrast-color);
            color: var(--contrast-color);
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

            .hero .hero-actions .btn-outline:hover {
                background: var(--contrast-color);
                color: var(--heading-color);
            }

    .hero .hero-counters {
        background: var(--accent-color);
        border-radius: 8px 8px 0 0;
        padding: 32px;
    }

        .hero .hero-counters .counter-item {
            text-align: center;
        }

            .hero .hero-counters .counter-item h3 {
                font-size: 36px;
                font-weight: 700;
                color: var(--contrast-color);
                margin-bottom: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1.2;
            }

            .hero .hero-counters .counter-item p {
                font-size: 14px;
                color: color-mix(in srgb, var(--contrast-color), transparent 20%);
                margin: 4px 0 0;
            }

@media (max-width: 991px) {
    .hero {
        padding: 80px 0 0;
    }

        .hero h1 {
            font-size: 40px;
        }

        .hero .hero-actions {
            margin-bottom: 48px;
        }
}

@media (max-width: 575px) {
    .hero {
        padding: 64px 0 0;
    }

        .hero h1 {
            font-size: 32px;
        }

        .hero .lead {
            font-size: 16px;
        }

        .hero .hero-actions {
            flex-direction: column;
            margin-bottom: 32px;
        }

            .hero .hero-actions .btn-main,
            .hero .hero-actions .btn-outline {
                width: 100%;
                justify-content: center;
            }

        .hero .hero-counters {
            padding: 24px 16px;
        }

            .hero .hero-counters .counter-item h3 {
                font-size: 28px;
            }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-gallery {
    position: relative;
    padding-right: 80px;
    padding-bottom: 80px;
}

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

        .about .about-gallery .gallery-main img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

    .about .about-gallery .gallery-secondary {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50%;
        border-radius: 8px;
        overflow: hidden;
        border: 4px solid var(--background-color);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

        .about .about-gallery .gallery-secondary img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

    .about .about-gallery .experience-badge {
        position: absolute;
        top: 24px;
        right: 48px;
        width: 100px;
        height: 100px;
        background: var(--accent-color);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

        .about .about-gallery .experience-badge .number {
            font-size: 28px;
            font-weight: 800;
            color: var(--contrast-color);
            line-height: 1;
        }

        .about .about-gallery .experience-badge .text {
            font-size: 11px;
            font-weight: 600;
            color: color-mix(in srgb, var(--contrast-color), transparent 15%);
            text-align: center;
            line-height: 1.2;
        }

.about .about-content .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

    .about .about-content .section-label i {
        font-size: 16px;
    }

.about .about-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
}

.about .about-content .lead {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 32px;
}

.about .about-highlights {
    margin-bottom: 32px;
}

    .about .about-highlights .highlight-item .highlight-icon {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
    }

        .about .about-highlights .highlight-item .highlight-icon i {
            font-size: 22px;
            color: var(--accent-color);
        }

    .about .about-highlights .highlight-item h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .about .about-highlights .highlight-item p {
        font-size: 13px;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        line-height: 1.5;
        margin: 0;
    }

.about .about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .about .about-cta .btn-about {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 12px 28px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s ease;
    }

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

            .about .about-cta .btn-about:hover i {
                transform: translateX(4px);
            }

        .about .about-cta .btn-about i {
            transition: transform 0.3s ease;
        }

    .about .about-cta .btn-about-outline {
        display: inline-flex;
        align-items: center;
        padding: 12px 28px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 15px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
        color: var(--default-color);
        transition: all 0.3s ease;
    }

        .about .about-cta .btn-about-outline:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
        }

@media (max-width: 991px) {
    .about .about-gallery {
        padding-right: 48px;
        padding-bottom: 48px;
        margin-bottom: 16px;
    }

        .about .about-gallery .experience-badge {
            right: 16px;
        }

    .about .about-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .about .about-gallery {
        padding-right: 32px;
        padding-bottom: 32px;
    }

        .about .about-gallery .experience-badge {
            width: 80px;
            height: 80px;
            right: 0;
        }

            .about .about-gallery .experience-badge .number {
                font-size: 22px;
            }

            .about .about-gallery .experience-badge .text {
                font-size: 9px;
            }

    .about .about-content h2 {
        font-size: 26px;
    }

    .about .about-cta {
        flex-direction: column;
    }

        .about .about-cta .btn-about,
        .about .about-cta .btn-about-outline {
            justify-content: center;
        }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

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

    .services .services-image .image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(15, 42, 68, 0.95) 0%, rgba(15, 42, 68, 0.3) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 32px;
    }

        .services .services-image .image-overlay h3 {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .services .services-image .image-overlay .overlay-link {
            color: var(--accent-color);
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

            .services .services-image .image-overlay .overlay-link:hover {
                gap: 12px;
            }

.services .service-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: 8px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    height: 100%;
    transition: all 0.3s ease;
}

    .services .service-item:hover {
        border-color: var(--accent-color);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

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

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

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

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

    .services .service-item .service-body h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .services .service-item .service-body p {
        font-size: 14px;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin: 0;
    }

@media (max-width: 991px) {
    .services .services-image {
        min-height: 300px;
        margin-bottom: 8px;
    }
}

@media (max-width: 575px) {
    .services .service-item {
        flex-direction: column;
        padding: 24px;
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    padding: 80px 0;
}

    .stats .stats-content .label-tag {
        display: inline-block;
        color: var(--accent-color);
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .stats .stats-content h2 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .stats .stats-content p {
        font-size: 16px;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 24px;
    }

    .stats .stats-content .stats-link {
        font-weight: 600;
        font-size: 16px;
        color: var(--accent-color);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s ease;
    }

        .stats .stats-content .stats-link:hover {
            gap: 12px;
        }

    .stats .counter-card {
        background: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        border-radius: 8px;
        padding: 32px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        transition: all 0.3s ease;
        height: 100%;
    }

        .stats .counter-card:hover {
            border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .stats .counter-card .counter-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            border-radius: 8px;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .stats .counter-card .counter-data h3 {
            font-size: 36px;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 0;
            line-height: 1.1;
            display: flex;
            align-items: center;
        }

        .stats .counter-card .counter-data p {
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin: 4px 0 0;
        }

@media (max-width: 991px) {
    .stats .stats-content {
        margin-bottom: 16px;
    }

        .stats .stats-content h2 {
            font-size: 28px;
        }
}

@media (max-width: 575px) {
    .stats {
        padding: 48px 0;
    }

        .stats .counter-card {
            padding: 24px;
        }

            .stats .counter-card .counter-data h3 {
                font-size: 28px;
            }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .isotope-filters {
    list-style: none;
    padding: 0;
    margin: 0 0 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

    .projects .isotope-filters li {
        cursor: pointer;
        padding: 10px 24px;
        border-radius: 24px;
        font-size: 14px;
        font-weight: 600;
        color: var(--default-color);
        background: transparent;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
        transition: all 0.3s ease;
    }

        .projects .isotope-filters li:hover,
        .projects .isotope-filters li.filter-active {
            background: var(--accent-color);
            color: var(--contrast-color);
            border-color: var(--accent-color);
        }

.projects .isotope-container .isotope-item {
    width: 33.333%;
    padding: 0 calc(var(--bs-gutter-x) * 0.5);
    margin-bottom: calc(var(--bs-gutter-y));
}

@media (max-width: 991px) {
    .projects .isotope-container .isotope-item {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .projects .isotope-container .isotope-item {
        width: 100%;
    }
}

.projects .project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

    .projects .project-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .projects .project-card:hover img {
        transform: scale(1.05);
    }

    .projects .project-card:hover .card-overlay {
        background: linear-gradient(to top, rgba(15, 42, 68, 0.95) 0%, rgba(15, 42, 68, 0.2) 100%);
    }

    .projects .project-card:hover .card-content .tag {
        background: var(--accent-color);
        color: var(--contrast-color);
    }

    .projects .project-card:hover .card-actions .card-action {
        opacity: 1;
        transform: translateY(0);
    }

    .projects .project-card .card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(15, 42, 68, 0.85) 0%, transparent 60%);
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding: 24px;
        transition: background 0.4s ease;
    }

    .projects .project-card .card-content .tag {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: color-mix(in srgb, var(--contrast-color), transparent 80%);
        color: var(--contrast-color);
        margin-bottom: 8px;
        transition: all 0.3s ease;
    }

    .projects .project-card .card-content h3 {
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
        line-height: 1.3;
    }

    .projects .project-card .card-content p {
        font-size: 14px;
        color: color-mix(in srgb, #ffffff, transparent 25%);
        margin: 8px 0 0;
        line-height: 1.5;
    }

    .projects .project-card .card-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-self: flex-end;
    }

    .projects .project-card .card-action {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 50%;
        background: var(--accent-color);
        color: var(--contrast-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        opacity: 0;
        transform: translateY(8px);
        transition: all 0.3s ease;
    }

        .projects .project-card .card-action:nth-child(2) {
            transition-delay: 0.1s;
        }

        .projects .project-card .card-action:hover {
            background: color-mix(in srgb, var(--accent-color), black 10%);
        }

@media (max-width: 991px) {
    .projects .project-card {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .projects .project-card {
        height: 240px;
    }

        .projects .project-card .card-content h3 {
            font-size: 18px;
        }

        .projects .project-card .card-actions .card-action {
            opacity: 1;
            transform: translateY(0);
        }
}

/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/
.process .process-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

    .process .process-step .step-number {
        font-size: 56px;
        font-weight: 800;
        color: color-mix(in srgb, var(--accent-color), transparent 85%);
        line-height: 1;
        margin-bottom: 16px;
        font-family: var(--heading-font);
    }

    .process .process-step .step-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        position: relative;
    }

        .process .process-step .step-icon i {
            font-size: 32px;
            color: var(--contrast-color);
        }

    .process .process-step h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .process .process-step p {
        font-size: 16px;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin: 0;
    }

@media (min-width: 992px) {
    .process .process-step::after {
        content: "";
        position: absolute;
        top: 110px;
        right: -16px;
        width: 32px;
        height: 2px;
        background: color-mix(in srgb, var(--accent-color), transparent 60%);
    }

    .process .col-lg-3:last-child .process-step::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .process .process-step {
        padding: 24px 16px;
    }

        .process .process-step .step-number {
            font-size: 44px;
        }

        .process .process-step .step-icon {
            width: 64px;
            height: 64px;
        }

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

        .process .process-step h3 {
            font-size: 20px;
        }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member-card {
    background: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .team .member-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

        .team .member-card:hover .member-img .social-links {
            opacity: 1;
            bottom: 16px;
        }

.team .member-img {
    position: relative;
    overflow: hidden;
}

    .team .member-img img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
    }

    .team .member-img .social-links {
        position: absolute;
        bottom: -48px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        opacity: 0;
        transition: all 0.4s ease;
    }

        .team .member-img .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent-color);
            color: var(--contrast-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s ease;
        }

            .team .member-img .social-links a:hover {
                background: color-mix(in srgb, var(--accent-color), black 15%);
            }

.team .member-info {
    padding: 24px;
    text-align: center;
}

    .team .member-info h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .team .member-info span {
        font-size: 14px;
        color: var(--accent-color);
        font-weight: 400;
    }

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

.testimonials .testimonial-card {
    background: var(--surface-color);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .testimonials .testimonial-card .stars {
        margin-bottom: 16px;
    }

        .testimonials .testimonial-card .stars i {
            color: #ffc107;
            font-size: 16px;
        }

    .testimonials .testimonial-card > p {
        font-size: 16px;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 10%);
        font-style: italic;
        flex-grow: 1;
        margin-bottom: 24px;
    }

    .testimonials .testimonial-card .client-info {
        gap: 16px;
    }

        .testimonials .testimonial-card .client-info img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonials .testimonial-card .client-info h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 0;
        }

        .testimonials .testimonial-card .client-info span {
            font-size: 14px;
            color: var(--accent-color);
        }

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

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

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

@media (max-width: 575px) {
    .testimonials .testimonial-card {
        padding: 24px;
    }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 8px;
    padding: 24px 32px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

    .faq .faq-item h3 {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        padding-right: 32px;
        line-height: 1.4;
        cursor: pointer;
        transition: 0.3s;
    }

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

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

        .faq .faq-item .faq-content p {
            margin-bottom: 0;
            overflow: hidden;
            font-size: 16px;
            line-height: 1.6;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

    .faq .faq-item .faq-toggle {
        position: absolute;
        right: 32px;
        top: 28px;
        font-size: 16px;
        line-height: 0;
        color: var(--default-color);
        transition: 0.3s;
        cursor: pointer;
    }

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

.faq .faq-active {
    border-color: var(--accent-color);
}

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

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

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

@media (max-width: 575px) {
    .faq .faq-item {
        padding: 16px 24px;
    }

        .faq .faq-item .faq-toggle {
            right: 24px;
            top: 20px;
        }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .info-block {
    padding-right: 30px;
}

@media (max-width: 992px) {
    .call-to-action .info-block {
        padding-right: 0;
    }
}

.call-to-action .info-block .tagline {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.call-to-action .info-block h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .call-to-action .info-block h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .call-to-action .info-block h2 {
        font-size: 1.75rem;
    }
}

.call-to-action .info-block > p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 30px;
}

.call-to-action .highlight-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

    .call-to-action .highlight-cards .highlight-card {
        display: flex;
        align-items: center;
        gap: 20px;
        background: var(--surface-color);
        padding: 22px 25px;
        border-radius: 14px;
        box-shadow: 0 6px 25px color-mix(in srgb, var(--default-color), transparent 92%);
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }

        .call-to-action .highlight-cards .highlight-card:hover {
            transform: translateX(8px);
            border-left-color: var(--accent-color);
            box-shadow: 0 10px 35px color-mix(in srgb, var(--default-color), transparent 88%);
        }

        .call-to-action .highlight-cards .highlight-card .card-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: color-mix(in srgb, var(--accent-color), transparent 85%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

            .call-to-action .highlight-cards .highlight-card .card-icon i {
                font-size: 1.4rem;
                color: var(--accent-color);
                transition: color 0.3s ease;
            }

        .call-to-action .highlight-cards .highlight-card:hover .card-icon {
            background: var(--accent-color);
        }

            .call-to-action .highlight-cards .highlight-card:hover .card-icon i {
                color: var(--contrast-color);
            }

        .call-to-action .highlight-cards .highlight-card .card-body-content h5 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--heading-color);
            margin-bottom: 4px;
        }

        .call-to-action .highlight-cards .highlight-card .card-body-content p {
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin: 0;
            line-height: 1.5;
        }

.call-to-action .action-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .call-to-action .action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.call-to-action .action-row .btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .call-to-action .action-row .btn-get-started i {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .call-to-action .action-row .btn-get-started:hover {
        background: color-mix(in srgb, var(--accent-color), black 15%);
        transform: translateY(-3px);
        box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 55%);
    }

        .call-to-action .action-row .btn-get-started:hover i {
            transform: translateX(5px);
        }

.call-to-action .action-row .phone-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .call-to-action .action-row .phone-block .phone-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        animation: phone-ring 2s ease-in-out infinite;
    }

        .call-to-action .action-row .phone-block .phone-icon i {
            font-size: 1.1rem;
            color: var(--accent-color);
        }

    .call-to-action .action-row .phone-block .phone-details .phone-label {
        display: block;
        font-size: 0.8rem;
        color: color-mix(in srgb, var(--default-color), transparent 45%);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }

    .call-to-action .action-row .phone-block .phone-details .phone-number {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--heading-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .call-to-action .action-row .phone-block .phone-details .phone-number:hover {
            color: var(--accent-color);
        }

@keyframes phone-ring {

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

    10% {
        transform: rotate(12deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(8deg);
    }

    40% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

.call-to-action .image-block {
    position: relative;
    padding: 20px;
}

@media (max-width: 992px) {
    .call-to-action .image-block {
        padding: 10px;
    }
}

.call-to-action .image-block .main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px color-mix(in srgb, var(--default-color), transparent 82%);
}

    .call-to-action .image-block .main-image img {
        width: 100%;
        display: block;
        transition: transform 0.5s ease;
    }

    .call-to-action .image-block .main-image:hover img {
        transform: scale(1.03);
    }

.call-to-action .image-block .counter-badge {
    position: absolute;
    top: -10px;
    right: 0;
    z-index: 2;
}

@media (max-width: 576px) {
    .call-to-action .image-block .counter-badge {
        top: -5px;
        right: -5px;
    }
}

.call-to-action .image-block .counter-badge .counter-inner {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 24px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 45px color-mix(in srgb, var(--accent-color), transparent 50%);
}

    .call-to-action .image-block .counter-badge .counter-inner .counter-value {
        display: block;
        font-size: 2.4rem;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 6px;
        font-family: var(--heading-font);
    }

@media (max-width: 576px) {
    .call-to-action .image-block .counter-badge .counter-inner .counter-value {
        font-size: 1.8rem;
    }
}

.call-to-action .image-block .counter-badge .counter-inner .counter-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.call-to-action .image-block .accent-badge {
    position: absolute;
    bottom: 0;
    left: -10px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-color);
    padding: 16px 24px;
    border-radius: 14px;
    box-shadow: 0 10px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 576px) {
    .call-to-action .image-block .accent-badge {
        left: 0;
        bottom: -5px;
    }
}

.call-to-action .image-block .accent-badge i {
    font-size: 1.6rem;
    color: var(--accent-color);
}

.call-to-action .image-block .accent-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-cards .info-card {
    padding: 24px;
    margin-bottom: 16px;
    background: var(--surface-color);
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

    .contact .info-cards .info-card:last-child {
        margin-bottom: 0;
    }

    .contact .info-cards .info-card:hover {
        border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    }

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

        .contact .info-cards .info-card .icon-box i {
            font-size: 24px;
            color: var(--accent-color);
        }

    .contact .info-cards .info-card h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
    }

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

.contact .contact-form-wrap {
    background: var(--surface-color);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .contact .contact-form-wrap input[type=text],
    .contact .contact-form-wrap input[type=email],
    .contact .contact-form-wrap input[type=tel],
    .contact .contact-form-wrap select,
    .contact .contact-form-wrap textarea {
        color: var(--default-color);
        background-color: var(--surface-color);
        font-size: 14px;
        border-color: color-mix(in srgb, var(--default-color), transparent 80%);
        padding: 12px 16px;
        border-radius: 4px;
        min-height: 48px;
    }

        .contact .contact-form-wrap input[type=text]:focus,
        .contact .contact-form-wrap input[type=email]:focus,
        .contact .contact-form-wrap input[type=tel]:focus,
        .contact .contact-form-wrap select:focus,
        .contact .contact-form-wrap textarea:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
        }

        .contact .contact-form-wrap input[type=text]::placeholder,
        .contact .contact-form-wrap input[type=email]::placeholder,
        .contact .contact-form-wrap input[type=tel]::placeholder,
        .contact .contact-form-wrap select::placeholder,
        .contact .contact-form-wrap textarea::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .contact .contact-form-wrap textarea {
        min-height: 140px;
        resize: vertical;
    }

    .contact .contact-form-wrap select {
        appearance: auto;
    }

    .contact .contact-form-wrap .btn-submit {
        background: var(--accent-color);
        color: var(--contrast-color);
        border: none;
        padding: 14px 40px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 16px;
        min-height: 48px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .contact .contact-form-wrap .btn-submit:hover {
            background: color-mix(in srgb, var(--accent-color), black 10%);
        }

@media (max-width: 575px) {
    .contact .contact-form-wrap {
        padding: 24px;
    }
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .hero-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

    .project-details .hero-banner .banner-slider .swiper-wrapper {
        height: auto !important;
    }

    .project-details .hero-banner .banner-slider .swiper-slide img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
    }

    .project-details .hero-banner .banner-slider .slider-controls {
        position: absolute;
        bottom: 16px;
        right: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 10;
        background: color-mix(in srgb, var(--default-color), transparent 40%);
        padding: 6px 14px;
        border-radius: 30px;
    }

    .project-details .hero-banner .banner-slider .swiper-button-next,
    .project-details .hero-banner .banner-slider .swiper-button-prev {
        position: static;
        width: 30px;
        height: 30px;
        margin: 0;
    }

        .project-details .hero-banner .banner-slider .swiper-button-next::after,
        .project-details .hero-banner .banner-slider .swiper-button-prev::after {
            font-size: 14px;
            color: var(--contrast-color);
        }

    .project-details .hero-banner .banner-slider .swiper-pagination {
        position: static;
        width: auto;
        color: var(--contrast-color);
        font-size: 13px;
        font-weight: 600;
    }

    .project-details .hero-banner .banner-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 40px 32px 24px;
        background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 10%), transparent);
        z-index: 5;
    }

        .project-details .hero-banner .banner-overlay .tag {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 10px;
        }

        .project-details .hero-banner .banner-overlay h2 {
            color: var(--contrast-color);
            font-size: 30px;
            font-weight: 700;
            margin: 0;
        }

.project-details .detail-tabs .nav-tabs {
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    gap: 4px;
}

    .project-details .detail-tabs .nav-tabs .nav-link {
        border: none;
        border-bottom: 2px solid transparent;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-size: 14px;
        font-weight: 600;
        padding: 12px 20px;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s;
        margin-bottom: -2px;
    }

        .project-details .detail-tabs .nav-tabs .nav-link i {
            font-size: 16px;
        }

        .project-details .detail-tabs .nav-tabs .nav-link:hover {
            color: var(--accent-color);
            border-bottom-color: color-mix(in srgb, var(--accent-color), transparent 60%);
        }

        .project-details .detail-tabs .nav-tabs .nav-link.active {
            color: var(--accent-color);
            border-bottom-color: var(--accent-color);
            background: transparent;
        }

.project-details .detail-tabs .tab-content {
    padding: 28px 0;
}

    .project-details .detail-tabs .tab-content .summary {
        font-size: 17px;
        line-height: 1.75;
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        margin-bottom: 16px;
        font-weight: 500;
    }

    .project-details .detail-tabs .tab-content p {
        font-size: 15px;
        line-height: 1.8;
        color: color-mix(in srgb, var(--default-color), transparent 25%);
    }

.project-details .photo-grid h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.project-details .photo-grid img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: all 0.3s;
    cursor: pointer;
}

    .project-details .photo-grid img:hover {
        transform: scale(1.04);
        box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 80%);
    }

.project-details .sticky-sidebar {
    position: sticky;
    top: 100px;
}

    .project-details .sticky-sidebar .meta-header {
        background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--default-color) 30%));
        border-radius: 12px;
        padding: 28px;
        margin-bottom: 20px;
        color: var(--contrast-color);
    }

        .project-details .sticky-sidebar .meta-header .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: color-mix(in srgb, var(--contrast-color), transparent 80%);
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px;
        }

            .project-details .sticky-sidebar .meta-header .status-badge i {
                font-size: 14px;
            }

        .project-details .sticky-sidebar .meta-header .meta-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            padding: 8px 0;
            border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
        }

            .project-details .sticky-sidebar .meta-header .meta-row:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            .project-details .sticky-sidebar .meta-header .meta-row i {
                font-size: 16px;
                opacity: 0.85;
            }

    .project-details .sticky-sidebar .specs-card {
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        border-radius: 12px;
        padding: 24px;
        margin-bottom: 20px;
    }

        .project-details .sticky-sidebar .specs-card h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .project-details .sticky-sidebar .specs-card .spec-row {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
        }

            .project-details .sticky-sidebar .specs-card .spec-row:last-child {
                margin-bottom: 0;
            }

        .project-details .sticky-sidebar .specs-card .spec-item {
            flex: 1;
            background: color-mix(in srgb, var(--accent-color), transparent 92%);
            border-radius: 10px;
            padding: 16px;
            text-align: center;
        }

            .project-details .sticky-sidebar .specs-card .spec-item .spec-number {
                display: block;
                font-size: 24px;
                font-weight: 800;
                color: var(--accent-color);
                font-family: var(--heading-font);
            }

            .project-details .sticky-sidebar .specs-card .spec-item .spec-label {
                display: block;
                font-size: 12px;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                text-transform: uppercase;
                letter-spacing: 0.8px;
                margin-top: 4px;
            }

    .project-details .sticky-sidebar .capabilities-card {
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        border-radius: 12px;
        padding: 24px;
        margin-bottom: 20px;
    }

        .project-details .sticky-sidebar .capabilities-card h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .project-details .sticky-sidebar .capabilities-card .capability-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .project-details .sticky-sidebar .capabilities-card .cap-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: color-mix(in srgb, var(--accent-color), transparent 92%);
            color: color-mix(in srgb, var(--default-color), transparent 15%);
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s;
        }

            .project-details .sticky-sidebar .capabilities-card .cap-tag i {
                color: var(--accent-color);
                font-size: 15px;
            }

            .project-details .sticky-sidebar .capabilities-card .cap-tag:hover {
                background: color-mix(in srgb, var(--accent-color), transparent 82%);
            }

    .project-details .sticky-sidebar .client-card {
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        border-radius: 12px;
        padding: 24px;
    }

        .project-details .sticky-sidebar .client-card h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .project-details .sticky-sidebar .client-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .project-details .sticky-sidebar .client-card ul li {
                display: flex;
                justify-content: space-between;
                padding: 10px 0;
                border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
            }

                .project-details .sticky-sidebar .client-card ul li:last-child {
                    border-bottom: none;
                    padding-bottom: 0;
                }

                .project-details .sticky-sidebar .client-card ul li:first-child {
                    padding-top: 0;
                }

                .project-details .sticky-sidebar .client-card ul li .label {
                    font-size: 13px;
                    color: color-mix(in srgb, var(--default-color), transparent 45%);
                }

                .project-details .sticky-sidebar .client-card ul li .value {
                    font-size: 13px;
                    font-weight: 600;
                    color: var(--heading-color);
                }

.project-details .bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding: 24px 0;
    border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .project-details .bottom-nav .btn-nav {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        transition: all 0.3s;
    }

        .project-details .bottom-nav .btn-nav i {
            font-size: 20px;
            color: var(--accent-color);
            transition: transform 0.3s;
        }

        .project-details .bottom-nav .btn-nav .btn-text {
            display: flex;
            flex-direction: column;
        }

            .project-details .bottom-nav .btn-nav .btn-text .btn-label {
                font-size: 11px;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: color-mix(in srgb, var(--default-color), transparent 50%);
            }

            .project-details .bottom-nav .btn-nav .btn-text .btn-title {
                font-size: 15px;
                font-weight: 600;
                color: var(--default-color);
                transition: color 0.3s;
            }

        .project-details .bottom-nav .btn-nav.prev-btn:hover i {
            transform: translateX(-4px);
        }

        .project-details .bottom-nav .btn-nav.prev-btn:hover .btn-title {
            color: var(--accent-color);
        }

        .project-details .bottom-nav .btn-nav.next-btn {
            text-align: right;
        }

            .project-details .bottom-nav .btn-nav.next-btn:hover i {
                transform: translateX(4px);
            }

            .project-details .bottom-nav .btn-nav.next-btn:hover .btn-title {
                color: var(--accent-color);
            }

        .project-details .bottom-nav .btn-nav.center-btn {
            padding: 10px 28px;
            border-radius: 8px;
            background: var(--accent-color);
            color: var(--contrast-color);
            font-weight: 600;
            font-size: 14px;
        }

            .project-details .bottom-nav .btn-nav.center-btn i {
                color: var(--contrast-color);
            }

            .project-details .bottom-nav .btn-nav.center-btn span {
                color: var(--contrast-color);
            }

            .project-details .bottom-nav .btn-nav.center-btn:hover {
                background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
                transform: translateY(-2px);
                box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 50%);
            }

@media (max-width: 992px) {
    .project-details .hero-banner .banner-overlay h2 {
        font-size: 24px;
    }

    .project-details .sticky-sidebar {
        position: static;
        margin-top: 20px;
    }

    .project-details .detail-tabs .nav-tabs .nav-link {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .project-details .hero-banner .banner-overlay {
        padding: 30px 20px 18px;
    }

        .project-details .hero-banner .banner-overlay h2 {
            font-size: 20px;
        }

        .project-details .hero-banner .banner-overlay .tag {
            font-size: 11px;
            padding: 3px 10px;
        }

    .project-details .hero-banner .banner-slider .slider-controls {
        bottom: 10px;
        right: 10px;
        padding: 4px 10px;
    }

    .project-details .detail-tabs .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

        .project-details .detail-tabs .nav-tabs .nav-link {
            white-space: nowrap;
            padding: 10px 12px;
            font-size: 12px;
        }

    .project-details .sticky-sidebar .specs-card .spec-item .spec-number {
        font-size: 20px;
    }

    .project-details .sticky-sidebar .meta-header,
    .project-details .sticky-sidebar .specs-card,
    .project-details .sticky-sidebar .capabilities-card,
    .project-details .sticky-sidebar .client-card {
        padding: 20px;
    }

    .project-details .bottom-nav {
        flex-direction: column;
        gap: 16px;
    }

        .project-details .bottom-nav .btn-nav.center-btn {
            order: -1;
        }

        .project-details .bottom-nav .btn-nav.prev-btn .btn-text .btn-title,
        .project-details .bottom-nav .btn-nav.next-btn .btn-text .btn-title {
            font-size: 13px;
        }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
    height: auto !important;
}

.service-details .service-sidebar {
    position: sticky;
    top: 100px;
}

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

        .service-details .service-sidebar .service-overview .overview-header {
            background: var(--accent-color);
            color: var(--contrast-color);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

            .service-details .service-sidebar .service-overview .overview-header i {
                font-size: 24px;
            }

            .service-details .service-sidebar .service-overview .overview-header h3 {
                color: var(--contrast-color);
                margin: 0;
                font-size: 20px;
                font-weight: 600;
            }

        .service-details .service-sidebar .service-overview .overview-content {
            padding: 32px;
        }

            .service-details .service-sidebar .service-overview .overview-content h2 {
                font-size: 24px;
                font-weight: 700;
                margin-bottom: 16px;
                color: var(--heading-color);
            }

            .service-details .service-sidebar .service-overview .overview-content p {
                margin-bottom: 24px;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                font-size: 15px;
                line-height: 1.7;
            }

            .service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started {
                display: inline-block;
                background: var(--accent-color);
                color: var(--contrast-color);
                padding: 12px 24px;
                border-radius: 4px;
                font-weight: 600;
                transition: 0.3s;
                text-align: center;
                width: 100%;
            }

                .service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started:hover {
                    background: color-mix(in srgb, var(--accent-color), black 10%);
                }

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

        .service-details .service-sidebar .key-benefits h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 16px;
        }

            .service-details .service-sidebar .key-benefits h4:after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 48px;
                height: 3px;
                background: var(--accent-color);
            }

        .service-details .service-sidebar .key-benefits ul {
            padding-left: 0;
            list-style: none;
            margin: 0;
        }

            .service-details .service-sidebar .key-benefits ul li {
                display: flex;
                align-items: center;
                margin-bottom: 16px;
                color: color-mix(in srgb, var(--default-color), transparent 15%);
                font-size: 15px;
            }

                .service-details .service-sidebar .key-benefits ul li:last-child {
                    margin-bottom: 0;
                }

                .service-details .service-sidebar .key-benefits ul li i {
                    color: var(--accent-color);
                    font-size: 18px;
                    margin-right: 12px;
                    flex-shrink: 0;
                }

    .service-details .service-sidebar .contact-card {
        background: var(--surface-color);
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .service-details .service-sidebar .contact-card .contact-header {
            background: var(--accent-color);
            color: var(--contrast-color);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

            .service-details .service-sidebar .contact-card .contact-header i {
                font-size: 24px;
            }

            .service-details .service-sidebar .contact-card .contact-header h4 {
                color: var(--contrast-color);
                margin: 0;
                font-size: 20px;
                font-weight: 600;
            }

        .service-details .service-sidebar .contact-card .contact-info {
            padding: 32px;
        }

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

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

                .service-details .service-sidebar .contact-card .contact-info .info-row i {
                    font-size: 20px;
                    color: var(--accent-color);
                    margin-right: 16px;
                    width: 44px;
                    height: 44px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: color-mix(in srgb, var(--accent-color), transparent 90%);
                    border-radius: 50%;
                    flex-shrink: 0;
                }

                .service-details .service-sidebar .contact-card .contact-info .info-row div span {
                    display: block;
                    font-size: 13px;
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                    margin-bottom: 4px;
                }

                .service-details .service-sidebar .contact-card .contact-info .info-row div p {
                    margin: 0;
                    font-weight: 600;
                    color: var(--heading-color);
                    font-size: 15px;
                }

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

    .service-details .service-content .image-gallery .service-details-slider {
        border-radius: 8px;
        overflow: hidden;
    }

        .service-details .service-content .image-gallery .service-details-slider img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .service-details .service-content .image-gallery .service-details-slider .swiper-pagination {
            bottom: 20px;
        }

            .service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
                background: var(--contrast-color);
                opacity: 0.7;
                transition: all 0.3s ease;
            }

                .service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
                    opacity: 1;
                    width: 24px;
                    border-radius: 5px;
                }

        .service-details .service-content .image-gallery .service-details-slider .swiper-button-next,
        .service-details .service-content .image-gallery .service-details-slider .swiper-button-prev {
            width: 44px;
            height: 44px;
            background: var(--contrast-color);
            border-radius: 50%;
            opacity: 0;
            transition: 0.3s;
        }

            .service-details .service-content .image-gallery .service-details-slider .swiper-button-next::after,
            .service-details .service-content .image-gallery .service-details-slider .swiper-button-prev::after {
                font-size: 18px;
                color: var(--accent-color);
            }

            .service-details .service-content .image-gallery .service-details-slider .swiper-button-next:hover,
            .service-details .service-content .image-gallery .service-details-slider .swiper-button-prev:hover {
                opacity: 1;
            }

        .service-details .service-content .image-gallery .service-details-slider:hover .swiper-button-next,
        .service-details .service-content .image-gallery .service-details-slider:hover .swiper-button-prev {
            opacity: 0.8;
        }

.service-details .service-content .section-header {
    margin-bottom: 24px;
}

    .service-details .service-content .section-header h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .service-details .service-content .section-header .divider {
        width: 48px;
        height: 3px;
        background: var(--accent-color);
    }

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

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

        .service-details .service-content .details-content p:last-child {
            margin-bottom: 0;
        }

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

    .service-details .service-content .service-features .feature-card {
        background: var(--surface-color);
        border-radius: 8px;
        padding: 24px;
        height: 100%;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        transition: all 0.3s ease;
    }

        .service-details .service-content .service-features .feature-card:hover {
            border-color: var(--accent-color);
        }

            .service-details .service-content .service-features .feature-card:hover .icon-wrapper {
                background: var(--accent-color);
            }

                .service-details .service-content .service-features .feature-card:hover .icon-wrapper i {
                    color: var(--contrast-color);
                }

        .service-details .service-content .service-features .feature-card .icon-wrapper {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            border-radius: 8px;
            margin-bottom: 16px;
            transition: 0.3s;
        }

            .service-details .service-content .service-features .feature-card .icon-wrapper i {
                font-size: 24px;
                color: var(--accent-color);
                transition: 0.3s;
            }

        .service-details .service-content .service-features .feature-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .service-details .service-content .service-features .feature-card p {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin-bottom: 0;
            font-size: 14px;
            line-height: 1.6;
        }

.service-details .service-content .implementation-steps .step-container {
    position: relative;
}

    .service-details .service-content .implementation-steps .step-container:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 19px;
        width: 2px;
        background: color-mix(in srgb, var(--accent-color), transparent 80%);
    }

    .service-details .service-content .implementation-steps .step-container .step {
        display: flex;
        margin-bottom: 32px;
        position: relative;
    }

        .service-details .service-content .implementation-steps .step-container .step:last-child {
            margin-bottom: 0;
        }

        .service-details .service-content .implementation-steps .step-container .step .step-number {
            width: 40px;
            height: 40px;
            min-width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-color);
            color: var(--contrast-color);
            font-weight: 700;
            border-radius: 50%;
            margin-right: 20px;
            z-index: 2;
            font-size: 14px;
        }

        .service-details .service-content .implementation-steps .step-container .step .step-content {
            flex: 1;
        }

            .service-details .service-content .implementation-steps .step-container .step .step-content h4 {
                font-size: 18px;
                font-weight: 600;
                margin-bottom: 8px;
            }

            .service-details .service-content .implementation-steps .step-container .step .step-content p {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                margin-bottom: 0;
                font-size: 15px;
                line-height: 1.7;
            }

@media (max-width: 991px) {
    .service-details .service-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {

    .service-details .service-sidebar .service-overview .overview-content,
    .service-details .service-sidebar .key-benefits,
    .service-details .service-sidebar .contact-card .contact-info {
        padding: 24px;
    }

    .service-details .service-content .section-header h3 {
        font-size: 20px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
    font-size: 1rem;
    line-height: 1.7;
}

    .privacy .privacy-header {
        margin-bottom: 60px;
        text-align: center;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding-bottom: 40px;
    }

        .privacy .privacy-header .header-content {
            max-width: 800px;
            margin: 0 auto;
        }

            .privacy .privacy-header .header-content .last-updated {
                font-size: 0.95rem;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                margin-bottom: 20px;
            }

            .privacy .privacy-header .header-content h1 {
                font-size: 2.8rem;
                color: var(--heading-color);
                margin-bottom: 20px;
                font-weight: 600;
            }

            .privacy .privacy-header .header-content .intro-text {
                font-size: 1.2rem;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                line-height: 1.6;
            }

    .privacy .privacy-content {
        max-width: 800px;
        margin: 0 auto 60px;
    }

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

            .privacy .privacy-content .content-section:last-child {
                margin-bottom: 0;
            }

            .privacy .privacy-content .content-section h2 {
                font-size: 1.8rem;
                color: var(--heading-color);
                margin-bottom: 25px;
                font-weight: 600;
            }

            .privacy .privacy-content .content-section h3 {
                font-size: 1.4rem;
                color: var(--heading-color);
                margin: 30px 0 20px;
                font-weight: 500;
            }

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

                .privacy .privacy-content .content-section p:last-child {
                    margin-bottom: 0;
                }

            .privacy .privacy-content .content-section ul {
                list-style: none;
                padding: 0;
                margin: 0 0 20px;
            }

                .privacy .privacy-content .content-section ul li {
                    position: relative;
                    padding-left: 25px;
                    margin-bottom: 12px;
                }

                    .privacy .privacy-content .content-section ul li:last-child {
                        margin-bottom: 0;
                    }

                    .privacy .privacy-content .content-section ul li::before {
                        content: "•";
                        position: absolute;
                        left: 8px;
                        color: var(--accent-color);
                    }

    .privacy .privacy-contact {
        max-width: 800px;
        margin: 0 auto;
        padding-top: 40px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .privacy .privacy-contact h2 {
            font-size: 1.8rem;
            color: var(--heading-color);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .privacy .privacy-contact p {
            margin-bottom: 20px;
        }

        .privacy .privacy-contact .contact-details {
            background-color: var(--surface-color);
            padding: 25px;
            border-radius: 10px;
        }

            .privacy .privacy-contact .contact-details p {
                margin-bottom: 10px;
            }

                .privacy .privacy-contact .contact-details p:last-child {
                    margin-bottom: 0;
                }

                .privacy .privacy-contact .contact-details p strong {
                    color: var(--heading-color);
                    font-weight: 600;
                }

@media print {
    .privacy {
        font-size: 12pt;
        line-height: 1.5;
    }

        .privacy .privacy-header {
            text-align: left;
            border-bottom: 1pt solid #000;
            padding-bottom: 20pt;
            margin-bottom: 30pt;
        }

        .privacy h1 {
            font-size: 24pt;
        }

        .privacy h2 {
            font-size: 18pt;
            page-break-after: avoid;
        }

        .privacy h3 {
            font-size: 14pt;
            page-break-after: avoid;
        }

        .privacy p,
        .privacy ul {
            page-break-inside: avoid;
        }

        .privacy .contact-details {
            border: 1pt solid #000;
            padding: 15pt;
        }
}

@media (max-width: 767px) {
    .privacy .privacy-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

        .privacy .privacy-header .header-content h1 {
            font-size: 2.2rem;
        }

        .privacy .privacy-header .header-content .intro-text {
            font-size: 1.1rem;
        }

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

        .privacy .privacy-content .content-section h2 {
            font-size: 1.6rem;
        }

        .privacy .privacy-content .content-section h3 {
            font-size: 1.3rem;
        }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 180px);
    padding: 100px 0;
}

    .error-404 .error-visual {
        text-align: center;
    }

        .error-404 .error-visual .glitch-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

            .error-404 .error-visual .glitch-wrapper .digit {
                font-size: 9rem;
                font-weight: 800;
                font-family: var(--heading-font);
                line-height: 1;
                color: var(--accent-color);
            }

                .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
                    width: 140px;
                    height: 140px;
                    border-radius: 50%;
                    background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 4.5rem;
                    animation: floatBounce 3s ease-in-out infinite;
                }

                    .error-404 .error-visual .glitch-wrapper .digit.digit-circle i {
                        color: var(--accent-color);
                    }

        .error-404 .error-visual .decorative-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 2rem;
        }

            .error-404 .error-visual .decorative-dots span {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
                animation: dotPulse 1.5s ease-in-out infinite;
            }

                .error-404 .error-visual .decorative-dots span:nth-child(2) {
                    animation-delay: 0.3s;
                    background-color: var(--accent-color);
                }

                .error-404 .error-visual .decorative-dots span:nth-child(3) {
                    animation-delay: 0.6s;
                }

    .error-404 .error-info .error-badge {
        display: inline-block;
        background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
        color: var(--accent-color);
        font-size: 0.85rem;
        font-weight: 600;
        padding: 6px 18px;
        border-radius: 50px;
        margin-bottom: 1.25rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .error-404 .error-info h2 {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .error-404 .error-info p {
        font-size: 1.05rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .error-404 .error-info .suggestions {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem;
    }

        .error-404 .error-info .suggestions li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            font-size: 0.95rem;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

            .error-404 .error-info .suggestions li i {
                color: var(--accent-color);
                font-size: 1.1rem;
            }

    .error-404 .error-info .action-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

        .error-404 .error-info .action-buttons .btn-home {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

            .error-404 .error-info .action-buttons .btn-home:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
                transform: translateY(-2px);
                box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
            }

        .error-404 .error-info .action-buttons .btn-support {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

            .error-404 .error-info .action-buttons .btn-support:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
                border-color: var(--accent-color);
                transform: translateY(-2px);
            }

@keyframes floatBounce {

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

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

@keyframes dotPulse {

    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@media (max-width: 992px) {
    .error-404 .error-visual {
        margin-bottom: 2rem;
    }

        .error-404 .error-visual .glitch-wrapper .digit {
            font-size: 7rem;
        }

            .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
                width: 110px;
                height: 110px;
                font-size: 3.5rem;
            }

    .error-404 .error-info {
        text-align: center;
    }

        .error-404 .error-info h2 {
            font-size: 1.85rem;
        }

        .error-404 .error-info .suggestions {
            display: inline-block;
            text-align: left;
        }

        .error-404 .error-info .action-buttons {
            justify-content: center;
        }
}

@media (max-width: 768px) {
    .error-404 .error-visual .glitch-wrapper .digit {
        font-size: 5.5rem;
    }

        .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
            width: 90px;
            height: 90px;
            font-size: 2.8rem;
        }

    .error-404 .error-info h2 {
        font-size: 1.6rem;
    }

    .error-404 .error-info p {
        font-size: 0.95rem;
    }

    .error-404 .error-info .action-buttons {
        flex-direction: column;
        align-items: center;
    }

        .error-404 .error-info .action-buttons .btn-home,
        .error-404 .error-info .action-buttons .btn-support {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
}

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

        .error-404 .error-visual .glitch-wrapper .digit {
            font-size: 4.5rem;
        }

            .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
                width: 72px;
                height: 72px;
                font-size: 2.2rem;
            }

        .error-404 .error-visual .decorative-dots {
            margin-top: 1.25rem;
        }

            .error-404 .error-visual .decorative-dots span {
                width: 8px;
                height: 8px;
            }

        .error-404 .error-info h2 {
            font-size: 1.35rem;
        }

        .error-404 .error-info .suggestions li {
            font-size: 0.88rem;
        }
}

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

.lang-switch {
    display: flex;
    gap: 8px;
    margin-left: 15px;
}

.lang-btn {
    cursor: pointer;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 12px;
}

    .lang-btn:hover {
        background: #0d6efd;
        color: white;
    }

    .lang-btn.active {
        background: #0d6efd;
        color: white;
    }
