/* =========================
   Global Settings & Navbar
   ========================= */

@media (min-width: 992px) {
    .navbar-logo {
        width: 300px !important;
        height: 42px !important;
    }
}

    :root {
        /* --primary-color:#6D5D4C;
        --secondary-color:#8A7866; 
        --accent-color:#C3B8A5; 
        --light-color:#F5F1EB; 
        --dark-color:#3E352B; 
        --beige-color:#C3B8A5; */
        --primary-color: #2F2F2F;   /* gri e errët / pothuaj e zezë */
        --secondary-color: #B5523B; /* terrakotë – nga logoja */
        --accent-color: #8C8C8C;    /* gri industriale */
        --light-color: #F4F4F4;     /* e bardhë e ngrohtë */
        --dark-color: #1F1F1F;
            }

            html, body {
            max-width: 100vw;
            overflow-x: hidden;
}
   
        body {
            font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: #495057;
            overflow-x: hidden;
            transition: opacity 0.3s ease;
        }
/* Smooth scrolling for anchor links */
        html { scroll-behavior: smooth;}

/* Global smooth transitions for all interactive elements */
        a, button, .btn, input, select, textarea {
            transition: all 0.3s ease;
        }

        .btn {
            transition: all 0.3s ease;
            transform: translateY(0);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        /* Smooth card hover effects */
        .card, .product-card, .project-item {
            transition: all 0.4s ease;
        }

/* Global heading font: Montserrat for all titles */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .section-title,
    .about-title,
    .core-values-title,
    .approach-title,
    .hero-card-white h3,
    .project-title {
        font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

/* =========================
    Navbar & Navigation
    ========================= */

          .navbar {
            background-color: transparent;
            box-shadow: none;
            padding: 15px 20px;
        }

        /* Navbar container with dark background and rounded corners */
        .navbar-container {
            background-color:white;  
            border:1px solid rgba(255, 255, 255, 0.35);
            border-radius: 6px;
            padding: 8px 25px;
            display: flex;
            align-items: center;
            max-width: 1400px;
        }
        
    

        /* Products dropdown button - pill style */
        .products-dropdown-desktop {
            margin-left: 20px;
        }

        .products-btn {
            background-color: rgba(255, 255, 255, 0.08) !important;
            border: 1px solid var(--dark-color) !important;
            /* border-radius: 25px !important; */
            padding: 8px 18px !important;
           color: var(--dark-color) !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
      

    

        /* Center nav links */
        .navbar-center-links {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            margin: 0 15px;
            gap: 5px;
            min-width: 0;
        }
        
        .navbar-logo {
             /* Përshtat lartësinë e logos sipas nevojës */
            width:150px;
            height: 42px;
                /* filter: 
                drop-shadow(2px 0 0 #fff)
                drop-shadow(-2px 0 0 #fff)
                drop-shadow(0 2px 0 #fff)
                drop-shadow(0 -2px 0 #fff)
                drop-shadow(2px 2px 0 #fff)
                drop-shadow(-2px -2px 0 #fff)
                drop-shadow(-2px 2px 0 #fff)
                drop-shadow(2px -2px 0 #fff); */
        }

      
        
/* =========================
    Hero Slider & Carousel
    ========================= */

          /* Hero images: use background images for better display */
        .hero-slider .carousel-item { height: 100vh; }
        .hero-slider .hero-img {
            display: none; /* Hide img elements, using background-image instead */
        }
        
        .hero-slider .carousel-item.slide-1 {
            background-image: url('images/image2.jpg');
        }
        
        .hero-slider .carousel-item.slide-2 {
            background-image: url('images/WhatsApp%20Image%202025-10-22%20at%2001.10.56_99b3b4c2.jpg');
        }

        /* Carousel arrows visible and positioned */
        .hero-slider .carousel-control-prev,
        .hero-slider .carousel-control-next {
        width: 48px;
        height: 48px;
        background: rgba(0,0,0,0.4);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
        }
        .hero-slider .carousel-control-prev { left: 16px; }
        .hero-slider .carousel-control-next { right: 16px; }

        /* "TÃ« gjitha" active button should look like outline */
        .category-filter .btn-outline-primary.active,
        .category-filter .btn-outline-primary:focus,
        .category-filter .btn-outline-primary:active {
        background: var(--secondary-color) !important;
        color: white !important;
        border-color: var(--secondary-color) !important;
        box-shadow: none !important;
        }

        /* Products Dropdown Style Only */
        .products-dropdown-desktop {
            position: relative;
        }

        .products-dropdown-desktop .dropdown-menu,
        .navbar-collapse .dropdown-menu {
            border-radius: 10px;
            padding: 6px 4px;
            background: var(--primary-color);
            margin-top: 6px;
            min-width: 100%;
            width: max-content;
            animation: dropdownFadeIn 0.2s ease;
        }

        @keyframes dropdownFadeIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .products-dropdown-desktop .dropdown-item,
        .navbar-collapse .dropdown-menu .dropdown-item {
            border-radius: 6px;
            padding: 8px 12px;
            color: var(--light-color);
            font-weight: 500;
            font-size: 0.85rem;
            margin: 2px 0;
            background: transparent;
            transition: color 0.2s ease;
            white-space: nowrap;
        }

        .products-dropdown-desktop .dropdown-item:hover,
        .products-dropdown-desktop .dropdown-item:focus,
        .navbar-collapse .dropdown-menu .dropdown-item:hover,
        .navbar-collapse .dropdown-menu .dropdown-item:focus {
            color: var(--secondary-color);
            background: transparent;
        }

        .products-dropdown-desktop .dropdown-item:active,
        .products-dropdown-desktop .dropdown-item.active,
        .navbar-collapse .dropdown-menu .dropdown-item:active,
        .navbar-collapse .dropdown-menu .dropdown-item.active {
            background: transparent;
            color: var(--secondary-color) !important;
        }

        .navbar .dropdown-toggle {
            display: inline-flex;
            align-items: center;
        }

        .navbar .dropdown-toggle::after {
            transition: transform 0.3s ease;
            vertical-align: middle;
            margin-top: 0;
        }

        .navbar .dropdown.show .dropdown-toggle::after {
            transform: rotate(180deg);
        }
      

       
/* =========================
   Projects Carousel Section
   ========================= */

        .projects-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .project-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        #projectCarousel {
            height: 500px;
        }
        
        #projectCarousel .carousel-inner {
            border-radius: 12px;
            overflow: hidden;
            height: 500px;
        }
        
        #projectCarousel .carousel-item {
            background: transparent;
            height: 500px;
        }
        
        #projectCarousel .carousel-item .row,
        #projectCarousel .carousel-item .col-12 {
            margin: 0;
            padding: 0;
            height: 100%;
        }
        
        .project-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            line-height: 0;
            height: 500px !important;
            min-height: 500px !important;
            max-height: 500px !important;
        }
        
        .project-item img {
            width: 100% !important;
            height: 500px !important;
            min-height: 500px !important;
            max-height: 500px !important;
            object-fit: cover !important;
            object-position: center center !important;
            display: block;
            transition: transform 0.3s;
        }
        
        .project-item:hover img {
            transform: scale(1.03);
        }
        
        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
            padding: 25px 20px 15px;
            color: #fff;
            min-height: 80px;
            z-index: 2;
        }
        
        .project-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 35px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }
        
        .project-category {
            font-size: 1rem;
            opacity: 0.92;
            text-shadow: 0 1px 6px rgba(0,0,0,0.25);
        }
        
        /* Project carousel controls - specific styling */
        #projectCarousel .carousel-control-prev,
        #projectCarousel .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.9;
        }
        
        #projectCarousel .carousel-control-prev {
            left: -60px;
        }
        
        #projectCarousel .carousel-control-next {
            right: -60px;
        }
        
        #projectCarousel .carousel-control-prev:hover,
        #projectCarousel .carousel-control-next:hover {
            opacity: 1;
        }
        
        /* Project carousel responsive for mobile */
        @media (max-width: 991.98px) {
            #projectCarousel .carousel-control-prev {
                left: 10px;
            }
            #projectCarousel .carousel-control-next {
                right: 10px;
            }
            #projectCarousel,
            #projectCarousel .carousel-inner,
            #projectCarousel .carousel-item {
                height: 400px !important;
            }
            .project-item {
                height: 400px !important;
                min-height: 400px !important;
                max-height: 400px !important;
            }
            .project-item img {
                height: 400px !important;
                min-height: 400px !important;
                max-height: 400px !important;
            }
        }
        
        @media (max-width: 575.98px) {
            #projectCarousel,
            #projectCarousel .carousel-inner,
            #projectCarousel .carousel-item {
                height: 300px !important;
            }
            .project-item {
                height: 300px !important;
                min-height: 300px !important;
                max-height: 300px !important;
            }
            .project-item img {
                height: 300px !important;
                min-height: 300px !important;
                max-height: 300px !important;
            }
            .project-title {
                font-size: 1.1rem;
            }
            .project-overlay {
                padding: 15px 12px 10px;
            }
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 700;
            color: var(--secondary-color);
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 15px auto 0;
        }
        
        .section-subtitle {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .card-body {
            text-align: left;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
        }

        .card-body .btn {
            margin-top: auto;
            align-self: flex-start;
        }
        /* Fiksimi i lartësisë së kartës së produktit për uniformitet */
       
        ul.list-unstyled li a {
            text-decoration: none;  
            color: inherit;         
        }
        .social-links a {
            text-decoration: none;  
            color: inherit;         
        }

        .social-links a:hover {
            text-decoration: none;
            color:var(--primary-color); 
        }
         
        /* Përshtatje për mobile */
        @media (max-width: 991.98px) {
            /* Navbar bar with subtle card look */
            .navbar {
                 /* background-color: var(--light-color);  */
                padding: 8px 12px;
                /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); */
            }

            .navbar-container {
                max-width: 100%;
                padding: 8px 14px;
                border-radius: 6px;
                border: 1px solid rgba(0, 0, 0, 0.04);
                background-color: #ffffff;
            }

            .navbar-brand {
                flex-grow: 1;
            }

            .navbar-toggler-container {
                display: flex;
                align-items: center;
                gap: 16px; /* më shumë hapësirë mes flagut dhe toglerit */
                padding: 0;
            }

            /* Mobile language selector: pill with flag + code */
            .lang-selector-mobile {
                display: block !important;
            }

            .lang-selector-desktop {
                display: none !important;
            }

            .lang-btn-mobile {
                display: inline-flex;
                align-items: center;
                gap: 5px;
                padding: 5px 10px;
                font-size: 0.85rem;
                font-weight: 500;
                background: transparent;
                border: 1px solid var(--accent-color);
                /* border-radius: 5px; */
                color: var(--primary-color);
                margin: 6px;
                transition: none;
                outline: none;
                box-shadow: none;
            }

            .lang-btn-mobile:focus,
            .lang-btn-mobile:active,
            .lang-btn-mobile:focus-visible {
                outline: none !important;
                box-shadow: none !important;
                border-color: var(--accent-color) !important;
                background: transparent !important;
            }

            .lang-btn-mobile::after {
                display: none;
            }

            /* Mobile dropdown - same width as button */
            .lang-selector-mobile .dropdown {
                position: relative;
                display: inline-block;
            }

            .lang-dropdown-mobile {
                min-width: 100% !important;
                width: 100% !important;
                padding: 3px !important;
                border-radius: 5px !important;
                border: 1px solid var(--accent-color) !important;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
                background: white !important;
                margin-top: 2px !important;
            }

            .lang-dropdown-mobile .dropdown-item {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 5px;
                padding: 4px 8px;
                border-radius: 3px;
                font-size: 0.75rem;
                color: var(--dark-color);
                transition: all 0.2s ease;
                white-space: nowrap;
            }

            .lang-dropdown-mobile .dropdown-item:hover {
                background-color: var(--light-color);
                color: var(--secondary-color);
            }

            /* Mobile flag images - smaller */
            .lang-btn-mobile .lang-flag-img {
                width: 16px;
                height: 11px;
            }

            .lang-btn-mobile .lang-code {
                font-size: 0.75rem;
            }

            /* Dropdown flag images - same as button */
            .lang-dropdown-mobile .dropdown-item .lang-flag-img {
                width: 14px;
                height: 10px;
            }

            /* Slide-in menu from the right (covers 60% of viewport) */
            .navbar-collapse {
                position: fixed;
                top: 0;
                right: 0;
                width: 60vw; /* 60% e viewport-it në mobile */
                height: 100vh;
                background: radial-gradient(circle at top, rgba(244, 244, 244, 0.06) 0, transparent 45%),
                            var(--dark-color);
                padding: 90px 24px 32px;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.45);
                transform: translateX(100%);
                opacity: 0;
                transition: transform 0.35s ease, opacity 0.25s ease;
                z-index: 999;
                text-align: left;
            }

        

            .navbar-collapse.show {
                transform: translateX(0);
                opacity: 1;
            }

            .navbar-nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .navbar-collapse .nav-link {
                position: relative;
                width: 100%;
                color: rgba(255, 255, 255, 0.9);
                padding: 12px 0 !important;
                margin: 4px 0;
                border-radius: 0;
                background: transparent !important;
                font-size: 1.1rem;
                font-weight: 500;
            }

            .navbar-collapse .nav-link:hover {
                color: #ffffff;
            }

            .navbar-collapse .nav-link.active {
                color: var(--secondary-color);
            }

            /* Vijë aktive sa gjatësia e tekstit */
            .navbar-collapse .nav-link > span {
                position: relative;
                display: inline-block;
            }

            .navbar-collapse .nav-link.active > span::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: -4px;
                width: 100%;
                height: 2px;
                background-color: var(--secondary-color);
            }

            /* Butoni X brenda panelit për ta mbyllur menunë */
            .mobile-menu-close-btn {
                position: absolute;
                top: 26px;
                right: 20px;
                background: transparent;
                border: none;
                color: #ffffff;
                font-size: 2.4rem;
                line-height: 1;
                padding: 0;
                cursor: pointer;
            }

            .mobile-menu-close-btn:hover {
                color: rgba(255, 255, 255, 0.8);
            }

            /* Products dropdown inside slide-in menu */
            .navbar-collapse .dropdown-toggle::after {
                margin-left: 0.4rem;
                border-top: 0.4em solid rgba(255, 255, 255, 0.85);
                border-right: 0.3em solid transparent;
                border-left: 0.3em solid transparent;
            }

            /* Mobile dropdown - clean sublinks style, no box */
            .navbar-collapse .dropdown-menu {
                position: static;
                float: none;
                width: 100%;
                margin: 0;
                padding: 0 0 0 16px;
                background: transparent !important;
                border: none !important;
                border-radius: 0;
                box-shadow: none !important;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: max-height 0.4s ease, opacity 0.3s ease;
            }

            .navbar-collapse .dropdown-menu.show {
                max-height: 500px;
                opacity: 1;
            }

            /* Mobile dropdown items - simple sublinks */
            .navbar-collapse .dropdown-menu .dropdown-item {
                background: transparent !important;
                border: none !important;
                border-radius: 0;
                padding: 8px 0;
                margin: 0;
                color: rgba(255, 255, 255, 0.75);
                font-weight: 400;
                font-size: 0.95rem;
            }

            .navbar-collapse .dropdown-menu .dropdown-item:hover,
            .navbar-collapse .dropdown-menu .dropdown-item:focus {
                background: transparent !important;
                color: var(--secondary-color);
            }

            .navbar-collapse .dropdown-menu .dropdown-divider {
                display: none;
            }

            /* Hamburger icon styled with primary color */
            .navbar-toggler {
                border-color: transparent;
                padding: 6px 16px; /* pak më i gjatë horizontalisht */
                border-radius: 18px; /* më pak border-radius, formë më drejtkëndore */
                background-color: var(--secondary-color);
            }

          

            .navbar-toggler-icon {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            }

        }
        
        /* Përshtatje për desktop */
        @media (min-width: 992px) {
            .lang-selector-mobile {
                display: none !important;
            }
            
            .lang-selector-desktop {
                display: block !important;
            }
            
            /* Desktop language selector: unified style */
            .lang-selector-desktop {
                flex-shrink: 0;
                margin-left: auto;
            }

            .lang-btn-desktop {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                padding: 6px 12px;
                font-size: 0.9rem;
                font-weight: 500;
                background: transparent;
                border: 1px solid var(--accent-color);
                border-radius: 6px;
                color: var(--primary-color);
                transition: none;
                line-height: 1;
                outline: none;
                box-shadow: none;
            }

            .lang-btn-desktop:focus,
            .lang-btn-desktop:active,
            .lang-btn-desktop:focus-visible {
                outline: none !important;
                box-shadow: none !important;
                border-color: var(--accent-color) !important;
                background: transparent !important;
            }

            .lang-btn-desktop::after {
                display: none;
            }

            /* Desktop dropdown - same width as button */
            .lang-selector-desktop .dropdown {
                position: relative;
                display: inline-block;
            }

            .lang-dropdown-desktop {
                min-width: 100% !important;
                width: 100% !important;
                padding: 3px !important;
                border-radius: 6px !important;
                border: 1px solid var(--accent-color) !important;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
                background: white !important;
                margin-top: 2px !important;
            }

            .lang-dropdown-desktop .dropdown-item {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 5px;
                padding: 4px 8px;
                border-radius: 4px;
                font-size: 0.8rem;
                color: var(--dark-color);
                transition: all 0.2s ease;
                white-space: nowrap;
            }

            .lang-dropdown-desktop .dropdown-item:hover {
                background-color: var(--light-color);
                color: var(--secondary-color);
            }

            /* Desktop dropdown flag images - same as button */
            .lang-dropdown-desktop .dropdown-item .lang-flag-img {
                width: 16px;
                height: 11px;
            }

            .lang-dropdown-desktop .dropdown-item .lang-flag,
            .lang-dropdown-mobile .dropdown-item .lang-flag {
                font-size: 1rem;
                line-height: 1;
            }

            .lang-dropdown-desktop .dropdown-item .lang-code,
            .lang-dropdown-mobile .dropdown-item .lang-code {
                font-weight: 500;
                font-size: 0.75rem;
            }

            /* Flag images style - responsive */
            .lang-flag-img {
                width: 18px;
                height: 12px;
                object-fit: cover;
                border-radius: 2px;
                vertical-align: middle;
                flex-shrink: 0;
            }

            .lang-code {
                font-weight: 500;
                font-size: 0.8rem;
                color: var(--primary-color);
            }

            /* Shto më shumë hapësirë për description në desktop */
            .project-overlay {
                min-height: 150px;
                padding-bottom: 20px;
            }
        }

        /* Breakpoint për viewport 1090px dhe më të vogël */
        @media (max-width: 1199px) {
            .navbar-container {
                padding: 8px 18px;
            }

            .navbar-center-links {
                margin: 0 10px;
                gap: 2px;
            }

            .navbar-center-links .nav-link {
                padding: 8px 10px !important;
                margin: 0 2px;
                font-size: 0.95rem;
            }

            .products-dropdown-desktop {
                margin-left: 15px;
            }

            .lang-selector-desktop {
                margin-left: 10px;
            }
        }

        @media (max-width: 1090px) {
            .navbar-container {
                padding: 8px 14px;
            }

            .navbar-center-links {
                margin: 0 8px;
                gap: 0;
            }

            .navbar-center-links .nav-link {
                padding: 8px 8px !important;
                margin: 0 1px;
                font-size: 0.9rem;
            }

            .products-dropdown-desktop {
                margin-left: 10px;
            }

            .products-btn {
                padding: 6px 12px !important;
                font-size: 0.85rem;
            }

            .navbar-logo {
                width: 120px;
                height: 35px;
            }

            .lang-selector-desktop {
                margin-left: 8px;
            }

            .lang-btn-desktop {
                padding: 5px 10px;
                font-size: 0.8rem;
            }

            .lang-flag-img {
                width: 15px;
                height: 10px;
            }
        }
        
        .nav-link {
            color: var(--dark-color);
            font-weight: 500;
            margin: 0 8px;
            padding: 10px 16px !important;
            transition: all 0.3s ease;
            border-radius: 15px;
        }
        
        /* Center nav links - plain text style */
        .navbar-center-links .nav-link {
            /* color: var(--dark-color); */
            font-weight: 500;
            margin: 0 5px;
            padding: 10px 14px !important;
            transition: all 0.3s ease;
            border-radius: 0;
            background: transparent !important;
            border: none !important;
        }
        
        .navbar-center-links .nav-link:hover {
            color: var(--secondary-color);
            background-color: transparent !important;
        }
        
        .navbar-center-links .nav-link.active {
            color: var(--secondary-color);
        }

        /* Remove pill from center dropdown links on mobile */
        .navbar-center-links .nav-item.dropdown > .nav-link {
            background-color: transparent !important;
            border: none !important;
        }

        .nav-link {
            text-align: left;
        }
        .product-detail-section {
            padding: 50px 0;
            margin-top: 120px;
        }
        
        .product-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .specs-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .specs-table td:first-child {
            font-weight: 500;
            width: 40%;
            color: var(--dark-color);
        }
        
        .color-option {
            display: inline-block;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
            border: 2px solid #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .color-option.selected {
            border-color: var(--primary-color);
            transform: scale(1.1);
        }

        /* Color options inside specs table */
        .color-options-inline {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .color-option-small {
            display: inline-block;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 2px solid #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .color-option-small:hover {
            transform: scale(1.15);
            border-color: var(--secondary-color);
        }
        
        .technical-drawing {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-top: 30px;
        }
        
        .drawing-placeholder {
            background-color: #f5f5f5;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            margin-top: 15px;
        }
         .btn-primary {
            background-color: var(--secondary-color) !important;
            border-color: var(--secondary-color) !important;
            padding: 10px 15px;
            /* border-radius: 30px; */
            font-weight: 600;
            color: white !important;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
            color: white !important;
            box-shadow: none !important;
        }

        .btn-primary:focus,
        .btn-primary:focus-visible {
            background-color: var(--secondary-color) !important;
            border-color: var(--secondary-color) !important;
            color: white !important;
            box-shadow: none !important;
            outline: none !important;
        }
        
        .btn-outline-primary {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            color: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
            background-color: transparent !important;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
            color: white !important;
            box-shadow: none !important;
        }

        .btn-outline-primary:focus,
        .btn-outline-primary:focus-visible {
            background-color: transparent !important;
            border-color: var(--primary-color) !important;
            color: var(--primary-color) !important;
            box-shadow: none !important;
            outline: none !important;
        }
        
        .back-button {
            margin-bottom: 30px;
            color: var(--primary-color);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 30px;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            margin-top: 15px;
        }
        
/* =========================
   Footer Layout & Content
   ========================= */

        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 0;
            margin-top: 50px;
        }

        .footer-main {
            background-color: var(--dark-color);
            padding: clamp(30px, 5vw, 60px) 0 0;
        }

        .footer-content {
            max-width: 1400px;
            padding: 0 clamp(15px, 4vw, 40px);
        }

        /* Top Section - 3 Columns */
        .footer-top {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: clamp(25px, 4vw, 50px);
            padding: clamp(30px, 5vw, 60px) 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-col {
            display: flex;
            flex-direction: column;
        }

        .footer-col h5,
        .footer-col h6 {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: clamp(15px, 3vw, 25px);
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            min-height: 1.5rem;
            display: flex;
            align-items: center;
            text-transform: uppercase;
        }

        /* Column 1: Logo & Working Hours */
        .footer-brand {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            font-weight: 700;
            color: white;
            margin-bottom: clamp(20px, 4vw, 30px);
        }

        .working-hours h6 {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

        .working-hours p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin-bottom: 8px;
            line-height: 1.6;
        }

        /* Column 2: Contact Info */
        .contact-item {
            margin-bottom: 20px;
        }

        .contact-item p:first-child {
            color: white;
            margin-bottom: 5px;
            /* font-size: 0.95rem; */
        }

        .contact-item p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-size: 0.9rem;
        }

        .contact-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--secondary-color);
        }

        .contact-dot {
            width: 8px;
            height: 8px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            margin: 30px 0 20px 0;
        }

        /* Column 3: Get In Touch */
        .footer-col-3 .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .footer-col-3 .contact-item i {
            color: var(--secondary-color);
            font-size: 1rem;
            min-width: 18px;
            flex-shrink: 0;
        }

        .footer-col-3 .contact-item span {
            color: white;
            font-weight: 600;
            min-width: 50px;
            flex-shrink: 0;
        }

        .footer-col-3 .contact-item p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-size: 0.9rem;
        }

        /* Social Section */
        .footer-socials {
            padding: 50px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-socials h6 {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .social-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.15);
            outline: none;
        }

        .social-btn:hover {
            background-color: var(--secondary-color);
            color: white;
            border-color: var(--secondary-color);
        }

        .social-btn:focus,
        .social-btn:focus-visible,
        .social-btn:active {
            background-color: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            border-color: rgba(255, 255, 255, 0.15);
            outline: none;
            box-shadow: none;
        }

        .social-btn i {
            font-size: 1rem;
        }

        /* Bottom Section - Navigation & Copyright */
        .footer-bottom {
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-nav {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--secondary-color);
        }

        .footer-nav a:focus,
        .footer-nav a:focus-visible {
            color: rgba(255, 255, 255, 0.8);
            outline: none;
        }

        .footer-copyright p {
            margin: 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .footer-copyright a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
            pointer-events: auto;
            position: relative;
            z-index: 10;
            display: inline-block;
        }

        .footer-copyright a:hover {
            color: rgba(255, 255, 255, 1);
            text-decoration: underline;
        }

        /* Responsive Footer */
        @media (max-width: 1199px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .footer-col h5,
            .footer-col h6 {
                font-size: 1rem;
                margin-bottom: 18px;
            }
        }

        @media (max-width: 767px) {
            .footer-main {
                padding: 25px 0 0;
            }

            .footer-content {
                padding: 0 15px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 30px 0;
            }

            .footer-col h5,
            .footer-col h6 {
                font-size: 0.95rem;
                margin-bottom: 15px;
            }

            .footer-brand {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }

            .working-hours h6 {
                font-size: 0.85rem;
                margin-bottom: 10px;
            }

            .working-hours p {
                font-size: 0.85rem;
            }

            .contact-item p {
                font-size: 0.85rem;
            }

            .footer-socials {
                padding: 25px 0;
            }

            .footer-socials h6 {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }

            .social-buttons {
                gap: 12px;
            }

            .social-btn {
                padding: 10px 16px;
                font-size: 0.8rem;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
                padding: 20px 0;
            }

            .footer-nav {
                gap: 12px;
                font-size: 0.85rem;
            }

            .footer-copyright p {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .footer-main {
                padding: 20px 0 0;
            }

            .footer-content {
                padding: 0 12px;
            }

            .footer-top {
                gap: 20px;
                padding: 25px 0;
            }

            .footer-col h5,
            .footer-col h6 {
                font-size: 0.9rem;
                margin-bottom: 12px;
            }

            .footer-brand {
                font-size: 1rem;
            }

            .footer-socials {
                padding: 20px 0;
            }

            .social-buttons {
                gap: 10px;
            }

            .social-btn {
                padding: 8px 14px;
                font-size: 0.75rem;
            }

            .footer-bottom {
                padding: 15px 0;
            }

            .footer-nav {
                gap: 10px;
                flex-wrap: wrap;
            }

            .footer-nav a {
                font-size: 0.8rem;
            }
        }
        
        .specs-highlight {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        
        .specs-highlight h4 {
            color: var(--primary-color);
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .hero-slider {
            height: 100vh;
            min-height: 800px;
            position: relative;
            overflow: visible;
            margin-top: 0;
        }
        
        .carousel-item {
            height: 100vh;
            min-height: 800px;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
        }
        
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0.1) 100%);
            z-index: 1;
        }
        
        .carousel-caption {
            color: #fff;
            padding: 0;
            text-align: left;
            z-index: 2;
            top: 50%;
            transform: translateY(-50%);
            left: 5%;
            right: auto;
            max-width: 650px;
        }

        /* Hero tagline with marker */
        .hero-tagline {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.9);
        }

        .tagline-marker {
            width: 8px;
            height: 8px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }
        
        .carousel-caption h2 {
            font-weight: 700;
            font-size: 3.2rem;
            line-height: 1.15;
            text-shadow: none;
            margin-bottom: 24px;
            text-transform: none;
            color: #ffffff;
        }
        
        .carousel-caption p {
            font-size: 1.1rem;
            line-height: 1.7;
            text-shadow: none;
            margin-bottom: 35px;
            color: rgba(255,255,255,0.85);
            max-width: 520px;
        }

        /* Hero buttons group */
        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background-color: var(--secondary-color);
            color: #fff;
            padding: 14px 20px 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-hero-primary i {
            background-color: var(--dark-color);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }

        .btn-hero-primary:hover {
            background-color: #9a4430;
            color: #fff;
        }

        .btn-hero-primary:focus,
        .btn-hero-primary:focus-visible {
            background-color: var(--secondary-color);
            color: #fff;
            outline: none;
            box-shadow: none;
        }

        .btn-hero-primary:hover i {
            transform: translateX(4px);
        }

        .btn-hero-outline {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: transparent;
            color: #fff;
            padding: 12px 24px;
            border: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .btn-hero-outline .play-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .btn-hero-outline .play-icon i {
            font-size: 0.9rem;
            margin-left: 3px;
        }

        .btn-hero-outline:hover {
            color: #fff;
        }

        .btn-hero-outline:focus,
        .btn-hero-outline:focus-visible {
            color: #fff;
            outline: none;
            box-shadow: none;
        }

        .btn-hero-outline:hover .play-icon {
            background-color: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.6);
        }

        /* Experience badge */
        .hero-experience-badge {
            position: absolute;
            top: 28%;
            right: 8%;
            z-index: 3;
        }

        .badge-inner {
            width: 130px;
            height: 130px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            position: relative;
        }

        .badge-inner::before {
            content: '';
            position: absolute;
            top: -12px;
            left: -12px;
            right: -12px;
            bottom: -12px;
            border: 1px dashed white;
            border-radius: 50%;
            animation: rotateBadge 20s linear infinite;
        }

        @keyframes rotateBadge {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .badge-years {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary-color);
            line-height: 1;
        }

        .badge-text {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--dark-color);
            text-transform: uppercase;
            margin-top: 4px;
        }

        /* Hero Bottom Cards - Half in, half out of hero */
        .hero-bottom-cards {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10;
            transform: translateY(50%);

        }

        .hero-bottom-cards .container {
            max-width: 1200px;
        }

        .hero-card {
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .hero-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.25);
        }

        /* White Card (Left) - Fixed dimensions */
        .hero-card-white {
            background-color:var(--dark-color);
            display: flex;
            align-items: stretch;
            width: 100%;
            height: 220px;
        }

        .hero-card-white .hero-card-content {
            flex: 1;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hero-card-tag {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 10px;
            width: fit-content;
        }

        .hero-card-white h3 {
            font-size: 1.15rem;
            /* font-weight: 700; */
            color: white;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .hero-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .hero-card-link i {
            width: 24px;
            height: 24px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.7rem;
        }

        .hero-card-link:hover {
            color: var(--secondary-color);
        }

        .hero-card-white .hero-card-image {
            width: 45%;
            min-width: 140px;
            overflow: hidden;
        }

        .hero-card-white .hero-card-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Center Image Card - Fixed dimensions */
        .hero-card-image-only {
            width: 100%;
            height: 280px;
            border-radius: 16px;
            overflow: hidden;
        }

        .hero-card-image-only img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hero-card-image-only:hover img {
            transform: scale(1.05);
        }

        /* Projects Card (Center) - Projects Counter */
        .hero-card-projects {
            width: 100%;
            height: 280px;
            border-radius: 16px;
            overflow: hidden;
            background-color: var(--dark-color);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            text-align: center;
        }

        .hero-card-projects-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: white;
        }

        .projects-counter {
            display: flex;
            align-items: baseline;
            justify-content: center;
            margin-bottom: 15px;
        }

        .counter-number {
        font-size: 3rem;
        font-weight: 800;
        color: #fff;
        line-height: 1;
        background: linear-gradient(135deg, #fff 0%, var(--secondary-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        }

        .counter-plus {
            font-size: 36px;
            font-weight: 700;
            color: var(--secondary-color);
            margin-left: 5px;
        }

        .projects-label {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 15px;
            color: white;
            text-transform: uppercase;
        }

        .hero-card-projects .hero-card-link {
            color: white;
            border-color: white;
        }

        .hero-card-projects .hero-card-link:hover {
            color: var(--secondary-color);
        }

        .hero-card-projects .hero-card-link:hover i {
            background-color: var(--secondary-color);
            color: #fff;
        }

        /* Dark Card (Right) - Fixed dimensions */
        .hero-card-dark {
            background-color: var(--dark-color);
            padding: 24px;
            width: 100%;
            height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hero-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .hero-card-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-card-icon i {
            font-size: 1.3rem;
            color: white;
        }

        .hero-card-avatars {
            display: flex;
        }

        .hero-card-avatars img {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2px solid var(--dark-color);
            margin-left: -10px;
            object-fit: cover;
        }

        .hero-card-avatars img:first-child {
            margin-left: 0;
        }

        .hero-card-dark p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .hero-card-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }

        /* Creative Dark Card Styles */
        .hero-card-dark {
            position: relative;
            overflow: hidden;
        }

        .hero-card-stars {
            display: flex;
            gap: 3px;
        }

        .hero-card-stars i {
            color: var(--secondary-color);
            font-size: 0.9rem;
            animation: starPulse 2s ease-in-out infinite;
        }

        .hero-card-stars i:nth-child(2) { animation-delay: 0.1s; }
        .hero-card-stars i:nth-child(3) { animation-delay: 0.2s; }
        .hero-card-stars i:nth-child(4) { animation-delay: 0.3s; }
        .hero-card-stars i:nth-child(5) { animation-delay: 0.4s; }

        @keyframes starPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }

        .hero-card-stats {
            text-align: left;
        }

        .hero-card-stats .stat-item {
            display: flex;
            align-items: baseline;
        }

        .hero-card-stats .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            background: linear-gradient(135deg, #fff 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-card-stats .stat-plus {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-left: 2px;
        }

        .hero-card-stats p {
            margin-top: 5px;
            font-size: 0.95rem;
            font-weight: 500;
            color: rgba(255,255,255,0.85);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-card-testimonial {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 5px;
            background: rgba(255,255,255,0.08);
            border-radius: 15px;
            width: fit-content;
        }

        .hero-card-testimonial i {
            color: var(--secondary-color);
            font-size: 0.8rem;
        }

        .hero-card-testimonial span {
            color: rgba(255,255,255,0.9);
            font-size: 0.85rem;
            font-style: italic;
        }

        .hero-card-decoration {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            opacity: 0.6;
            pointer-events: none;
        }

        .hero-card-decoration svg {
            width: 100%;
            height: 100%;
            animation: rotateDecoration 30s linear infinite;
        }

        @keyframes rotateDecoration {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Align cards at bottom */
        .hero-bottom-cards .row {
            align-items: flex-end !important;
        }

        /* Space after hero for the overlapping cards */
        .hero-slider {
            margin-bottom: 140px;
        }

        /* Mobile responsive for hero cards */
        @media (max-width: 991.98px) {
            .hero-bottom-cards {
                transform: translateY(40%);
            }

            .hero-slider {
                margin-bottom: 280px;
            }

            .hero-card-white,
            .hero-card-dark {
                height: 220px;
            }

            .hero-card-image-only {
                height: 240px;
            }

            .hero-card-stats .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 767.98px) {
            .hero-bottom-cards {
                position: relative;
                transform: none;
                margin-top: -100px;
                margin-bottom: 0;
                z-index: 5;
            }

            .hero-slider {
                margin-bottom: 590px;
            }

            .hero-card-white {
                height: auto;
                min-height: 180px;
                flex-direction: column;
            }

            .hero-card-white .hero-card-image {
                width: 100%;
                height: 200px;
            }

            .hero-card-image-only {
                height: 200px;
            }

            .hero-card-dark {
                height: auto;
                min-height: 200px;
            }

            .hero-card-stats .stat-number {
                font-size: 2.2rem;
            }

            .hero-card-stats .stat-plus {
                font-size: 1.5rem;
            }

            .hero-card-testimonial {
                padding: 8px 12px;
            }

            .hero-card-testimonial span {
                font-size: 0.8rem;
            }

            .hero-card-decoration {
                width: 80px;
                height: 80px;
            }
        }
        
       
        
    
        
/* =========================
   Home Features Section
   ========================= */

        .features-section {
            padding: 130px 0;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px;
            /* background-color: white; */
            border-radius: 10px;
            /* box-shadow: 0 5px 15px rgba(0,0,0,0.08); */
            transition: transform 0.3s;
            height: 100%;
     
           
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box h3 {
            font-size: 1.3rem;
            margin: 15px 0 10px;
        }
        
        .feature-box p {
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            /* qendër horizontale, më shumë hapësirë poshtë ikonës */
            margin: 0 auto 28px auto;
        }
        
        .products-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .product-card {
            height:430px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        
        
        
        .counter-box {
            text-align: center;
            padding: 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        
        .counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
/* =========================
   About Us Main Section
   ========================= */

        /* ===== ABOUT US NEW SECTION ===== */
        .about-us-new-section {
            padding: 30px 0 80px;
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .about-images-group {
            position: relative;
            height: 500px;
        }

        .image-main {
            position: absolute;
            top: 0;
            left: 0;
            width: 450px;
            height: 520px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            z-index: 3;
        }

        .image-main img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .image-main video,
        .about-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .image-secondary {
            position: absolute;
            bottom: 20px;
            left: 150px;
            width: 240px;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            z-index: 2;
            border: 8px solid white;
        }

        .image-secondary img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            left: 280px;
            background-color: var(--secondary-color);
            width: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 4;
            box-shadow: 0 10px 30px rgba(181, 82, 59, 0.3);
        }

        .badge-content {
            text-align: center;
            color: white;
            font-weight: 700;
        }

        .badge-content i {
            font-size: 24px;
            margin-bottom: 4px;
            display: block;
        }

        .badge-content p {
            margin: 0;
            font-size: 11px;
            line-height: 1.2;
        }

        .badge-content strong {
            font-size: 14px;
        }

        /* Content Section */
        .about-content {
            padding-left: 40px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .section-tag i {
            color: var(--secondary-color);
            font-size: 8px;
        }

        .section-tag span {
            color: var(--secondary-color);
        }

        .about-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.2;
            margin-bottom: 20px;
            margin-top: 10px;
        }

        .about-description {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        /* Feature Boxes OLD - Keep for backward compat */
        .about-features {
            display: grid;
            gap: 20px;
            margin-bottom: 30px;
        }

        .feature-box {
            /* display: flex; */
            gap: 15px;
            align-items: flex-start;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .feature-text p {
            font-size: 14px;
            color: #888;
            margin: 0;
            line-height: 1.5;
        }

        /* Highlights List */
        /* NEW Feature Boxes Styling */
        .about-features-wrapper {
            margin-bottom: 20px;
            margin-top: 30px;
        }

        .about-features-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            padding: 20px 25px;
            background-color: #f9f9f9;
            border-left: 3px solid var(--secondary-color);
            border-radius: 6px;
        }

        .feature-box-new {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

   

        .feature-text-new h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 6px;
            margin-top: 0;
        }

        .feature-text-new p {
            font-size: 14px;
            color: #555;
            margin: 0;
            line-height: 1.5;
        }

        .about-highlights {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .about-highlights li {
            font-size: 15px;
            color: #666;
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
            line-height: 1.6;
            display: flex;
            align-items: center;
        }

        .about-highlights li::before {
            content: '■';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary-color);
            font-size: 8px;
            line-height: 1;
        }

        /* CTA Button */
        .about-cta {
            display: inline-block;
        }

        .btn-about-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .btn-about-cta:hover {
            background-color: var(--primary-color);
            transform: translateX(5px);
            color: white;
        }

        .btn-about-cta:focus,
        .btn-about-cta:focus-visible {
            background-color: var(--secondary-color);
            color: white;
            outline: none;
            box-shadow: none;
            transform: none;
        }

        .btn-about-cta i {
            font-size: 14px;
        }

        /* Video Section */
        .about-video-section {
            position: absolute;
            bottom: 40px;
            right: 40px;
            z-index: 1;
        }

        .video-thumbnail {
            position: relative;
            width: 280px;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .video-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .video-play-btn:hover {
            background-color: var(--primary-color);
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Responsive About Us for tablets/smaller large screens - 1200px to 1999px */
        @media (min-width: 992px) and (max-width: 1399px) {
            .about-images-group {
                height: auto;
            }

            .image-main {
                position: relative !important;
                width: 100%;
                height: 350px;
                left: 0 !important;
                top: 0 !important;
            }

            .image-secondary {
                display: none;
            }

            .experience-badge {
                display: none;
            }

            .about-content {
                padding-left: 0;
            }

            .about-features-row {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 15px;
            }

            .about-title {
                font-size: 32px;
            }

            .about-description {
                font-size: 14px;
            }
        }

        /* Responsive About Us */
        @media (max-width: 991px) {
            .about-title {
                font-size: 32px;
            }

            .about-content {
                padding-left: 0;
            }

            .about-features-row {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 25px;
            }

            .about-images-group {
                height: auto;
            }

            .image-main {
                position: relative;
                width: 100%;
                height: 300px;
                margin-bottom: 20px;
            }

            .image-secondary {
                position: relative;
                width: 100%;
                height: 250px;
                left: 0;
                bottom: auto;
                margin-bottom: 20px;
            }

            .experience-badge {
                position: relative;
                left: 0;
                bottom: auto;
                margin-bottom: 20px;
                width: 100px;
                height: 100px;
            }

            .about-video-section {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 30px;
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .video-thumbnail {
                width: 100%;
                height: auto;
                max-width: 400px;
                aspect-ratio: 16 / 9;
            }
        }

@media (min-width: 769px) and (max-width: 991px) {
    .feature-box {
        padding: 20px 15px;
    }
    
    .feature-box h3 {
        font-size: 1.1rem;
        margin: 12px 0 8px;
    }
    
    .feature-box p {
        font-size: 0.88rem;
        line-height: 1.4;
    }
    
    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
}

        @media (max-width: 768px) {
            .about-us-new-section {
                padding: 60px 0;
            }

            .about-title {
                font-size: 26px;
            }

            .about-features-row {
                grid-template-columns: 1fr;
                gap: 18px;
                padding: 18px 20px;
            }

           

            .feature-text-new h4 {
                font-size: 15px;
            }

            .feature-text-new p {
                font-size: 13px;
            }

            .feature-box {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .feature-icon {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .feature-text h4 {
                font-size: 16px;
            }

            .about-highlights li {
                text-align: left;
                padding-left: 20px;
                font-size: 14px;
                margin-bottom: 10px;
                display: flex;
                align-items: center;
            }

            .about-highlights li::before {
                display: block;
                content: '■';
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                color: var(--secondary-color);
                font-size: 7px;
                line-height: 1;
            }

            .about-video-section {
                margin-top: 30px;
            }

            .video-thumbnail {
                max-width: 100%;
                height: 250px;
            }
        }
        
        .material-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .video-container {
            position: relative;
            border-radius: 10px;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }
/* Prevent horizontal overflow for all elements */
* {
    box-sizing: border-box;
}

     
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .about-header-section {
            padding: 100px 0 10px;
            background-color: white;
        }
        
        .gallery-section {
            padding: 100px 0;
        }
        
        .gallery-item {
            margin-bottom: 30px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .gallery-item img {
            transition: transform 0.3s;
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .contact-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .contact-info {
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            box-shadow:  0 5px 15px rgba(0, 0, 0, 0.08);
        }
        .contact-info span:hover {
            color: var(--secondary-color);
        }
        .contact-info i:hover {
            color: var(--secondary-color);
        }
      
        
        
        .contact-form {
            padding: 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            height: 300px;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            margin-top: 15px;
        }
        
        /* .page-content {
            display: none;
        }
        
        .page-content.active {
            display: block;
        } */
        
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
        }
        
        .category-filter {
            margin-bottom: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        
        .category-btn {
            margin: 5px 0;
            border-radius: 30px;
            transition: all 0.3s ease;
            border-color: var(--primary-color);
            color: var(--primary-color);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .category-btn:hover {
            transform: translateY(-2px);
            background-color: var(--secondary-color) !important;
            border-color: var(--secondary-color) !important;
            color: white !important;
        }

        .category-btn:focus,
        .category-btn:focus-visible {
            background-color: transparent !important;
            border-color: var(--primary-color) !important;
            color: var(--primary-color) !important;
            outline: none !important;
            box-shadow: none !important;
            transform: none;
        }

        .category-btn.active {
            transform: scale(1.05);
            background-color: var(--secondary-color) !important;
            border-color: var(--secondary-color) !important;
            color: white !important;
        }

        .category-btn.active:focus,
        .category-btn.active:focus-visible {
            background-color: var(--secondary-color) !important;
            border-color: var(--secondary-color) !important;
            color: white !important;
        }

        /* Responsive category filter spacing only */
        @media (max-width: 768px) {
            .category-filter {
                gap: 12px;
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .category-filter {
                gap: 10px;
                padding: 0 10px;
            }
        }
        

/* --- Injected by Assistant --- */



/* Projects slider: responsive adjustments handled above */

/* Hero section responsive for mobile */
@media (max-width: 767.98px) {
    .hero-slider,
    .hero-slider .carousel-item {
        height: 85vh;
    }
    
    .carousel-caption {
        /* top: 15%; */
        /* bottom: 25%; */
        left: 5%;
        right: 5%;
        max-width: 100%;
        padding: 0;
    }
    
    .carousel-caption h2 {
        font-size: 1.8rem;
        color: #ffffff;
        margin-bottom: 16px;
    }
    
    .carousel-caption p {
        font-size: 0.95rem;
        font-weight: 400;
        margin-bottom: 25px;
    }

    .hero-tagline {
        font-size: 0.7rem;
        margin-bottom: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-hero-primary {
        padding: 12px 16px 12px 22px;
        font-size: 0.9rem;
    }

    .btn-hero-primary i {
        width: 32px;
        height: 32px;
    }

    .btn-hero-outline {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .btn-hero-outline .play-icon {
        width: 40px;
        height: 40px;
    }

    .hero-experience-badge {
        top: auto;
        bottom: 15%;
        right: 5%;
    }

    .badge-inner {
        width: 90px;
        height: 90px;
    }

    .badge-years {
        font-size: 1.4rem;
    }

    .badge-text {
        font-size: 0.55rem;
    }
}

/* Counters: soft design and animation base */
.counter-box {
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0));
  border: none;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.counter {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}
.counter + h4 {
  margin-top: 8px;
  font-weight: 600;
  opacity: 0.85;
}

.technical-image-container img,
.assembly-image-container img {
    max-width: 100%;
    width: 300px;   /* ose çdo madhësi tjetër që dëshironi */
    height: auto;
}
@media (max-width: 767.98px) {
    .product-card {
        height: 360px !important;
        min-height: 180px;
        max-width: 90vw;
        margin-left: auto;
        margin-right: auto;
    }
    .product-card img {
        max-height: 90px;
    }
    .card-body {
        padding: 8px;
        font-size: 0.9rem;
    }
}
/* Produktet: imazhi të mos bëhet crop në mobile */
@media (max-width: 767.98px) {
    .product-card img {
        height: auto !important;
        max-height: 180px;
        object-fit: contain !important;
        width: 100%;
        background: #fff;
        border-radius: 8px;
    }
   
}

/* Footer developer link */
footer .text-center a {
    /* text-decoration: none; */
    font-weight: bold;
    /* text-decoration: none; */
    color: inherit;
}

footer .text-center a:hover {
    text-decoration: underline;
}

/* ===================== */
/* Floating Contact Widget */
/* ===================== */

.floating-contact-widget {
    width: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    
}

/* Main toggle button */
.contact-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(109, 93, 76, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.contact-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(109, 93, 76, 0.5);
}

.contact-toggle-btn:focus,
.contact-toggle-btn:focus-visible {
    transform: none;
    box-shadow: 0 4px 20px rgba(109, 93, 76, 0.4);
    outline: none;
}

.contact-toggle-btn i {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.contact-toggle-btn.active i.fa-comments {
    display: none;
}

.contact-toggle-btn i.fa-times {
    display: none;
}

.contact-toggle-btn.active i.fa-times {
    display: block;
}

/* Contact options container */
.contact-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.contact-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Individual contact buttons */
.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateX(-5px);
}

.contact-option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-option-icon i {
    font-size: 22px;
    color: white;
}

.contact-option:hover .contact-option-icon {
    transform: scale(1.1);
}

/* WhatsApp button */
.contact-option.whatsapp .contact-option-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Viber button */
.contact-option.viber .contact-option-icon {
    background: linear-gradient(135deg, #7360F2, #59267c);
}

/* Email button */
.contact-option.email .contact-option-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
}

/* Contact labels */
.contact-option-label {
    background: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.contact-option:hover .contact-option-label {
    opacity: 1;
    transform: translateX(0);
}

/* Pulse animation for main button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(109, 93, 76, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(109, 93, 76, 0.6), 0 0 0 10px rgba(109, 93, 76, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(109, 93, 76, 0.4);
    }
}

.contact-toggle-btn:not(.active) {
    animation: pulse 2s infinite;
}

.contact-toggle-btn.active {
    animation: none;
}

/* Responsive styles for tablet */
@media (max-width: 991.98px) {
    .floating-contact-widget {
        bottom: 25px;
        right: 25px;
    }
    
    .contact-toggle-btn {
        width: 55px;
        height: 55px;
    }
    
    .contact-toggle-btn i {
        font-size: 22px;
    }
    
    .contact-option-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-option-icon i {
        font-size: 20px;
    }
}

/* Responsive styles for mobile */
@media (max-width: 575.98px) {
    .floating-contact-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-toggle-btn {
        width: 50px;
        height: 50px;
    }
    
    .contact-toggle-btn i {
        font-size: 20px;
    }
    
    .contact-option-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-option-icon i {
        font-size: 18px;
    }
    
    .contact-option-label {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .contact-options {
        gap: 10px;
    }
    .hero-card-projects {
        height: auto;
        display: flex;
        justify-content: flex-start;
    }
    .projects-counter .counter-number {
        font-size: 2.2rem;
    }
  .hero-card-projects-content {
        display:flex;
        align-items: flex-start;
}

}

/* =========================
    Floating Contact Widget
    (Very Small Screens)
    ========================= */

/* Very small screens */
@media (max-width: 375px) {
    .floating-contact-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .contact-toggle-btn {
        width: 48px;
        height: 48px;
    }
    
    .contact-option-icon {
        width: 42px;
        height: 42px;
    }
    
    .contact-option-label {
        display: none;
    }
    .feature-box {
        padding: 60px;
    }
}

/* =========================
    Why Xhegi Komerc Section
    ========================= */

.why-xhegi-section {
    padding: 100px 0;
    position: relative;
}

.why-xhegi-section .section-title {
    margin-bottom: 60px;
    text-align: center;
}

.benefit-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}



.benefit-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
}

.benefit-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color) !important;
}

.benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 768px) {
    .why-xhegi-section {
        padding: 60px 0;
    }

    .why-xhegi-section .section-title {
        margin-bottom: 40px;
    }

    .benefit-item {
        padding: 25px;
        gap: 20px;
    }

    .benefit-icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .benefit-content h4 {
        font-size: 1.05rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }
}

/* =========================
    Pavement Section
    ========================= */

.pavement-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.pavement-images-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.pavement-image-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 70%;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pavement-image-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pavement-image-front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 65%;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.pavement-image-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pavement-content {
    padding: 40px 0;
}

.pavement-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .pavement-images-wrapper {
        height: 400px;
        margin-bottom: 40px;
    }

    .pavement-image-back {
        width: 68%;
        height: 68%;
    }

    .pavement-image-front {
        width: 58%;
        height: 63%;
        border: 6px solid white;
    }

    .pavement-content {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .pavement-images-wrapper {
        height: 320px;
    }

    .pavement-image-back {
        width: 70%;
        height: 65%;
    }

    .pavement-image-front {
        width: 60%;
        height: 60%;
        border: 4px solid white;
    }

    .pavement-text {
        font-size: 1rem;
    }
}

/* =========================
    Core Values Section
    ========================= */

/* ===== CORE VALUES SECTION ===== */
.core-values-section {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
}

.core-values-img {
    max-width: 100%;
    height: auto;
}

.core-values-content {
    padding: 20px;
}

.core-values-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.core-values-tag i {
    color: var(--secondary-color);
    font-size: 10px;
}

.core-values-tag span {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 12px;
}

.core-values-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
    line-height: 1.3;
}

.core-values-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.core-values-list {
    margin-bottom: 40px;
}

.value-item {
    margin-bottom: 30px;
}

.value-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-bar {
    height: 4px;
    background: linear-gradient(to right, #e0e0e0, rgba(224, 224, 224, 0.4));
    border-radius: 2px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.value-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, var(--secondary-color), rgba(181, 82, 59, 0.8));
    border-radius: 2px;
    width: 0%;
    transition: width 2s ease-out;
}

.value-bar.filled::after {
    width: 100%;
}

.core-values-cta {
    margin-top: 40px;
}

.btn-core-values {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-core-values:hover {
    background-color: var(--primary-color);
    transform: translateX(5px);
    color: white;
}

.btn-core-values:focus,
.btn-core-values:focus-visible {
    background-color: var(--secondary-color);
    color: white;
    outline: none;
    box-shadow: none;
    transform: none;
}

.btn-core-values i {
    font-size: 14px;
}

/* Responsive Core Values */
@media (max-width: 991px) {
    .core-values-title {
        font-size: 28px;
    }
    
    .core-values-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .core-values-section {
        padding: 60px 0;
    }
    
    .core-values-title {
        font-size: 24px;
    }
    
    .core-values-content {
        padding: 0;
    }
    
    .core-values-tag {
        margin-top: 30px;
    }
}

/* ===== OUR APPROACH SECTION ===== */
/* =========================
    Our Approach Section
    ========================= */

.our-approach-section {
    padding: 50px 0;
    /* background-color: var(--dark-color); */
    position: relative;
}

.approach-header {
    text-align: center;
    /* margin-bottom: 60px; */
}

.approach-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.approach-tag i {
    color: var(--secondary-color);
    font-size: 8px;
}

.approach-tag span {
    color: var(--secondary-color);
}

.approach-title {
    font-size: 48px;
    font-weight: 700;
    color:var(--dark-color);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.approach-cards {
    margin-top: 50px;
}

.approach-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 2px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: transparent;
}

.approach-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(181, 82, 59, 0.12);
}





.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 0;
}

.card-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.card-features li {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.card-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: bold;
}


.card-image-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
}

.card-circular-image {
    width: 180px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.card-features li {
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.card-features li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 10px;
}

.card-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.card-tag {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* Responsive Our Approach */
@media (max-width: 991px) {
    .approach-title {
        font-size: 36px;
    }
    
    .card-circular-image {
        width: 140px;
        height: auto;
    }
    
    .card-image-wrapper {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .our-approach-section {
        padding: 60px 0;
    }
    
    .approach-header {
        margin-bottom: 40px;
    }
    
    .approach-title {
        font-size: 28px;
    }
    
    .approach-card {
        padding: 25px;
        border-left: 4px solid var(--secondary-color);
    }
    
    .card-circular-image {
        width: 110px;
        height: auto;
    }
    
    .card-image-wrapper {
        height: 120px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 13px;
    }
    
    .card-features li {
        font-size: 12px;
    }
}