﻿/**
* Template Name: iConstruction
* Template URL: https://bootstrapmade.com/iconstruction-bootstrap-construction-template/
* Updated: Jul 27 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Merriweather", 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: "Merriweather", sans-serif;
    --nav-font: "Merriweather", 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: #342c26; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2c1607; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #ff6a00; /* 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: #ffffff; /* The default color of the main navmenu links */
    --nav-hover-color: #ff6a00; /* 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: #342c26; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #e96308; /* 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: #f9f7f6;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--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;
}

    .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);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-height: 36px;
            margin-right: 8px;
        }

        .header .logo h1 {
            font-size: 30px;
            margin: 0;
            font-weight: 700;
            color: var(--heading-color);
        }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-size: 14px;
        padding: 8px 25px;
        margin: 0 0 0 30px;
        border-radius: 4px;
        transition: 0.3s;
    }

        .header .btn-getstarted:hover,
        .header .btn-getstarted:focus:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(22, 15, 9, 0.915);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            padding: 18px 15px;
            font-size: 18px;
            font-family: var(--nav-font);
            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;
                transition: 0.3s;
            }

        .navmenu li:last-child a {
            padding-right: 0;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-hover-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background: var(--background-color);
    font-size: 15px;
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .footer .footer-brand h1,
    .footer .footer-brand .logo {
        margin: 0;
        line-height: 1;
        font-weight: 300;
    }

        .footer .footer-brand h1 .sitename,
        .footer .footer-brand .logo .sitename {
            font-family: var(--heading-font);
            font-size: 26px;
            letter-spacing: 0.8px;
            color: var(--heading-color);
        }

    .footer .footer-brand .tagline {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 16px;
        line-height: 1.7;
        font-weight: 300;
        margin: 12px 0 0;
    }

    .footer .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

        .footer .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background-color: transparent;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
        }

            .footer .social-links a:hover {
                background-color: var(--accent-color);
                color: var(--contrast-color);
                transform: translateY(-3px);
                border-color: var(--accent-color);
            }

            .footer .social-links a i {
                font-size: 16px;
            }

    .footer .footer-links-grid h5 {
        color: var(--heading-color);
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 20px;
        font-family: var(--heading-font);
        letter-spacing: 0.5px;
    }

    .footer .footer-links-grid ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer .footer-links-grid ul li {
            margin-bottom: 12px;
        }

            .footer .footer-links-grid ul li a {
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                text-decoration: none;
                font-size: 15px;
                font-weight: 300;
                transition: all 0.3s ease;
                position: relative;
                /* padding-left: 10px; */
            }

                .footer .footer-links-grid ul li a::before {
                    content: "→";
                    position: absolute;
                    left: 0;
                    opacity: 0;
                    transition: all 0.3s ease;
                    color: var(--accent-color);
                }

                .footer .footer-links-grid ul li a:hover {
                    color: var(--accent-color);
                    padding-left: 16px;
                }

                    .footer .footer-links-grid ul li a:hover::before {
                        opacity: 1;
                    }

    .footer .footer-cta h5 {
        color: var(--heading-color);
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 18px;
        font-family: var(--heading-font);
    }

    .footer .footer-cta .btn-outline {
        background: transparent;
        color: var(--heading-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
        padding: 10px 24px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 4px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

        .footer .footer-cta .btn-outline:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
            border-color: var(--accent-color);
            transform: translateY(-2px);
        }

    .footer .footer-bottom {
        margin-top: 60px;
        padding: 25px 0;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .footer .footer-bottom .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

@media (max-width: 768px) {
    .footer .footer-bottom .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.footer .footer-bottom .footer-bottom-content p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    font-weight: 300;
}

    .footer .footer-bottom .footer-bottom-content p .sitename {
        color: var(--heading-color);
        font-weight: 500;
    }

.footer .footer-bottom .footer-bottom-content .credits {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

    .footer .footer-bottom .footer-bottom-content .credits a {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 400;
    }

        .footer .footer-bottom .footer-bottom-content .credits a:hover {
            text-decoration: underline;
        }

@media (max-width: 991px) {
    .footer .footer-links-grid {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 0;
    }

        .footer .footer-brand,
        .footer .footer-links-grid,
        .footer .footer-cta {
            margin-bottom: 0;
        }

            .footer .footer-links-grid .col-6 {
                margin-bottom: 30px;
            }

            .footer .footer-links-grid h5 {
            }

            .footer .footer-links-grid ul {
                display: inline-block;
                margin-bottom: 30px;
            }
        .footer .footer-bottom {
            margin-top: 0;
        }
}

/*--------------------------------------------------------------
# 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);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

    .page-title:before {
        content: "";
        background-color: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
    }

    .page-title h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        justify-content: center;
        padding: 0;
        margin: 0;
        font-size: 16px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 50%);
            }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 400;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

        .section-title h2:before {
            content: "";
            position: absolute;
            display: block;
            width: 160px;
            height: 1px;
            background: color-mix(in srgb, var(--default-color), transparent 60%);
            left: 0;
            right: 0;
            bottom: 1px;
            margin: auto;
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding-top: 120px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 80px;
}

    .hero .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

        .hero .hero-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .hero .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: color-mix(in srgb, var(--background-color), transparent 20%);
        z-index: 2;
    }

    .hero .container {
        position: relative;
        z-index: 1;
    }

    .hero .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

@media (max-width: 768px) {
    .hero .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero .hero-content h1 {
        font-size: 2rem;
    }
}

.hero .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero .hero-content p {
        font-size: 1.1rem;
    }
}

.hero .hero-content .hero-actions {
    margin-bottom: 4rem;
}

    .hero .hero-content .hero-actions .btn {
        padding: 15px 30px;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 6px;
        margin: 0 10px;
        transition: all 0.3s ease;
    }

@media (max-width: 576px) {
    .hero .hero-content .hero-actions .btn {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
}

.hero .hero-content .hero-actions .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

    .hero .hero-content .hero-actions .btn-primary:hover {
        background-color: color-mix(in srgb, var(--accent-color), black 15%);
        border-color: color-mix(in srgb, var(--accent-color), black 15%);
        transform: translateY(-2px);
    }

.hero .hero-content .hero-actions .btn-secondary {
    background-color: transparent;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
    color: var(--default-color);
}

    .hero .hero-content .hero-actions .btn-secondary:hover {
        color: var(--accent-color);
        border-color: var(--accent-color);
        transform: translateY(-2px);
    }

.hero .hero-content .hero-stats {
    background-color: color-mix(in srgb, var(--background-color), transparent 90%);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .hero .hero-content .hero-stats .stat-item {
        text-align: center;
        padding: 1rem;
    }

        .hero .hero-content .hero-stats .stat-item .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .hero .hero-content .hero-stats .stat-item .stat-label {
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

@media (max-width: 768px) {
    .hero .hero-content .hero-stats .stat-item {
        margin-bottom: 1.5rem;
    }

        .hero .hero-content .hero-stats .stat-item:last-child {
            margin-bottom: 0;
        }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 40%);
}

    .about .content .section-heading {
        font-size: 2.5rem;
        font-weight: 300;
        line-height: 1.2;
        color: var(--heading-color);
        letter-spacing: -0.02em;
    }

@media (max-width: 768px) {
    .about .content .section-heading {
        font-size: 2rem;
    }
}

.about .content .lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--default-color);
}

.about .content .description-text {
    font-size: 1rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 576px) {
    .about .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

.about .stats-grid .stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about .stats-grid .stat-item .stat-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about .cta-section .cta-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 400;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .about .cta-section .cta-link:hover {
        color: var(--heading-color);
        transform: translateX(5px);
    }

    .about .cta-section .cta-link i {
        transition: transform 0.3s ease;
    }

    .about .cta-section .cta-link:hover i {
        transform: translateX(5px);
    }

.about .image-section {
    position: relative;
}

    .about .image-section .main-image {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    }

        .about .image-section .main-image img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .about .image-section .main-image:hover img {
            transform: scale(1.2);
        }

    .about .image-section .floating-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background-color: var(--surface-color);
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
    }

@media (max-width: 768px) {
    .about .image-section .floating-badge {
        bottom: -15px;
        right: -15px;
        padding: 1rem;
    }
}

.about .image-section .floating-badge .badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .about .image-section .floating-badge .badge-content i {
        font-size: 2rem;
        color: var(--accent-color);
    }

    .about .image-section .floating-badge .badge-content .badge-text .badge-title {
        display: block;
        font-weight: 500;
        color: var(--heading-color);
        font-size: 1rem;
        line-height: 1.2;
    }

    .about .image-section .floating-badge .badge-content .badge-text .badge-subtitle {
        display: block;
        font-size: 0.85rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-weight: 300;
    }

@media (max-width: 992px) {
    .about .content {
        margin-bottom: 3rem;
    }

    .about .image-section .floating-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
    padding-top: 60px;
    padding-bottom: 2px;
}

    .services .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-bottom: 80px;
    }

@media (min-width: 992px) {
    .services .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.services .service-item {
    background: var(--surface-color);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

    .services .service-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 60%), var(--accent-color));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .services .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
        border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .services .service-item:hover::before {
            transform: scaleX(1);
        }

        .services .service-item:hover .service-number {
            color: var(--accent-color);
            transform: scale(1.1);
        }

        .services .service-item:hover .service-icon {
            transform: scale(1.05);
            background: var(--accent-color);
        }

            .services .service-item:hover .service-icon i {
                color: var(--contrast-color);
                filter: brightness(1000%) invert(0%);
            }

        .services .service-item:hover .service-cta {
            transform: translateX(8px);
            color: var(--accent-color);
        }

    .services .service-item.featured {
        background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 3%));
        border-color: var(--accent-color);
        transform: scale(1.2);
    }

        .services .service-item.featured .featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-color);
            color: var(--contrast-color);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .services .service-item.featured::before {
            transform: scaleX(1);
        }

        .services .service-item.featured .service-number {
            color: var(--accent-color);
        }

    .services .service-item .service-number {
        font-size: 14px;
        font-weight: 300;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-bottom: 20px;
        transition: all 0.3s ease;
        letter-spacing: 2px;
    }

    .services .service-item .service-icon {
        width: 80px;
        height: 80px;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: all 0.3s ease;
    }

        .services .service-item .service-icon i {
            font-size: 24px;
            color: var(--accent-color);
            transition: color 0.3s ease;
        }

    .services .service-item h3 {
        font-size: 24px;
        font-weight: 300;
        color: var(--heading-color);
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .services .service-item p {
        color: color-mix(in srgb, var(--default-color), transparent 25%);
        line-height: 1.7;
        margin-bottom: 25px;
        font-size: 15px;
    }

    .services .service-item .service-cta {
        display: inline-flex;
        align-items: center;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }

        .services .service-item .service-cta span {
            margin-right: 8px;
        }

        .services .service-item .service-cta i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .services .service-item .service-cta:hover i {
            transform: translateX(3px);
        }

.services .services-footer {
    background: var(--surface-color);
    padding: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 768px) {
    .services .services-footer {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
}

.services .services-footer .footer-content {
    flex: 1;
}

    .services .services-footer .footer-content h4 {
        font-size: 28px;
        font-weight: 300;
        color: var(--heading-color);
        margin-bottom: 8px;
    }

    .services .services-footer .footer-content p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 0;
        font-size: 16px;
        line-height: 1.6;
    }

.services .services-footer .primary-cta {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 10%));
    color: var(--contrast-color);
    padding: 18px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

    .services .services-footer .primary-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
        color: var(--contrast-color);
    }

    .services .services-footer .primary-cta i {
        margin-left: 10px;
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .services .services-footer .primary-cta:hover i {
        transform: translateX(3px);
    }

@media (max-width: 768px) {
    .services .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .services .service-item {
        padding: 30px 25px;
    }

        .services .service-item h3 {
            font-size: 22px;
        }

        .services .service-item p {
            font-size: 14px;
        }

    .services .services-footer .footer-content h4 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .services .services-grid {
        gap: 25px;
    }

    .services .service-item {
        padding: 25px 20px;
    }

        .services .service-item .service-icon {
            width: 50px;
            height: 50px;
        }

            .services .service-item .service-icon i {
                font-size: 20px;
            }

    .services .services-footer {
        padding: 30px 20px;
    }

        .services .services-footer .primary-cta {
            padding: 15px 25px;
            font-size: 14px;
        }
}

/*--------------------------------------------------------------
# Services Alt Section
--------------------------------------------------------------*/
.services-alt {
    overflow: hidden;
}

    .services-alt .section-subtitle {
        font-size: 18px;
        line-height: 1.7;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-weight: 300;
        margin: 0;
    }

    .services-alt .service-item {
        height: 100%;
        transition: all 0.4s ease;
    }

        .services-alt .service-item .service-visual {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 32px;
        }

            .services-alt .service-item .service-visual img {
                width: 100%;
                height: 280px;
                object-fit: cover;
                transition: transform 0.4s ease;
            }

        .services-alt .service-item .service-content h3 {
            font-size: 20px;
            font-weight: 300;
            margin-bottom: 16px;
            line-height: 1.4;
        }
        .services-alt .service-item .service-content h3 a {
            color: var(--default-color);
            font-weight: bold;
        }

        .services-alt .service-item .service-content p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 24px;
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .services-alt .service-item .service-content .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--heading-color);
            text-decoration: none;
            font-weight: 400;
            font-size: 15px;
            transition: all 0.3s ease;
        }

            .services-alt .service-item .service-content .service-link span {
                border-bottom: 1px solid transparent;
                transition: border-color 0.3s ease;
            }

            .services-alt .service-item .service-content .service-link i {
                font-size: 14px;
                transition: transform 0.3s ease;
            }

            .services-alt .service-item .service-content .service-link:hover {
                color: var(--accent-color);
            }

                .services-alt .service-item .service-content .service-link:hover span {
                    border-bottom-color: var(--accent-color);
                }

                .services-alt .service-item .service-content .service-link:hover i {
                    transform: translateX(4px);
                }

        .services-alt .service-item:hover .service-visual img {
            transform: scale(1.05);
        }

    .services-alt .cta-section {
        background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 5%) 100%);
        padding: 64px 48px;
        border-radius: 8px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .services-alt .cta-section h4 {
            font-size: 32px;
            font-weight: 300;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .services-alt .cta-section p {
            font-size: 18px;
            line-height: 1.7;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-alt .cta-section .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 16px 32px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 400;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
        }

            .services-alt .cta-section .btn-primary i {
                font-size: 16px;
                transition: transform 0.3s ease;
            }

            .services-alt .cta-section .btn-primary:hover {
                background-color: color-mix(in srgb, var(--accent-color), black 10%);
                transform: translateY(-2px);
                color: var(--contrast-color);
            }

                .services-alt .cta-section .btn-primary:hover i {
                    transform: translateX(4px);
                }

@media (max-width: 768px) {
    .services-alt .cta-section {
        padding: 48px 32px;
    }

        .services-alt .cta-section h4 {
            font-size: 28px;
        }

        .services-alt .cta-section p {
            font-size: 16px;
        }
}

@media (max-width: 768px) {
    .services-alt .service-item .service-visual {
        margin-bottom: 24px;
    }

        .services-alt .service-item .service-visual img {
            height: 240px;
        }

    .services-alt .service-item .service-content h3 {
        font-size: 22px;
    }

    .services-alt .service-item .service-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .project-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
    height: 100%;
}

    .projects .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    }

        .projects .project-card:hover .project-overlay {
            opacity: 1;
        }

.projects .project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .projects .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .projects .project-image:hover img {
        transform: scale(1.2);
    }

/*.projects .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, color-mix(in srgb, var(--default-color), transparent 10%) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}*/
.projects .project-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    background: linear-gradient(to bottom, transparent 0%, color-mix(in srgb, var(--default-color), transparent 10%) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.projects .project-status {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .projects .project-status.completed {
        background: color-mix(in srgb, #28a745, transparent 20%);
        color: #ffffff;
    }

    .projects .project-status.in-progress {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: #ffffff;
    }

    .projects .project-status.planning {
        background: color-mix(in srgb, #ff6a00, transparent 20%);
        color: #ffffff;
    }

.projects .project-actions {
    align-self: center;
}

.projects .btn-project {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

    .projects .btn-project:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
        transform: translateY(-2px);
    }

.projects .project-info {
    padding: 25px;
}

.projects .project-category {
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.projects .project-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.3;
}
.projects .project-title a {
    color: var(--default-color);
}

.projects .project-description {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.projects .project-meta {
    display: flex;
    gap: 20px;
    font-weight: bold;
    font-size: 20px;
}

    .projects .project-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

        .projects .project-meta span i {
            font-size: 14px;
            color: var(--accent-color);
        }

@media (max-width: 768px) {
    .projects .project-meta {
        flex-direction: column;
        gap: 8px;
    }

    .projects .project-title {
        font-size: 18px;
    }

    .projects .project-image {
        height: 120px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

    .testimonials .testimonial-masonry::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
        opacity: 0.5;
        z-index: -1;
    }

.testimonials .testimonial-item:nth-child(3n-1) {
    margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
    margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

    .testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
        background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    }

        .testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
            color: var(--accent-color);
        }

.testimonials .testimonial-content {
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

    .testimonials .testimonial-content:hover {
        transform: translateY(-5px);
    }

    .testimonials .testimonial-content p {
        font-size: 1rem;
        line-height: 1.7;
        position: relative;
    }

.testimonials .quote-pattern {
    position: absolute;
    top: -1.25rem;
    left: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

    .testimonials .quote-pattern i {
        font-size: 1.25rem;
        color: var(--accent-color);
    }

.testimonials .client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

    .testimonials .client-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonials .client-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
    .testimonials .testimonial-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials .testimonial-item:nth-child(3n-1),
    .testimonials .testimonial-item:nth-child(3n) {
        margin-top: 0;
    }

    .testimonials .testimonial-item:nth-child(even) {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .capabilities-section .custom-tabs {
        margin-bottom: 0.8rem !important;
        flex-wrap: nowrap;
        justify-content: space-between;
        flex-direction: row !important;
    }
    .testimonials .testimonial-masonry {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials .testimonial-item:nth-child(even) {
        margin-top: 0;
    }

    .testimonials .testimonial-content {
        padding: 1.5rem;
    }

        .testimonials .testimonial-content p {
            font-size: 0.9375rem;
            margin: 1.25rem 0;
        }

    .testimonials .quote-pattern {
        width: 2.25rem;
        height: 2.25rem;
        top: -1.125rem;
    }

        .testimonials .quote-pattern i {
            font-size: 1.125rem;
        }

    .testimonials .client-info {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .testimonials .client-image {
        width: 45px;
        height: 45px;
    }

    .testimonials .client-details h3 {
        font-size: 1rem;
    }

    .testimonials .client-details .position {
        font-size: 0.8125rem;
    }
}

/*--------------------------------------------------------------
# Certifications Section
--------------------------------------------------------------*/
.certifications .content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.certifications .content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
}

.certifications .certification-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    height: 100%;
    transition: all 0.4s ease-in-out;
    position: relative;
}

    .certifications .certification-item:hover {
        transform: translateY(-5px);
    }

        .certifications .certification-item:hover .certification-badge img {
            transform: scale(1.05);
        }

    .certifications .certification-item .certification-badge {
        margin-bottom: 2rem;
        width: 120px;
        height: 120px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-color);
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        padding: 1rem;
    }

        .certifications .certification-item .certification-badge img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.4s ease-in-out;
        }

    .certifications .certification-item h4 {
        font-size: 1.25rem;
        font-weight: 400;
        margin-bottom: 1rem;
        color: var(--heading-color);
        line-height: 1.3;
    }

    .certifications .certification-item p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 0;
    }

.certifications .certification-stats {
    margin-top: 2rem;
    padding: 3rem 2rem;
    background: var(--surface-color);
    border-radius: 8px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.03);
}

    .certifications .certification-stats .stat-item h3 {
        font-size: 2.5rem;
        font-weight: 300;
        color: var(--accent-color);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .certifications .certification-stats .stat-item p {
        font-size: 0.9rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-bottom: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
    }

@media (max-width: 768px) {
    .certifications {
        padding: 80px 0;
    }

        .certifications .content h2 {
            font-size: 2rem;
        }

        .certifications .content p {
            font-size: 1rem;
        }

        .certifications .certification-item {
            padding: 2rem 1rem;
        }

            .certifications .certification-item .certification-badge {
                width: 100px;
                height: 100px;
                margin-bottom: 1.5rem;
            }

            .certifications .certification-item h4 {
                font-size: 1.125rem;
            }

        .certifications .certification-stats {
            padding: 2rem 1rem;
        }

            .certifications .certification-stats .stat-item h3 {
                font-size: 2rem;
            }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    background-color: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

    .team .team-member:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
    }

    .team .team-member .member-img {
        position: relative;
        overflow: hidden;
    }

        .team .team-member .member-img img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
        }

        .team .team-member .member-img::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--heading-color), transparent 20%) 100%);
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

    .team .team-member .member-info {
        padding: 32px 28px;
        text-align: center;
    }

        .team .team-member .member-info h4 {
            font-size: 22px;
            font-weight: 300;
            margin: 0 0 8px 0;
            color: var(--heading-color);
            line-height: 1.3;
        }

        .team .team-member .member-info span {
            display: block;
            font-size: 14px;
            color: var(--accent-color);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .team .team-member .member-info p {
            font-size: 14px;
            line-height: 1.7;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin-bottom: 24px;
        }

        .team .team-member .member-info .social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

            .team .team-member .member-info .social a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                background-color: color-mix(in srgb, var(--default-color), transparent 95%);
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                border-radius: 50%;
                font-size: 16px;
                transition: all 0.3s ease-in-out;
            }

                .team .team-member .member-info .social a:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: translateY(-3px);
                }

    .team .team-member:hover .member-img img {
        transform: scale(1.08);
    }

    .team .team-member:hover .member-img::after {
        opacity: 1;
    }

@media (max-width: 768px) {
    .team .team-member .member-info {
        padding: 24px 20px;
    }

        .team .team-member .member-info h4 {
            font-size: 20px;
        }

    .team .team-member .member-img img {
        height: 250px;
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .call-to-action .container {
        position: relative;
        z-index: 2;
    }

    .call-to-action .cta-header {
        margin-bottom: 80px;
    }

        .call-to-action .cta-header h2 {
            font-size: 3.2rem;
            font-weight: 300;
            color: var(--heading-color);
            margin-bottom: 2rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

@media (max-width: 768px) {
    .call-to-action .cta-header h2 {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }
}

.call-to-action .cta-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .call-to-action .cta-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .call-to-action .cta-header {
        margin-bottom: 60px;
    }
}

.call-to-action .achievements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 576px) {
    .call-to-action .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.call-to-action .achievements-grid .achievement-item {
    background: var(--surface-color);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

    .call-to-action .achievements-grid .achievement-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 88%);
    }

    .call-to-action .achievements-grid .achievement-item .achievement-icon {
        margin-bottom: 20px;
    }

        .call-to-action .achievements-grid .achievement-item .achievement-icon i {
            font-size: 2.5rem;
            color: var(--accent-color);
        }

    .call-to-action .achievements-grid .achievement-item .achievement-info h3 {
        font-size: 2.8rem;
        font-weight: 300;
        color: var(--heading-color);
        margin-bottom: 8px;
        line-height: 1;
    }

    .call-to-action .achievements-grid .achievement-item .achievement-info span {
        font-size: 0.95rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
    }

@media (max-width: 768px) {
    .call-to-action .achievements-grid .achievement-item {
        padding: 30px 20px;
    }
}

.call-to-action .action-panel {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 30px 80px color-mix(in srgb, var(--default-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

@media (max-width: 768px) {
    .call-to-action .action-panel {
        padding: 40px 30px;
        margin-top: 40px;
    }
}

.call-to-action .action-panel .panel-content {
    /*margin-bottom: 40px;*/
}

    .call-to-action .action-panel .panel-content h3 {
        font-size: 2.2rem;
        font-weight: 400;
        color: var(--heading-color);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

@media (max-width: 768px) {
    .call-to-action .action-panel .panel-content h3 {
        font-size: 1.8rem;
    }
}

.call-to-action .action-panel .panel-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.call-to-action .action-panel .panel-content .action-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

    .call-to-action .action-panel .panel-content .action-buttons .btn-primary,
    .call-to-action .action-panel .panel-content .action-buttons .btn-secondary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 25px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
        transition: all 0.3s ease;
    }

        .call-to-action .action-panel .panel-content .action-buttons .btn-primary i,
        .call-to-action .action-panel .panel-content .action-buttons .btn-secondary i {
            font-size: 1.1rem;
        }

    .call-to-action .action-panel .panel-content .action-buttons .btn-primary {
        background: var(--accent-color);
        color: var(--contrast-color);
        border: none;
    }

        .call-to-action .action-panel .panel-content .action-buttons .btn-primary:hover {
            background: color-mix(in srgb, var(--accent-color), black 10%);
            transform: translateY(-2px);
        }

    .call-to-action .action-panel .panel-content .action-buttons .btn-secondary {
        background: transparent;
        color: var(--heading-color);
        border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    }

        .call-to-action .action-panel .panel-content .action-buttons .btn-secondary:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
            transform: translateY(-2px);
        }

.call-to-action .action-panel .contact-quick {
    padding-top: 30px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .call-to-action .action-panel .contact-quick .contact-row {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

        .call-to-action .action-panel .contact-quick .contact-row:last-child {
            margin-bottom: 0;
        }

        .call-to-action .action-panel .contact-quick .contact-row i {
            font-size: 1.5rem;
            color: var(--accent-color);
            flex-shrink: 0;
        }

        .call-to-action .action-panel .contact-quick .contact-row .contact-details {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

            .call-to-action .action-panel .contact-quick .contact-row .contact-details .contact-label {
                font-size: 0.9rem;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                font-weight: 500;
            }

            .call-to-action .action-panel .contact-quick .contact-row .contact-details .contact-value {
                font-size: 1rem;
                color: var(--heading-color);
                font-weight: 600;
            }

@media (max-width: 992px) {
    .call-to-action {
        padding: 40px 0;
    }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-header .service-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.service-details .service-header .service-subtitle {
    font-size: 1.1rem;
    color: var(--default-color);
    line-height: 1.7;
    margin: 0;
}

.service-details .service-header .service-stats {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

    .service-details .service-header .service-stats .stat-item {
        text-align: center;
    }

        .service-details .service-header .service-stats .stat-item .stat-number {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--accent-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .service-details .service-header .service-stats .stat-item .stat-label {
            font-size: 0.9rem;
            color: var(--default-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.service-details .service-overview {
    margin-bottom: 4rem;
}

    .service-details .service-overview .service-image {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 3rem;
    }

    .service-details .service-overview .overview-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

        .service-details .service-overview .overview-grid .overview-item i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            display: block;
        }

        .service-details .service-overview .overview-grid .overview-item h3 {
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--heading-color);
            margin-bottom: 1rem;
        }

        .service-details .service-overview .overview-grid .overview-item p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--default-color);
            margin: 0;
        }

.capabilities-section {
    margin-bottom: 4rem;
}

    .capabilities-section h2 {
        font-size: 2.2rem;
        font-weight: 300;
        color: var(--heading-color);
        margin-bottom: 3rem;
    }

    .capabilities-section .custom-tabs {
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        margin-bottom: 3rem;
        padding-left: 0;
    }

        .capabilities-section .custom-tabs .nav-item .nav-link {
            background: none;
            border: none;
            border-bottom: 2px solid transparent;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            color: var(--default-color);
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
            text-transform: uppercase;
        }

            .capabilities-section .custom-tabs .nav-item .nav-link.active {
                color: var(--accent-color);
                border-bottom-color: var(--accent-color);
                background: none;
            }

            .capabilities-section .custom-tabs .nav-item .nav-link:hover:not(.active) {
                color: var(--heading-color);
                border-bottom-color: transparent;
                background: none;
            }

            .capabilities-section .custom-tabs .nav-item .nav-link:focus {
                box-shadow: none;
            }

    .capabilities-section .tab-content .tab-pane {
        padding: 2rem 0;
    }

        .capabilities-section .tab-content .tab-pane h4 {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--heading-color);
            margin-bottom: 1rem;
        }

        .capabilities-section .tab-content .tab-pane p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--default-color);
            margin-bottom: 2rem;
        }

        .capabilities-section .tab-content .tab-pane .capability-features {
            list-style: none;
            padding: 0;
        }

            .capabilities-section .tab-content .tab-pane .capability-features li {
                padding: 0.5rem 0;
                color: var(--default-color);
                position: relative;
                padding-left: 1.5rem;
            }

                .capabilities-section .tab-content .tab-pane .capability-features li:before {
                    content: "→";
                    color: var(--accent-color);
                    position: absolute;
                    left: 0;
                    top: 0.5rem;
                }

.service-details .service-sidebar .quick-info-card,
.service-details .service-sidebar .contact-form-card,
.service-details .service-sidebar .expertise-highlights {
    background-color: var(--surface-color);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .service-details .service-sidebar .quick-info-card .info-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }

        .service-details .service-sidebar .quick-info-card .info-header h3 {
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--heading-color);
            margin: 0;
        }

        .service-details .service-sidebar .quick-info-card .info-header .info-badge {
            background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
            color: var(--accent-color);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

    .service-details .service-sidebar .quick-info-card .info-content .info-row {
        display: flex;
        justify-content: space-between;
        padding: 1rem 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .service-details .service-sidebar .quick-info-card .info-content .info-row:last-child {
            border-bottom: none;
        }

        .service-details .service-sidebar .quick-info-card .info-content .info-row .label {
            color: var(--default-color);
            font-weight: 400;
        }

        .service-details .service-sidebar .quick-info-card .info-content .info-row .value {
            color: var(--heading-color);
            font-weight: 500;
        }

    .service-details .service-sidebar .contact-form-card h3 {
        font-size: 1.4rem;
        font-weight: 400;
        color: var(--heading-color);
        margin-bottom: 0.5rem;
    }

    .service-details .service-sidebar .contact-form-card p {
        color: var(--default-color);
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }

    .service-details .service-sidebar .contact-form-card .consultation-form .form-group {
        margin-bottom: 1.5rem;
    }

        .service-details .service-sidebar .contact-form-card .consultation-form .form-group input,
        .service-details .service-sidebar .contact-form-card .consultation-form .form-group select,
        .service-details .service-sidebar .contact-form-card .consultation-form .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            border-radius: 8px;
            background-color: var(--surface-color);
            color: var(--default-color);
            font-size: 0.95rem;
            transition: border-color 0.3s ease;
        }

            .service-details .service-sidebar .contact-form-card .consultation-form .form-group input:focus,
            .service-details .service-sidebar .contact-form-card .consultation-form .form-group select:focus,
            .service-details .service-sidebar .contact-form-card .consultation-form .form-group textarea:focus {
                outline: none;
                border-color: var(--accent-color);
            }

            .service-details .service-sidebar .contact-form-card .consultation-form .form-group input::placeholder,
            .service-details .service-sidebar .contact-form-card .consultation-form .form-group select::placeholder,
            .service-details .service-sidebar .contact-form-card .consultation-form .form-group textarea::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

        .service-details .service-sidebar .contact-form-card .consultation-form .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
        }

    .service-details .service-sidebar .contact-form-card .consultation-form .btn-submit {
        width: 100%;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        border: none;
        padding: 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .service-details .service-sidebar .contact-form-card .consultation-form .btn-submit:hover {
            background-color: color-mix(in srgb, var(--accent-color), black 10%);
            transform: translateY(-1px);
        }

    .service-details .service-sidebar .expertise-highlights h4 {
        font-size: 1.2rem;
        font-weight: 400;
        color: var(--heading-color);
        margin-bottom: 2rem;
    }

    .service-details .service-sidebar .expertise-highlights .expertise-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

        .service-details .service-sidebar .expertise-highlights .expertise-grid .expertise-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

            .service-details .service-sidebar .expertise-highlights .expertise-grid .expertise-item:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
            }

            .service-details .service-sidebar .expertise-highlights .expertise-grid .expertise-item i {
                color: var(--accent-color);
                font-size: 1.1rem;
            }

            .service-details .service-sidebar .expertise-highlights .expertise-grid .expertise-item span {
                font-size: 0.9rem;
                color: var(--default-color);
                font-weight: 500;
            }

.service-details .project-showcase {
    margin-top: 5rem;
}

    .service-details .project-showcase h2 {
        font-size: 2.2rem;
        font-weight: 300;
        color: var(--heading-color);
        text-align: center;
        margin-bottom: 3rem;
    }

    .service-details .project-showcase .showcase-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 300px 300px;
        gap: 1.5rem;
    }

        .service-details .project-showcase .showcase-grid .showcase-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
        }

            .service-details .project-showcase .showcase-grid .showcase-item.large {
                grid-row: span 2;
                grid-column: span 1;
            }

            .service-details .project-showcase .showcase-grid .showcase-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

            .service-details .project-showcase .showcase-grid .showcase-item .showcase-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
                display: flex;
                align-items: flex-end;
                opacity: 0;
                transition: opacity 0.3s ease;
            }

                .service-details .project-showcase .showcase-grid .showcase-item .showcase-overlay .showcase-content {
                    padding: 2rem;
                    color: white;
                    width: 100%;
                }

                    .service-details .project-showcase .showcase-grid .showcase-item .showcase-overlay .showcase-content h4 {
                        font-size: 1.2rem;
                        font-weight: 400;
                        margin-bottom: 0.5rem;
                    }

                    .service-details .project-showcase .showcase-grid .showcase-item .showcase-overlay .showcase-content .project-type {
                        font-size: 0.9rem;
                        opacity: 0.8;
                        display: block;
                        margin-bottom: 1rem;
                    }

                    .service-details .project-showcase .showcase-grid .showcase-item .showcase-overlay .showcase-content .view-project {
                        color: white;
                        font-size: 1.5rem;
                        position: absolute;
                        top: 1.5rem;
                        right: 1.5rem;
                        transition: transform 0.3s ease;
                    }

                        .service-details .project-showcase .showcase-grid .showcase-item .showcase-overlay .showcase-content .view-project:hover {
                            transform: scale(1.2);
                        }

            .service-details .project-showcase .showcase-grid .showcase-item:hover h4 {
                color: var(--contrast-color);
            }

            .service-details .project-showcase .showcase-grid .showcase-item:hover img {
                transform: scale(1.05);
            }

            .service-details .project-showcase .showcase-grid .showcase-item:hover .showcase-overlay {
                opacity: 1;
            }

@media (max-width: 992px) {
    .service-details .service-header .service-title {
        font-size: 2.2rem;
    }

    .service-details .service-header .service-stats {
        justify-content: center;
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .service-details .service-overview .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .capabilities-section .custom-tabs {
        flex-direction: column;
    }

        .capabilities-section .custom-tabs .nav-item .nav-link {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
            border-right: none;
        }

            .capabilities-section .custom-tabs .nav-item .nav-link.active {
                background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
                border-bottom-color: var(--accent-color);
            }

    .service-details .project-showcase .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

        .service-details .project-showcase .showcase-grid .showcase-item.large {
            grid-column: span 2;
            grid-row: span 1;
        }

    .service-details .service-sidebar {
        margin-top: 3rem;
    }

        .service-details .service-sidebar .expertise-highlights .expertise-grid {
            grid-template-columns: 1fr 1fr 1fr;
        }
}

@media (max-width: 768px) {
    .service-details .service-header .service-title {
        font-size: 1.8rem;
    }

    .service-details .service-header .service-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .capabilities-section .custom-tabs .nav-item .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.6rem;
    }

    .service-details .project-showcase .showcase-grid {
        grid-template-columns: 1fr;
    }

        .service-details .project-showcase .showcase-grid .showcase-item.large {
            grid-column: span 1;
        }

    .service-details .service-sidebar .expertise-highlights .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
section.project-details {
    padding: 30px 0;
}
.project-details .project-hero {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

    .project-details .project-hero img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: all 0.4s ease;
    }

    .project-details .project-hero .project-hero-overlay {
        position: absolute;
        top: 30px;
        right: 30px;
    }

        .project-details .project-hero .project-hero-overlay .project-status {
            background: var(--accent-color);
            color: var(--contrast-color);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

@media (max-width: 768px) {
    .project-details .project-hero {
        margin-bottom: 0;
    }
    .page-title{
        padding: 80px 0;
    }

    .project-details .project-hero img {
        height: 300px;
    }

        .project-details .project-hero .project-hero-overlay {
            top: 20px;
            right: 20px;
        }
}

.project-details .project-info {
    padding-left: 30px;
}

    .project-details .project-info .project-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

        .project-details .project-info .project-meta span {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

    .project-details .project-info .project-title {
        font-size: 1.8rem;
        font-weight: 300;
        line-height: 1.3;
        margin-bottom: 10px;
        color: var(--heading-color);
    }
    .project-details .project-info .project-model {
        margin-bottom: 5px;
        line-height: 1.3;
    }
    .project-details .project-info label {
        width: 120px;
    }
    .project-details .project-info strong {
        font-size: 1.2rem;
        font-weight: 400;
        color: var(--accent-color);
    }
    .project-details .project-info strong.price {
        font-size: 1.5rem;
    }

    .project-details .project-info .project-description {
        font-size: 16px;
        line-height: 1.7;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 40px;
    }

    .project-details .project-info .project-details .detail-item {
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .project-details .project-info .project-details .detail-item:last-child {
            border-bottom: none;
        }

        .project-details .project-info .label {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-weight: 500;
        }

        .project-details .project-info .project-details .detail-item .value {
            color: var(--heading-color);
            font-weight: 600;
        }

@media (max-width: 992px) {
    .project-details .project-info {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .project-details .project-info .project-title {
        font-size: 2rem;
    }
}

.project-details .project-gallery {
    margin: 30px 0;
}

    .project-details .project-gallery .gallery-item {
        border-radius: 8px;
        overflow: hidden;
        height: 100%;
        transition: all 0.4s ease;
    }

        .project-details .project-gallery .gallery-item:hover {
            transform: translateY(-5px);
        }

        .project-details .project-gallery .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: all 0.4s ease;
        }

@media (max-width: 768px) {
    .project-details .project-gallery .gallery-item {
        margin-bottom: 20px;
    }

        .project-details .project-gallery .gallery-item img {
            height: 250px;
        }
}

.project-details .project-content {
    margin: 30px 0;
}

    .project-details .project-content .content-section {
        margin-bottom: 60px;
    }

        .project-details .project-content .content-section:last-child {
            margin-bottom: 0;
        }

        .project-details .project-content .content-section h3 {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 24px;
            color: var(--heading-color);
        }

        .project-details .project-content .content-section p {
            font-size: 16px;
            line-height: 1.8;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin-bottom: 20px;
        }
		.project-details .project-content .content-section img {
            width: 100%
        }

.project-details .solution-points {
    margin-top: 15px;
    text-align: justify;
}

        .project-details .solution-points .point-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

            .project-details .solution-points .point-item:last-child {
                margin-bottom: 0;
            }

            .project-details .solution-points .point-item .point-icon {
                margin-right: 10px;
            }

                .project-details .solution-points .point-item .point-icon i {
                    color: var(--accent-color);
                    font-size: 20px;
                }

            .project-details .solution-points .point-item .point-content h5 {
                font-size: 1.1rem;
                font-weight: 600;
                margin-bottom: 8px;
                color: var(--heading-color);
            }

            .project-details .solution-points .point-item .point-content p {
                margin-bottom: 0;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
            }

@media (max-width: 768px) {
    .project-details .project-content {
        margin: 30px 0;
    }
}

.project-details .project-specs {
    background-color: var(--surface-color);
    padding: 60px 40px;
    border-radius: 12px;
    margin-top: 80px;
}

    .project-details .project-specs .specs-content h3 {
        font-size: 1.8rem;
        font-weight: 300;
        margin-bottom: 40px;
        color: var(--heading-color);
    }

    .project-details .project-specs .specs-content .specs-grid .spec-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .project-details .project-specs .specs-content .specs-grid .spec-item:last-child {
            border-bottom: none;
        }

        .project-details .project-specs .specs-content .specs-grid .spec-item .spec-label {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-weight: 500;
        }

        .project-details .project-specs .specs-content .specs-grid .spec-item .spec-value {
            color: var(--heading-color);
            font-weight: 600;
        }

    .project-details .project-specs .specs-visual {
        padding-left: 40px;
    }

        .project-details .project-specs .specs-visual img {
            width: 100%;
            border-radius: 8px;
        }

@media (max-width: 992px) {
    .project-details .project-specs .specs-visual {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .project-details .project-specs {
        padding: 40px 20px;
        margin-top: 60px;
    }
}

/*--------------------------------------------------------------
# Quote Section
--------------------------------------------------------------*/
.quote .quote-container {
    max-width: 1200px;
    margin: 0 auto;
}

.quote .quote-content {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .quote .quote-content {
        padding: 40px 20px 60px;
        text-align: center;
    }
}

.quote .quote-content h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .quote .quote-content h2 {
        font-size: 32px;
    }
}

.quote .quote-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 50px;
}

.quote .quote-benefits {
    margin-bottom: 50px;
}

.quote .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

    .quote .benefit-item:last-child {
        margin-bottom: 0;
    }

@media (max-width: 992px) {
    .quote .benefit-item {
        justify-content: center;
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.quote .benefit-item .benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

    .quote .benefit-item .benefit-icon i {
        font-size: 24px;
        color: var(--accent-color);
    }

.quote .benefit-item .benefit-content h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.quote .benefit-item .benefit-content p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.quote .contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 992px) {
    .quote .contact-info {
        align-items: center;
    }
}

.quote .contact-info .contact-detail {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

    .quote .contact-info .contact-detail i {
        font-size: 16px;
        color: var(--accent-color);
        margin-right: 12px;
    }

.quote .quote-form {
    background: var(--surface-color);
    padding: 60px 50px;
    margin-left: 40px;
    border-radius: 4px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 94%);
}

@media (max-width: 992px) {
    .quote .quote-form {
        margin-left: 0;
        margin-top: 40px;
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .quote .quote-form {
        padding: 30px 20px;
    }
}

.quote .quote-form .form-intro {
    margin-bottom: 40px;
}

    .quote .quote-form .form-intro h3 {
        font-size: 28px;
        font-weight: 300;
        margin-bottom: 12px;
        color: var(--heading-color);
    }

    .quote .quote-form .form-intro p {
        font-size: 15px;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 0;
    }

.quote .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .quote .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.quote .form-field.full-width {
    grid-column: 1/-1;
}

.quote .form-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.quote input[type=text],
.quote input[type=email],
.quote input[type=tel],
.quote select,
.quote textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s ease;
    color: var(--default-color);
    background-color: var(--surface-color);
}

    .quote input[type=text]:focus,
    .quote input[type=email]:focus,
    .quote input[type=tel]:focus,
    .quote select:focus,
    .quote textarea:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 88%);
    }

    .quote input[type=text]::placeholder,
    .quote input[type=email]::placeholder,
    .quote input[type=tel]::placeholder,
    .quote select::placeholder,
    .quote textarea::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 55%);
    }

.quote select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
    appearance: none;
}

.quote textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--default-font);
}

.quote .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 18px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

    .quote .submit-btn:hover {
        background: color-mix(in srgb, var(--accent-color), #000 8%);
        transform: translateY(-1px);
    }

        .quote .submit-btn:hover i {
            transform: translateX(4px);
        }

    .quote .submit-btn i {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .contact .contact-main-wrapper {
        grid-template-columns: 45% 55%;
        min-height: 600px;
    }
}

.contact .map-wrapper {
    height: 300px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .contact .map-wrapper {
        height: 100%;
        position: sticky;
        top: 100px;
    }
}

.contact .contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact .contact-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 576px) {
    .contact .contact-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact .contact-card {
    background-color: var(--surface-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .contact .contact-card .icon-box {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .contact .contact-card .icon-box i {
            font-size: 22px;
            color: var(--accent-color);
        }

    .contact .contact-card .contact-text h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--heading-color);
    }

    .contact .contact-card .contact-text p {
        font-size: 14px;
        line-height: 1.5;
        color: var(--default-color);
        margin-bottom: 0;
    }

.contact-form-container {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .contact-form-container h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--heading-color);
        position: relative;
        padding-left: 15px;
    }

        .contact-form-container h3:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

    .contact-form-container > p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
        color: var(--default-color);
    }

    .contact-form-container .form-control {
        height: auto;
        border-radius: 10px;
        background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        color: var(--default-color);
        transition: all 0.3s ease;
    }

        .contact-form-container .form-control:focus {
            background-color: var(--surface-color);
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
        }

        .contact-form-container .form-control::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
        }

    .contact-form-container textarea.form-control {
        min-height: 140px;
    }

    .contact-form-container .form-submit {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 10px;
    }

@media (max-width: 576px) {
    .contact-form-container .form-submit {
        flex-direction: column;
        align-items: flex-start;
    }
}

.contact-form-container button {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .contact-form-container button:hover {
        background-color: color-mix(in srgb, var(--accent-color), #000 15%);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
    }

.contact-form-container .social-links {
    display: flex;
    gap: 12px;
}

    .contact-form-container .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
        color: var(--heading-color);
        font-size: 16px;
        transition: all 0.3s ease;
    }

        .contact-form-container .social-links a:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            transform: translateY(-3px);
        }

@media (max-width: 768px) {
    .contact-form-container {
        padding: 25px 20px;
    }

        .contact-form-container h3 {
            font-size: 22px;
        }
}

/*--------------------------------------------------------------
# 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 {
        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 {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

    .error-404 .error-number {
        font-size: clamp(120px, 20vw, 280px);
        font-weight: 300;
        color: color-mix(in srgb, var(--heading-color), transparent 15%);
        line-height: 0.8;
        margin-bottom: 40px;
        font-family: var(--heading-font);
        letter-spacing: -0.02em;
    }

    .error-404 .error-title {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 300;
        color: var(--heading-color);
        margin-bottom: 32px;
        letter-spacing: -0.01em;
    }

    .error-404 .error-description {
        font-size: 18px;
        line-height: 1.7;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 48px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .error-404 .error-actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        margin-bottom: 80px;
    }

@media (min-width: 576px) {
    .error-404 .error-actions {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
}

.error-404 .error-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

    .error-404 .error-actions .btn-primary:hover {
        background-color: transparent;
        color: var(--accent-color);
        transform: translateY(-2px);
    }

    .error-404 .error-actions .btn-primary i {
        font-size: 18px;
    }

.error-404 .error-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--heading-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

    .error-404 .error-actions .btn-secondary:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
        transform: translateY(-2px);
    }

    .error-404 .error-actions .btn-secondary i {
        font-size: 18px;
    }

.error-404 .helpful-links {
    text-align: center;
}

    .error-404 .helpful-links h3 {
        font-size: 24px;
        font-weight: 300;
        color: var(--heading-color);
        margin-bottom: 40px;
    }

    .error-404 .helpful-links .links-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        max-width: 800px;
        margin: 0 auto;
    }

@media (min-width: 768px) {
    .error-404 .helpful-links .links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.error-404 .helpful-links .link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    background-color: var(--surface-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--default-color);
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .error-404 .helpful-links .link-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
        color: var(--accent-color);
        border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    }

    .error-404 .helpful-links .link-item i {
        font-size: 24px;
        color: var(--accent-color);
        transition: all 0.3s ease;
    }

    .error-404 .helpful-links .link-item span {
        font-size: 16px;
        font-weight: 400;
    }

    .error-404 .helpful-links .link-item:hover i {
        transform: scale(1.1);
    }

@media (max-width: 768px) {
    .error-404 {
        padding: 80px 0;
    }

        .error-404 .error-actions {
            margin-bottom: 60px;
        }

        .error-404 .helpful-links .links-grid {
            grid-template-columns: repeat(2, 1fr);
        }
}

@media (max-width: 576px) {
    .error-404 .helpful-links .links-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/*new*/
.h-lang a{
    text-indent: -9999px;
    margin-left: 10px;
}
@media (max-width: 767px) {
    .h-lang {
        justify-content: center;
        margin-top: 30px;
    }
    .h-lang a {
        padding: 0 5px !important;
        display: inline-flex !important;
    }
}

/*plugin*/
.plugin-box {
    position: fixed;
    right: 15px;
    bottom: 70px;
    z-index: 9999;
}

.plugin-control {
    margin: 10px 0 0;
    position: relative;
}

.plugin-title {
    display: none;
    border-radius: 5px;
    white-space: nowrap;
    height: 40px;
    line-height: 40px;
    padding: 0 10px !important;
    position: absolute;
    top: 0;
    right: 50px;
    font-size: 12px !important;
    background: rgba(29, 36, 62, 0.7);
    color: #fff;
}

    .plugin-title::after {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -5px;
        right: -10px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent rgba(29, 36, 62, 0.7) transparent transparent !important;
        transform: rotateZ(-180deg);
    }

.plugin-a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    position: relative;
    border-radius: 50%;
    text-indent: -9999px
}

.plugin-control:hover .plugin-title {
    display: block;
}

.plugin-a.cart {
    background: url(images/cart.png) no-repeat center center / 40px 40px;
    background-color: #f7a400;
}

.plugin-a.contact {
    background: url(images/contact.svg) no-repeat center center / 40px 40px;
    background-color: #f7a400;
}

.plugin-a.zalo {
    background: url(images/zalo.svg) no-repeat center center / 40px 40px;
    background-color: #f7a400;
}

.plugin-a.facebook {
    background: url(images/facebook.svg) no-repeat center center / 40px 40px;
    background-color: #0068ff;
}

.plugin-a.call {
    background: url(images/call.svg) no-repeat center center / 40px 40px;
    background-color: #0068ff;
}

.plugin-a.scroll {
    background: url(images/scroll-top.png) no-repeat center center / 40px 40px;
    background-color: #f7a400;
}
/*end plugin*/
/*phone-fixed*/
.phone-box {
    position: fixed;
    bottom: 70px;
    left: 20px;
    z-index: 999;
}

    .phone-box a.icon {
        text-decoration: none;
        background: url(images/phone-icon.png) no-repeat center center / 15px 15px;
        width: 25px;
        height: 25px;
        float: left;
        position: relative;
    }

.tel {
    background: #eee;
    width: 190px;
    height: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 0 15px 0 0;
}

p.fone {
    text-align: right;
    line-height: 40px;
    margin: 0;
    height: 40px;
}

    p.fone a {
        font-size: 20px;
        color: #004bb1;
        font-weight: bold;
        text-decoration: none;
    }

.ring-alo-phone {
    background-color: transparent;
    cursor: pointer;
    height: 80px;
    position: absolute;
    transition: visibility 0.5s ease 0s;
    visibility: hidden;
    width: 80px;
    z-index: 200000 !important;
}

    .ring-alo-phone.ring-alo-show {
        visibility: visible;
        right: 135px;
        bottom: -13px;
    }

    .ring-alo-phone.ring-alo-hover, .ring-alo-phone:hover {
        opacity: 1;
    }

.ring-alo-ph-circle {
    animation: 1.2s ease-in-out 0s normal none infinite running ring-alo-circle-anim;
    background-color: transparent;
    border: 2px solid rgba(30, 30, 30, 0.4);
    border-radius: 100%;
    height: 70px;
    left: 10px;
    opacity: 0.1;
    position: absolute;
    top: 12px;
    transform-origin: 50% 50% 0;
    transition: all 0.5s ease 0s;
    width: 70px;
}

.ring-alo-phone.ring-alo-active .ring-alo-ph-circle {
    animation: 1.1s ease-in-out 0s normal none infinite running ring-alo-circle-anim !important;
}

.ring-alo-phone.ring-alo-static .ring-alo-ph-circle {
    animation: 2.2s ease-in-out 0s normal none infinite running ring-alo-circle-anim !important;
}

.ring-alo-phone.ring-alo-hover .ring-alo-ph-circle, .ring-alo-phone:hover .ring-alo-ph-circle {
    border-color: #f00;
    opacity: 0.5;
}

.ring-alo-phone.ring-alo-green.ring-alo-hover .ring-alo-ph-circle, .ring-alo-phone.ring-alo-green:hover .ring-alo-ph-circle {
    border-color: #baf5a7;
    opacity: 0.5;
}

.ring-alo-phone.ring-alo-green .ring-alo-ph-circle {
    border-color: #004bb1;
    opacity: 0.5;
}

.ring-alo-ph-circle-fill {
    animation: 2.3s ease-in-out 0s normal none infinite running ring-alo-circle-fill-anim;
    border-radius: 100%;
    height: 30px;
    left: 30px;
    position: absolute;
    top: 32px;
    transform-origin: 50% 50% 0;
    transition: all 0.5s ease 0s;
    width: 30px;
}

.ring-alo-phone.ring-alo-hover .ring-alo-ph-circle-fill, .ring-alo-phone:hover .ring-alo-ph-circle-fill {
    background-color: #005880;
    opacity: 0.75 !important;
}

.ring-alo-phone.ring-alo-green.ring-alo-hover .ring-alo-ph-circle-fill, .ring-alo-phone.ring-alo-green:hover .ring-alo-ph-circle-fill {
    background-color: #cc0027;
    opacity: 0.75 !important;
}

.ring-alo-phone.ring-alo-green .ring-alo-ph-circle-fill {
    background-color: #109fc2;
    opacity: 0.75 !important;
}

.ring-alo-ph-img-circle {
    animation: 1s ease-in-out 0s normal none infinite running ring-alo-circle-img-anim;
    border: 2px solid transparent;
    border-radius: 100%;
    height: 30px;
    left: 30px;
    opacity: 1;
    position: absolute;
    top: 32px;
    transform-origin: 50% 50% 0;
    width: 30px;
}

.ring-alo-phone.ring-alo-hover .ring-alo-ph-img-circle, .ring-alo-phone:hover .ring-alo-ph-img-circle {
    background-color: #cc0027;
}

.ring-alo-phone.ring-alo-green.ring-alo-hover .ring-alo-ph-img-circle, .ring-alo-phone.ring-alo-green:hover .ring-alo-ph-img-circle {
    background-color: #005880;
}

.ring-alo-phone.ring-alo-green .ring-alo-ph-img-circle {
    background-color: #004bb1;
}

.ring-alo-ph-img-circle a img {
    padding: 1px 0 0 1px;
    width: 25px;
    position: relative;
    top: 0px;
}

@keyframes ring-alo-circle-anim {
    0% {
        opacity: 0.1;
        -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
    }

    30% {
        opacity: 0.5;
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    }

    100% {
        opacity: 0.6;
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    }
}

@-webkit-keyframes ring-alo-circle-anim {
    0% {
        opacity: 0.1;
        -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
    }

    30% {
        opacity: 0.5;
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    }

    100% {
        opacity: 0.6;
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    }
}

@keyframes ring-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    }
}

@-webkit-keyframes ring-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    }
}

@keyframes ring-alo-circle-fill-anim {
    0% {
        opacity: 0.2;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }

    50% {
        opacity: 0.2;
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        opacity: 0.2;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }
}

@-webkit-keyframes ring-alo-circle-fill-anim {
    0% {
        opacity: 0.2;
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    }

    50% {
        opacity: 0.2;
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        opacity: 0.2;
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    }
}
/*end phonebox*/

.footer-brand ul{
    list-style: none;
    padding: 0;
    margin-top: 15px;
}
.footer-brand ul li {
    margin-bottom: 10px;
}
.footer-brand ul li i {
    margin-right: 10px;
}
.pagination li a {
    color: var(--default-color);
}
.pagination li.active a {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
}
.contact-form-container btn-card {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}
.project-info .form-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.project-info button {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 50%;
}
.project-info button:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}
.project-details .content-section {
    box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 15px;
}
    .project-details .content-section h1 {
        display: flex;
        justify-content: center;
        padding: 15px 0;
        margin-bottom: 30px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        font-size: 1.8rem;
    }
.projects.section{
    padding: 30px 0;
}
@media (max-width: 767.98px) {
    .project-details .content-section {
        padding: 10px;
    }
    .page-title h1 {
        font-size: 25px;
    }
}

#sync1 .item {
    text-align: center;
}

#sync2 .item {
    text-align: center;
    cursor: pointer;
}

    #sync1 .item img, #sync2 .item img {
        width: 100%;
        aspect-ratio: 1 / 0.6;
        object-fit: cover;
    }
    #sync2 .item img {
        border: 1px solid #ccc;
        border-radius: 10px;
        padding: 5px;
    }

.owl-theme .owl-nav {
    /*default owl-theme theme reset .disabled:hover links */
}

    .owl-theme .owl-nav [class*=owl-] {
        transition: all 0.3s ease;
    }

        .owl-theme .owl-nav [class*=owl-].disabled:hover {
            background-color: #D6D6D6;
        }

#sync1.owl-theme {
    position: relative;
}

    #sync1.owl-theme .owl-next, #sync1.owl-theme .owl-prev {
        width: 22px;
        height: 40px;
        margin-top: -20px;
        position: absolute;
        top: 50%;
    }

    #sync1.owl-theme .owl-prev {
        left: 10px;
    }

    #sync1.owl-theme .owl-next {
        right: 10px;
    }

.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    padding: 5px !important;
}