        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: #ffffff;
            color: #fff;
            min-height: 100vh;
        }

        /* ========================================= */
        /* HERO NAV - TWO ROWS, STAYS WITH HERO */
        /* ========================================= */
        #heroNav {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            overflow: visible;
        }

        #heroNav.nav-hovering {
            transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
        }

        #heroNav.nav-unhovering {
            transition: box-shadow 1.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: none;
        }

        #heroNav.nav-hovered {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
        }

        /* Hero Nav Background Image - hidden by default */
        #heroNav::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 61px;
            background-image: url('header.png');
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
            z-index: 10;
            opacity: 0;
            transform: translateY(0%);
            pointer-events: none;
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #heroNav.nav-hovering::before {
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 1;
            transform: translateY(0);
        }

        #heroNav.nav-unhovering::before {
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transition-delay: 0.5s;
            opacity: 0;
            transform: translateY(-0%);
        }

        #heroNav.nav-hovered::before {
            opacity: 1;
        }

        #heroNav::after {
            display: none;
        }


            
        
        /* Row 2: Logo & Navigation Menu */
        .hero-nav-row-2 {
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 3rem;
            height: 60px;
            z-index: 10;
            margin-top: 0rem;
            margin-bottom: 0rem;
        }

        

        #heroNav .nav-menu {
            display: flex;
            list-style: none;
            gap: 3.5rem;
            align-items: center;
            margin: 0;
            flex-wrap: nowrap;
            padding: 0;
            height: 40px;
            position: absolute;
            left: 55%;
            transform: translateX(-50%);
            z-index: 10;
        }

        #heroNav .nav-menu li {
            position: relative;
        }

        #heroNav .nav-menu li a {
            color: #ffffff;
            text-decoration: none;
            font-family: 'Segoe UI', sans-serif;
            font-weight: 450;
            font-size: 11pt;
            letter-spacing: 0.5px;
            position: relative;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        #heroNav .nav-menu li a:hover {
            
            border-bottom: #ffcd45 1px solid;
            padding-bottom: 8px;

        }

        #heroNav .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            position: relative;
            z-index: 10;
            margin-left: auto;
        }

        #heroNav .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #ffffff;
            transition: all 0.3s ease;
        }

        /* ========================================= */
        /* SCROLLED NAV - FIXED, APPEARS ON SCROLL */
        /* ========================================= */
        #scrolledNav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transform: translateY(-100%);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        #scrolledNav.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        #scrolledNav::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: calc(25% + 50px);
            height: 100%;
            background: #ffffff;
            z-index: 1;
        }

        #scrolledNav::after {
            content: '';
            position: absolute;
            top: 0;
            left: 25%;
            width: 75%;
            height: 100%;
            background: linear-gradient(135deg, #0d274b, #123c73);
            clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
            z-index: 1;
        }

        .scrolled-nav-container {
            position: relative;
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 0 3rem;
            height: 60px;
            z-index: 10;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
        }

        #scrolledNav .logo {
            height: 55px;
            cursor: pointer;
            margin-left: 2rem;
            filter: brightness(1);
            z-index: 10;
            position: relative;
        }

        #scrolledNav .logo:hover {
            filter: brightness(1.1);
        }

        #scrolledNav .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
            margin: 0;
            flex-wrap: nowrap;
            padding: 0;
            height: 40px;
            position: absolute;
            left: 55%;
            transform: translateX(-50%);
            z-index: 10;
        }

        #scrolledNav .nav-menu li {
            position: relative;
            display: flex; align-items: center;
            height: 40px; line-height: 1;
        }

        #scrolledNav .nav-menu li a {
            color: #ffffff;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 11pt;
            letter-spacing: 0.5px;
            position: relative;
            white-space: nowrap;
            transition: color 0.3s ease;
            border-bottom: 1px solid transparent;
            padding-bottom: 6px;
        }

        #scrolledNav .nav-menu li a:hover {
            color: #ffcd45;
            border-bottom-color: #ffcd45;
        }

        #scrolledNav .nav-menu li.nav-current > a { color: #ffcd45; border-bottom-color: #ffcd45; }

        #heroNav .nav-menu li.nav-current > a {
            border-bottom: #ffcd45 1px solid;
            padding-bottom: 8px;
        }

        #scrolledNav .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            position: relative;
            z-index: 10;
            margin-left: auto;
        }

        #scrolledNav .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #ffffff;
            transition: all 0.3s ease;
        }

        /* Dropdown Container */

        /* About Dropdown */
        #aboutDropdown {
            display: none;
            padding: 1rem 10%;
        }
        #aboutDropdown.active {
            display: block;
        }
        .about-dropdown-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
            max-width: 540px;
            margin: 0 auto;
        }
        .about-dropdown-group {
            width: 100%;
        }
        .about-dropdown-heading {
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #8fa0ba;
            padding-bottom: 0.75rem;
            margin-bottom: 0;
            border-bottom: 1px solid #e4e7ed;
            margin-top: 1rem;
        }
        .about-dropdown-links {
            display: flex;
            flex-direction: column;
            margin-bottom: 1rem;
        }
        .about-dropdown-links a {
            font-size: 0.95rem;
            font-weight: 500;
            color: #1a2a3a;
            text-decoration: none;
            padding: 0.65rem 0;
            border-bottom: 1px solid #f0f2f5;
            transition: color 0.2s ease, padding-left 0.2s ease;
            display: block;
        }
        .about-dropdown-links a:last-child { border-bottom: none; }
        .about-dropdown-links a:hover { color: #ffcd45;}

        .dropdown-container {
            position: fixed;
            top: 61px;
            left: 0;
            width: 100%;
            background: #ffffff;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0);
            z-index: 999;
            overflow: hidden;
            opacity: 0;
            pointer-events: none;
            transform: translateY(-1000px);
        }

        .dropdown-container.opening:not(.scrolled-mode) {
            transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 1s cubic-bezier(0.4, 0, 0.2, 1), 
                        box-shadow 1s cubic-bezier(0.4, 0, 0.2, 1);
            transition-delay: 0.2s;
        }

        .dropdown-container.closing:not(.scrolled-mode) {
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .dropdown-container.scrolled-mode {
            top: 60px;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .dropdown-container.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            padding: 3rem 10%;
            width: 100%;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .dropdown-content.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-container.opening:not(.scrolled-mode) .dropdown-content.active {
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, 
                        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
        }

        .dropdown-container.closing:not(.scrolled-mode) .dropdown-content {
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .dropdown-container.scrolled-mode .dropdown-content.active {
            transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, 
                        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
        }

        .dropdown-flex-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            gap: 4rem;
        }

        /* Products Dropdown */
        .product-categories {
            display: grid;
            grid-template-columns: repeat(3, 160px);
            column-gap: 6rem;
            row-gap: 4rem;
            justify-content: center;
        }

        .product-card {
            text-align: center;
            text-decoration: none;
            position: relative;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .product-card-image {
            width: 120px;
            height: 120px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: visible;
            transition: all 0.5s ease;
        }

        .product-card-image::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 80%;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .product-card:hover .product-card-image::before {
            opacity: 1;
        }

        .product-card:hover .product-card-image {
            transform: translateY(-10px);
        }

        .product-card-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
            position: relative;
            z-index: 1;
        }

        .product-card:hover .product-card-image img {
            transform: scale(1.02);
        }

        .product-card-title {
            font-size: 10.5pt;
            font-weight: 600;
            color: #1a1a1a;
            font-family: 'Segoe UI', sans-serif;
            padding-top: 10px;
            letter-spacing: 0.3px;
            transition: color 0.3s ease;
        }

        .product-card:hover .product-card-title {
            color: #123c73;
        }

        /* Brands Dropdown */
        .brands-wrapper {
            display: flex;
            gap: 6rem;
            width: 100%;
            max-width: 1200px;
            justify-content: center;
            margin: 0 auto;
        }

        .brand-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .brand-section-title {
            font-family: 'Segoe UI', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #123c73;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .brand-grid {
            display: grid;
            grid-template-columns: repeat(2, 180px);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .brand-card {
            background: #f8f8f8;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 120px;
        }

        .brand-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-color: #123c73;
        }

        .brand-card img {
            max-width: 100%;
            max-height: 120px;
            object-fit: contain;
            margin-bottom: 0.5rem;
        }

        .brand-card-name {
            font-family: 'Segoe UI', sans-serif;
            font-size: 10pt;
            font-weight: 600;
            color: #1a1a1a;
            margin-top: 0.5rem;
        }

        .view-all-btn {
            padding: 12px 32px;
            font-size: 10pt;
            font-weight: 600;
            font-family: 'Segoe UI', sans-serif;
            background: #123c73;
            color: #ffffff;
            border: 2px solid #123c73;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .view-all-btn:hover {
            background: transparent;
            color: #123c73;
        }

        /* ── Mobile header box (hidden on desktop) ── */
        .mobile-header-box {
            display: none;
            position: fixed;
            top: 1rem;
            left: 0.8rem;
            z-index: 1100;
            align-items: center;
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.18);
            border-radius: 6px;
            overflow: hidden;
        }
        .logo-box {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.55rem 0.75rem;
            background: #ffffff;
            border-right: 1px solid rgba(18,60,115,0.12);
        }
        .mobile-logo { height: 48px; cursor: pointer; display: block; }
        .mobile-header-box .menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            padding: 0.75rem 1rem;
            background: #ffffff;
            cursor: pointer;
            border: none;
        }
        .mobile-header-box .menu-toggle span {
            width: 24px; height: 3px;
            background: #000000;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ── Mobile sidebar ── */
        .mobile-sidebar {
            position: fixed;
            top: 0; left: -280px;
            width: 280px;
            height: 100vh;
            background: #f8f9fa;
            z-index: 1200;
            display: flex;
            flex-direction: column;
            padding: 5rem 2rem 2rem;
            transition: left 0.3s ease;
            box-shadow: 4px 0 20px rgba(0,0,0,0.15);
            overflow-y: auto;
        }
        .mobile-sidebar.active { left: 0; }

        .mobile-sidebar-close {
            position: absolute;
            top: 1.2rem; right: 1.2rem;
            width: 34px; height: 34px;
            cursor: pointer;
            z-index: 10;
        }
        .mobile-sidebar-close span {
            position: absolute;
            width: 26px; height: 3px;
            background: #2c3e50;
            border-radius: 2px;
            top: 50%; left: 50%;
        }
        .mobile-sidebar-close span:first-child { transform: translate(-50%,-50%) rotate(45deg); }
        .mobile-sidebar-close span:last-child  { transform: translate(-50%,-50%) rotate(-45deg); }

        .mobile-sidebar-menu {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0;
            flex: 1;
        }
        .mobile-sidebar-menu li a {
            display: block;
            padding: 0.85rem 0.5rem;
            color: #2c3e50;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            border-bottom: 1px solid rgba(0,0,0,0.07);
            transition: color 0.2s ease;
        }
        .mobile-sidebar-menu li a:hover { color: #123c73; }
        .mobile-sidebar-menu li.nav-current a {
            color: #ffcd45 !important;
            font-weight: 500 !important;
            padding-left: 0.5rem !important;
        }

        .mobile-sidebar-search {
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            margin-bottom: 1rem;
        }
        .mobile-sidebar-search button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.65rem 1rem;
            border-radius: 8px;
            border: 1px solid #123c73;
            background: transparent;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: #123c73;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .mobile-sidebar-search button svg { width: 16px; height: 16px; }
        .mobile-sidebar-search button:hover {
            background: linear-gradient(135deg, #0d274b, #123c73);
            color: #ffffff;
            border-color: transparent;
        }

        /* ── Sidebar overlay ── */
        .mobile-sidebar-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.45);
            z-index: 1150;
        }
        .mobile-sidebar-overlay.active { display: block; }

        /* ── Sidebar dropdowns ── */
        .mobile-dropdown-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 0.5rem;
            color: #2c3e50;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            border-bottom: 1px solid rgba(0,0,0,0.07);
            cursor: pointer;
            transition: color 0.2s ease;
            user-select: none;
        }
        .mobile-dropdown-toggle:hover { color: #123c73; }
        .mobile-dropdown-arrow {
            font-size: 1.2rem;
            transition: transform 0.25s ease;
            display: inline-block;
        }
        .mobile-dropdown-arrow.open { transform: rotate(90deg); }
        .mobile-dropdown-list {
            list-style: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(18,60,115,0.04);
            border-radius: 0 0 6px 6px;
        }
        .mobile-dropdown-list.open { max-height: 300px; }
        .mobile-dropdown-list li a {
            display: block;
            padding: 0.6rem 1.2rem;
            color: #2c3e50;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 400;
            border-bottom: 1px solid rgba(0,0,0,0.04);
            transition: color 0.2s ease, padding-left 0.2s ease;
        }
        .mobile-dropdown-list li a:hover { color: #123c73; padding-left: 1.5rem; }

    /* ═══ LAPTOP 15″ (≤1440px) ═══ */
    @media (max-width: 1440px) {
        /* Hero */
        .hero-slider-section { padding: 0 6%; }
        .hero-slide-title { font-size: 2.5rem; }
        .hero-division-text { font-size: 0.88rem; }
        .hero-view-more-btn { font-size: 0.72rem; padding: 9px 24px; }
        #heroNav .nav-menu { gap: 1.6rem; }
        #heroNav .nav-menu li a { font-size: 10pt; }
        .hero-logo-nav { height: 50px; }
        .hero-nav-row-2 { height: 52px; }

        /* Product Range — add the missing gap, shrink both sides */
        .product-range-section { padding: 6rem 5% 3.5rem; }
        .product-range-section h2 { font-size: 0.82rem; }
        .product-range-section h3 { font-size: 2.2rem; }
        .product-range-section h4 { font-size: 2.2rem; margin-bottom: 2.5rem; }
        .product-range-content { gap: 2.5rem; }
        .category-grid { max-width: 520px; gap: 1rem; }
        .category-square { padding: 0.8rem; }
        .category-square img { width: 100px; height: 100px; }
        .category-square span { font-size: 9.5pt; }
        .category-square::after { font-size: 9.5pt; }

        /* Brand slider — proportional shrink */
        .slider-container { max-width: 480px; }
        .brand-slider { max-width: 440px; height: 430px; border-radius: 16px; }
        #brandSlide .brand-slide-item { padding: 1.6rem 1.6rem 3.5rem; }
        .brand-header { margin-bottom: 1.2rem; }
        .brand-logo-container { width: 175px !important; height: 100px !important; }
        .brand-type-badge { font-size: 0.38rem; padding: 0.2rem 0.5rem; white-space: normal; text-align: center; line-height: 1.3; max-width: 120px; }
        .brand-name { font-size: 0.9rem !important; }
        .brand-info-grid { gap: 0.3rem; padding: 0.35rem 0; margin-bottom: 0.6rem !important; }
        .brand-info-value { font-size: 0.68rem !important; }
        .brand-info-label { font-size: 0.45rem !important; }
        .brand-info-icon { width: 24px !important; height: 24px!important;  padding: 4px !important; border-radius: 5px !important;}
        .brand-specialties-title { font-size: 0.48rem !important; }
        .specialty-name { font-size: 0.58rem !important; }
        .specialty-item { padding: 0.25rem 0.3rem; min-height: 26px; }
        .brand-specialties-list { gap: 0.2rem; }
        .cert-badge { width: 24px; height: 24px; font-size: 0.45rem; }
        .brand-view-products-btn { font-size: 0.55rem; padding: 0.65rem 1rem !important; border-radius: 6px !important; position: relative; bottom: auto; left: auto; letter-spacing: 0.8px; max-width: 120px !important; }
        .dot { width: 8px; height: 8px; }
        .dot-navigation { gap: 8px; bottom: 12px; }

        /* Stats */
        .stats-section { padding: 2.2rem 5%; }
        .stat-number { font-size: 2.2rem; }
        .stat-label { font-size: 0.58rem; }
        .stat-icon-wrapper { width: 34px; height: 34px; }

        /* About */
        .about-section { padding: 3rem 5%; }
        .about-image-placeholder { height: 340px; }
        .about-text-content h2 { font-size: 0.58rem; }
        .about-text-content h3 { font-size: 2rem; }
        .about-text-content h4 { font-size: 1.8rem; }
        .about-text-content p { font-size: 0.85rem; }
        .about-btn { font-size: 0.7rem; padding: 7px 16px; }
        .certifications-btn .text { font-size: 0.7rem; }

        /* Major Projects */
        .major-projects-section { padding: 2.5rem 4.5%; }
        .major-projects-section h3 { font-size: 1.4rem; }
        .project-card { max-width: 260px; }
        .project-card-image { height: 170px; }
        .project-title { font-size: 0.82rem; }
        .project-products { font-size: 0.72rem; }
        .project-products-list li { font-size: 0.68rem; }
        .view-all-projects-btn { font-size: 0.75rem; }

        /* Footer — reduce the 6rem and 4rem gaps */
        .footer { padding: 2.2rem 4% 1.2rem; }
        .footer-main { gap: 3rem; margin-bottom: 1.5rem; }
        .footer-logo { height: 80px; }
        .footer-tagline-list { margin-left: -1.5rem; margin-top: -2rem; gap: 0.35rem; }
        .footer-tagline-list li { font-size: 0.6rem; }
        .footer-social a { width: 36px; height: 36px; }
        .footer-social svg { width: 17px; height: 17px; }
        .footer-sections-group { gap: 2rem; max-width: 100%; margin-left: 10rem;}
        .footer-nav-section h4, .footer-projects-section h4 { font-size: 0.92rem; margin-bottom: 0.9rem; }
        .footer-contact-section h4 { font-size: 0.92rem; }
        .footer-nav-links li a, .footer-projects-links li a { font-size: 0.82rem; }
        .footer-contact-info { font-size: 0.82rem; line-height: 1.6; }
        .footer-contact-info a { font-size: 0.82rem; }
        .footer-address { font-size: 0.82rem; line-height: 1.6; }
        .footer-address p { font-size: 0.82rem; }
        .footer-contact-row { margin-bottom: 0.6rem; }
        .footer-contact-columns { gap: 1.2rem; }
        .footer-text { font-size: 0.65rem; }
        .footer-copyright { margin-top: -0.8rem; }
    }

    /* ═══ LAPTOP 13″/11″ (≤1280px) ═══ */
    @media (max-width: 1280px) {
        /* Hero */
        .hero-slide-title { font-size: 2rem; }
        .hero-division-text { font-size: 0.82rem; }
        #heroNav .nav-menu { gap: 1.1rem; }
        #heroNav .nav-menu li a { font-size: 9pt; }
        .hero-logo-nav { height: 42px; }
        .hero-nav-row-2 { height: 46px; }

        /* Product Range — aggressive shrink, keep side-by-side */
        .product-range-section { padding: 5rem 4.5% 3rem; }
        .product-range-section h2 { font-size: 0.72rem; }
        .product-range-section h3 { font-size: 1.8rem; }
        .product-range-section h4 { font-size: 1.8rem; margin-bottom: 2rem; }
        .product-range-content { gap: 1.8rem; }
        .category-grid { max-width: 420px; gap: 0.8rem; }
        .category-square { padding: 0.6rem; }
        .category-square img { width: 80px; height: 80px; margin-bottom: 0.5rem; }
        .category-square span { font-size: 8.5pt; }
        .category-square::after { font-size: 8.5pt; }

        /* Brand slider — compact */
        .slider-container { max-width: 400px; min-width: 260px; }
        .brand-slider { max-width: 370px; height: 380px; border-radius: 14px;
                        box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
        #brandSlide .brand-slide-item { padding: 1.2rem 1.3rem 3rem; }
        .brand-header { margin-bottom: 0.8rem; padding-bottom: 0.3rem; }
        .brand-logo-container { width: 90px; height: 42px; }
        .brand-type-badge { font-size: 0.32rem; white-space: normal; text-align: center; line-height: 1.3; max-width: 100px; }
        .brand-name { font-size: 0.62rem; }
        .brand-name-section { margin-bottom: 0.15rem; }
        .brand-info-grid { gap: 0.2rem; padding: 0.25rem 0; margin-bottom: 0.2rem; }
        .brand-info-value { font-size: 0.58rem; }
        .brand-info-label { font-size: 0.38rem; }
        .brand-info-icon { width: 18px; height: 18px; min-width: 18px; padding: 3px; }
        .brand-specialties-title { font-size: 0.42rem; }
        .specialty-name { font-size: 0.5rem; }
        .specialty-item { padding: 0.2rem 0.25rem; min-height: 22px; }
        .brand-specialties-list { gap: 0.15rem; }
        .brand-specialties { gap: 0.2rem; }
        .cert-badge { width: 20px; height: 20px; font-size: 0.4rem; }
        .brand-view-products-btn { font-size: 0.48rem; padding: 0.2rem 0.45rem; border-radius: 7px; position: relative; bottom: auto; left: auto; letter-spacing: 0.8px; }
        .dot { width: 7px; height: 7px; }
        .dot-navigation { gap: 7px; bottom: 10px; }

        /* Stats */
        .stats-section { padding: 1.8rem 4%; }
        .stat-number { font-size: 1.8rem; }
        .stat-label { font-size: 0.52rem; }
        .stat-icon-wrapper { width: 28px; height: 28px; }

        /* About */
        .about-section { padding: 2.5rem 4.5%; }
        .about-image-placeholder { height: 280px; }
        .about-text-content h2 { font-size: 0.52rem; }
        .about-text-content h3 { font-size: 1.7rem; }
        .about-text-content h4 { font-size: 1.5rem; }
        .about-text-content p { font-size: 0.8rem; line-height: 1.65; }
        .about-btn { font-size: 0.62rem; padding: 6px 12px; }
        .certifications-btn .text { font-size: 0.62rem; }
        .established-year { font-size: 0.55rem; }
        .established-label { font-size: 0.55rem; }

        /* Major Projects */
        .major-projects-section h3 { font-size: 1.2rem; }
        .project-card { max-width: 230px; }
        .project-card-image { height: 150px; }
        .project-title { font-size: 0.75rem; }
        .project-products { font-size: 0.65rem; }
        .project-products-list li { font-size: 0.6rem; }
        .view-all-projects-btn { font-size: 0.68rem; padding: 8px 24px; }

        /* Footer — aggressive: slash gaps, allow text wrap */
        .footer { padding: 1.8rem 3.5% 1rem; }
        .footer-main { gap: 1.5rem; margin-bottom: 1.2rem; }
        .footer-logo { height: 65px; }
        .footer-logo-section { gap: 1rem; }
        .footer-tagline-list { margin-left: -1rem; margin-top: -1.5rem; gap: 0.25rem; }
        .footer-tagline-list li { font-size: 0.52rem; padding-left: 0.5rem; }
        .footer-social { gap: 8px; }
        .footer-social a { width: 32px; height: 32px; border-radius: 5px; }
        .footer-social svg { width: 15px; height: 15px; }
        .footer-sections-group { gap: 1.2rem; margin-left: 6rem !important;}
        .footer-divider { min-height: 70px; }
        .footer-nav-section h4, .footer-projects-section h4 { font-size: 0.8rem; margin-bottom: 0.6rem; }
        .footer-contact-section h4 { font-size: 0.8rem; margin-bottom: 0.4rem; }
        .footer-nav-links li a, .footer-projects-links li a { font-size: 0.72rem; white-space: normal; }
        .footer-nav-links, .footer-projects-links { gap: 0.35rem 0rem; }
        .footer-contact-info { font-size: 0.72rem; line-height: 1.5; }
        .footer-contact-info a { font-size: 0.72rem; }
        .footer-address { font-size: 0.72rem; line-height: 1.5; }
        .footer-address p { font-size: 0.72rem; }
        .footer-contact-row { gap: 0.4rem; margin-bottom: 0.5rem; }
        .footer-contact-icon { width: 12px; height: 12px; margin-top: 4px; }
        .footer-contact-columns { gap: 1.8rem !important; }
        .footer-text { font-size: 0.58rem; }
        .footer-copyright { margin-top: 0rem !important; padding-top: 0.6rem; }
    }





        @media (max-width: 1024px) {
            /* ── Navbars hidden — sidebar takes over ── */
            #heroNav, #scrolledNav { display: none; }
            .mobile-header-box { display: flex; }

            /* ══ HERO — CMN style: text above, image card below ══ */
            .hero-logo { display: none !important; }
            .hero-slider-section {
                position: relative !important;
                height: auto !important;
                min-height: 0 !important;
                max-height: none !important;
                padding: 38px 5% 0 5% !important;
                display: flex !important;
                flex-direction: column !important;
            }
            /* background-slideshow becomes a flex column: text first, then image card */
            .background-slideshow {
                position: relative !important;
                width: 100% !important;
                height: auto !important;
                display: flex !important;
                flex-direction: column !important;
            }
            /* Show only the active bg-slide as an image card — with fade */
            .bg-slide {
                display: none !important;
            }
            .bg-slide.active {
                display: block !important;
                position: relative !important;
                width: 100% !important;
                height: 200px !important;
                border-radius: 12px !important;
                overflow: hidden !important;
                margin-top: 3rem !important;
                order: 2 !important;
                background-size: cover !important;
                background-position: center !important;
                flex-shrink: 0 !important;
                animation: mobileBgFade 0.6s ease forwards !important;
            }
            @keyframes mobileBgFade {
                from { opacity: 0; transform: scale(1.03); }
                to   { opacity: 1; transform: scale(1); }
            }
            /* Slide 0 text content floats ABOVE the image */
            .hero-slide-content { display: none !important; }
            .hero-slide-content[data-slide="0"] {
                display: flex !important;
                position: relative !important;
                top: auto !important;
                left: auto !important;
                order: 1 !important;
                flex-direction: column !important;
                align-items: flex-start !important;
                padding: 0 !important;
                z-index: 2 !important;
            }
            .hero-slide-title {
                font-size: 1.6rem !important;
                line-height: 1.2 !important;
                color: #0d274b !important;
                text-shadow: none !important;
            }
            .hero-slide-title span { font-size: inherit !important; color: inherit !important; }
            .hero-slide-title br { display: none !important; }
            /* No border-left on mobile border group — text just left-aligned under title */
            .hero-border-group { border-left: none !important; }
            .hero-division-text {
                font-size: 1rem !important;
                line-height: 1.5 !important;
                color: #444 !important;
                border-left: none !important;
                padding-left: 0 !important;
                margin-left: 0 !important;
                border-bottom:#e4e4e4 1px solid;
                padding-bottom: 20px;
                margin-bottom: 0rem;
            }
            /* Hero text must never fade out on mobile — always visible */
            .hero-slide-content[data-slide="0"],
            .hero-slide-content[data-slide="0"].fading-out {
                opacity: 1 !important;
                pointer-events: auto !important;
            }
            /* Hide view more button on mobile completely */
            .hero-view-more-btn { display: none !important; }
            /* Kill all slideshow chrome */
            .explore-button { display: none !important; }
            .hero-playback-controls { display: none !important; }
            .hero-progress-container { display: none !important; }
            /* Scroll-spacer gone — product range is normal flow */
            .scroll-spacer { height: 0 !important; display: none !important; }
            .product-range-section {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                max-height: none !important;
                overflow: visible !important;
                padding: 0rem 4% 2rem 4% !important;
                z-index: 999 !important;
            }

            /* ══ PRODUCT RANGE ══ */
            .product-range-section h2 { font-size: 0.6rem !important; letter-spacing: 2px !important; }
            .product-range-section h3 { font-size: 1rem !important; }
            .product-range-section h4 { font-size: 1rem !important; margin-bottom: 2rem !important;}
            .product-range-content { flex-direction: column !important; align-items: center !important; gap: 1.5rem !important; }
            .category-grid { grid-template-columns: repeat(2, 1fr) !important; max-width: 100% !important; width: 100% !important; gap: 0.75rem !important; }
            .category-square { padding: 0.8rem 0.5rem !important; aspect-ratio: 1 !important; }
            .category-square img { width: 65px !important; height: 65px !important; object-fit: contain !important; margin-bottom: 0.4rem !important; }
            .category-square span { font-size: 0.7rem !important; opacity: 1 !important; color: #000 !important; }
            .category-square::after { display: none !important; }
            .category-square::before { display: none !important; }
            .category-square:hover { transform: none !important; box-shadow: none !important; }
            .category-square:hover span { opacity: 1 !important; color: #000 !important; }

            /* ══ BRAND SLIDER — absolute stack + opacity fade, NO display:none flash ══ */
            .slider-container { width: 100% !important; max-width: 100% !important; min-width: unset !important; border-bottom: 1px #e4e4e4 solid; padding-bottom: 50px; }
            .brand-slider {
                height: 260px !important;
                min-height: 260px !important;
                max-width: 100% !important;
                overflow: hidden !important;
                position: relative !important;
            }
            #brandSlide { height: 100% !important; position: relative !important; }
            /* ALL slides always rendered, stacked via absolute — fade via opacity only */
            #brandSlide .brand-slide-item {
                position: absolute !important;
                top: 0 !important; left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                display: flex !important;
                flex-direction: column !important;
                justify-content: flex-start !important;
                padding: 0.7rem 0.8rem 2rem 0.8rem !important;
                opacity: 0 !important;
                pointer-events: none !important;
                transition: opacity 0.45s ease !important;
                overflow-y: hidden !important;
            }
            #brandSlide .brand-slide-item.active-slide {
                opacity: 1 !important;
                pointer-events: auto !important;
            }
            /* Small gap line under brand header */
            .brand-header {
                margin-bottom: 1rem !important;
                padding-bottom: 0.4rem !important;
                border-bottom: 0px solid #f0f0f0 !important;
            }
            .brand-logo-container { width: 100px !important; height: 50px !important; padding: 0.35rem !important; }
            /* Badge — much smaller, keep inside logo-wrapper */
            .brand-type-badge {
                font-size: 0.38rem !important;
                padding: 0.15rem 0.3rem !important;
                letter-spacing: 0.8px !important;
                bottom: -9px !important;
            }
            .brand-name { font-size: 0.7rem !important; }
            .brand-name-section { margin-bottom: 0.2rem !important; }
            .brand-info-grid { gap: 0.3rem !important; padding: 0.4rem 0 !important; margin-bottom: 0.3rem !important; }
            .brand-info-value { font-size: 0.68rem !important; }
            .brand-info-label { font-size: 0.5rem !important; }
            /* Icons smaller */
            .brand-info-icon { width: 22px !important; height: 22px !important; min-width: 22px !important; padding: 4px !important; }
            .brand-specialties-title { font-size: 0.5rem !important; margin-bottom: 0.2rem !important; }
            .specialty-name { font-size: 0.6rem !important; }
            .specialty-item { padding: 0.28rem 0.32rem !important; min-height: 26px !important; }
            .brand-specialties-list { grid-template-columns: 1fr 1fr !important; gap: 0.2rem !important; }
            .brand-specialties { gap: 0.25rem !important; flex: none !important; }
            .cert-badge { width: 24px !important; height: 24px !important; font-size: 0.46rem !important; }
            /* View products - smaller font, positioned at bottom within flow */
            .brand-view-products-btn {
                position: relative !important;
                bottom: auto !important;
                left: auto !important;
                margin-top: 0.5rem !important;
                display: inline-block !important;
                align-self: flex-start !important;
                padding: 0.28rem 0.6rem !important;
                font-size: 0.4rem !important;
            }

            /* ══ STATS — contained box matching about image width, 2-row layout ══ */
            .stats-section {
                width: auto !important;
                max-width: calc(100% - 10%) !important;
                margin: 0 auto !important;
                padding: 1.5rem 1.5rem !important;
                min-height: 0 !important;
                background-attachment: scroll !important;
                border-radius: 14px !important;
                justify-content: center !important;
                
                
            }
            .stats-wrapper {
                width: 100% !important;
                max-width: 100% !important;
                margin: 0 auto !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 1rem !important;
                grid-template-areas:
                    "projects professionals"
                    "products products" !important;
                

            }
            .stat-item:nth-child(1) { grid-area: projects !important; }
            .stat-item:nth-child(2) { grid-area: products !important; }
            .stat-item:nth-child(3) { grid-area: professionals !important; }
            .stat-item:last-child { grid-column: auto !important; }
            .stat-icon-wrapper { display: none !important; }
            .stat-number { font-size: 1.5rem !important; margin-bottom: 0.2rem !important; }
            .stat-label { font-size: 0.55rem !important; letter-spacing: 0.5px !important; }

            /* ══ ABOUT / MD ══ */
            .about-content { flex-direction: column !important; gap: 1.5rem !important; border-top: 1px #e4e4e4 solid; padding-top: 50px; }
            .about-image-placeholder { max-width: 100% !important; height: 260px !important; }
            .established-label { font-size: 0.62rem !important; }
            .established-year { font-size: 0.62rem !important; }
            .about-text-content h2 { font-size: 0.58rem !important; }
            .about-text-content h3 { font-size: 1.2rem !important; }
            .about-text-content h4 { font-size: 1.2rem !important; margin-bottom: 0.8rem !important; }
            .about-text-content p { font-size: 0.82rem !important; }
            .about-action-buttons { flex-direction: row !important; gap: 0.5rem !important; }
            .about-btn, .certifications-link { flex: 1 !important; }
            .about-btn { padding: 7px 5px !important; font-size: 0.66rem !important; text-align: center !important; }
            .certifications-btn { width: 100% !important; padding: 7px 5px !important; justify-content: center !important; }
            .certifications-btn .text { font-size: 0.66rem !important; }
            .folderContainer { display: none !important; }

            /* ══ MAJOR PROJECTS ══ */
            .major-projects-section {
                padding: 1.5rem 0 1.5rem 0 !important;
                min-height: 0 !important;
                height: auto !important;
            }
            .major-projects-section h3 { font-size: 1.2rem !important; text-align: center !important; margin-bottom: 1.5rem !important; margin-top: 0 !important; }
            .projects-scroll-container { min-height: 0 !important; height: auto !important; padding: 0 !important; }
            .projects-scroll-wrapper {
                overflow-x: auto !important;
                -webkit-overflow-scrolling: touch !important;
                scroll-snap-type: x mandatory !important;
                padding: 0.8rem 1rem !important;
                gap: 0.8rem !important;
                cursor: default !important;
            }
            .project-card {
                min-width: 72vw !important;
                max-width: 72vw !important;
                min-height: unset !important;
                max-height: unset !important;
                height: auto !important;
                scroll-snap-align: start !important;
                flex-shrink: 0 !important;
                box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
            }
            .project-card:hover { transform: none !important; box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important; }
            /* Taller project card images */
            .project-card-image { height: 155px !important; min-height: 155px !important; max-height: 155px !important; }
            .project-card-content { padding: 0.75rem !important; flex: 1 !important; }
            .project-title { font-size: 0.8rem !important; min-height: unset !important; }
            .project-products { font-size: 0.68rem !important; margin-bottom: 0.4rem !important; }
            .project-products-list { padding-bottom: 0.6rem !important; }
            .project-products-list li { font-size: 0.65rem !important; padding: 0.25rem 0 !important; }
            .product-icon { width: 16px !important; height: 16px !important; }
            .projects-arrows-container { display: none !important; }
            /* View All Projects button — clean, centred */
            .view-all-projects-btn {
                padding: 9px 40px 9px 22px !important;
                font-size: 0.75rem !important;
                margin: 0.5rem auto 0 auto !important;
                display: flex !important;
                margin-top: 2.5rem !important;
                margin-bottom: 1rem !important;
            }
            .view-all-projects-btn .text { transform: none !important; }
            .view-all-projects-btn .arr-1 { right: 12px !important; }

            /* ══ FOOTER — centred, social icons visible ══ */
            .footer { padding: 1.8rem 5% 1rem !important; }
            .footer-main { grid-template-columns: 1fr !important; gap: 1rem !important; }
            /* Hide logo section (floating pill covers it) */
            .footer-logo-section { display: none !important; }
            /* Centre the sections group */
            .footer-sections-group {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 1rem 1.5rem !important;
                margin: 0 auto !important;
                width: 100% !important;
                max-width: 100% !important;
                justify-items: center !important;
                text-align: center !important;
                margin-left: 10rem;

            }
            .footer-divider { display: none !important; }
            /* Contact spans full width */
            .footer-contact-section { grid-column: 1 / -1 !important; width: 100% !important; }
            /* Social icons in contact section (mobile-only copy) */
            .footer-social-mobile {
                display: flex !important;
                gap: 12px !important;
                margin-top: 0.8rem !important;
                justify-content: center !important;
            }
            .footer-nav-section h4,
            .footer-projects-section h4,
            .footer-contact-section h4 { font-size: 0.82rem !important; margin-bottom: 0.45rem !important; }
            .footer-nav-links, .footer-projects-links {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                gap: 0.28rem !important;
            }
            .footer-nav-links li a,
            .footer-projects-links li a { font-size: 0.76rem !important; }
            .footer-contact-columns { flex-direction: column !important; gap: 0.4rem !important; }
            .footer-contact-section .footer-contact-row,
            .footer-contact-info a,
            .footer-address p { font-size: 0.76rem !important; line-height: 1.65 !important; text-align: center !important; }
            .footer-contact-row { margin-bottom: 0.35rem !important; justify-content: center !important; }
            .footer-contact-icon { flex-shrink: 0 !important; margin-left: -1.5rem;}
            .footer-copyright { padding-top: 0.7rem !important; flex-direction: column !important; gap: 0.25rem !important; text-align: center !important; justify-content: center !important; }
            .footer-text { font-size: 0.6rem !important; }

            /* ══ HERO — white background ══ */
            .hero-slider-section {
                background-color: #ffffff !important;
                padding-bottom: 1.5rem !important;
            }
            .background-slideshow::after { display: none !important; }
            /* Image first, text below */
            .bg-slide.active { order: 1 !important; }
            .hero-slide-content[data-slide="0"] {
                order: 2 !important;
                margin-top: 0.75rem !important;
            }
            /* View more btn: hidden on mobile */

            /* ══ BRAND SLIDER — handled above ══ */

            /* Stats: small top margin for breathing room after brand slider */
            .stats-section {
                margin-top: 1.5rem !important;
                box-shadow: none !important;
            }

            /* ══ STATS — handled in main mobile block ══ */

            /* ══ ABOUT — fix image overlapping "Who We Are" text ══ */
            .established-badge { display: none !important; }
            .about-text-content h2 { margin-top: 0 !important; }
            .about-image-placeholder { overflow: hidden !important; }

            /* ══ ABOUT buttons — reduce height by 40% ══ */
            .about-btn { padding: 4px 5px !important; }
            .certifications-btn { padding: 0px 10px !important; }
            .certifications-btn .text { padding: 4px 6px !important; }

            /* ══ MAJOR PROJECTS — more margin under title & product supplied ══ */
            .project-title { margin-bottom: 0.6rem !important; }
            .project-products { margin-bottom: 0.55rem !important; }

            /* ══ FOOTER — centre h4 headings above their links ══ */
            .footer-nav-section h4,
            .footer-projects-section h4,
            .footer-contact-section h4 {
                text-align: center !important;
            }

            /* ══ BACK TO TOP — completely hidden on mobile ══ */
            #backToTopBtn { display: none !important; }
        }

        @media (max-width: 768px) {
            .footer-sections-group { grid-template-columns: 1fr 1fr !important; margin-left: 10rem; }
        }

    /* ═══ PHONE (≤600px) ═══ */
    @media (max-width: 600px) {
        .mobile-header-box { top: 0.7rem; left: 0.7rem; }
        .mobile-logo { height: 42px; }
        .hero-slide-title { font-size: 1rem !important; margin-top: 1rem; }
        .hero-division-text { font-size: 0.8rem !important; }
        .product-range-section h2 { font-size: 0.5rem !important; }
        .product-range-section h3 { font-size: 0.88rem !important; }
        .product-range-section h4 { font-size: 0.88rem !important; margin-bottom: 1.2rem !important; }
        .category-grid { gap: 0.45rem !important; }
        .category-square img { width: 48px !important; height: 48px !important; }
        .category-square span { font-size: 0.58rem !important; }
        .brand-slider { height: 220px !important; }
        .brand-logo-container { width: 75px !important; height: 38px !important; }
        .brand-name { font-size: 0.55rem !important; }
        .brand-info-value { font-size: 0.52rem !important; }
        .specialty-name { font-size: 0.48rem !important; }
        .stat-number { font-size: 1rem !important; }
        .stat-label { font-size: 0.45rem !important; }
        .about-text-content h3 { font-size: 1rem !important; }
        .about-text-content h4 { font-size: 1rem !important; }
        .about-text-content p { font-size: 0.72rem !important; }
        .about-image-placeholder { height: 180px !important; }
        .major-projects-section h3 { font-size: 0.95rem !important; }
        .project-card { min-width: 78vw !important; max-width: 78vw !important; }
        .project-card-image { height: 120px !important; min-height: 120px !important; max-height: 120px !important; }
        .project-title { font-size: 0.7rem !important; }
        .view-all-projects-btn { font-size: 0.62rem !important; padding: 6px 22px !important; }
        .bg-slide.active { height: 155px !important; }
        .footer { padding: 1.2rem 4% 0.7rem !important; }
        .footer-sections-group {
            grid-template-columns: 1fr 1fr !important;
            gap: 0.7rem 1.5rem !important;
            margin: 0 auto !important;
        }
        .footer-nav-section h4, .footer-projects-section h4, .footer-contact-section h4 { font-size: 0.72rem !important; text-align: center !important; }
        .footer-nav-links li a, .footer-projects-links li a { font-size: 0.65rem !important; }
        .footer-contact-section .footer-contact-row, .footer-contact-info a, .footer-address p { font-size: 0.65rem !important; }
        .footer-text { font-size: 0.5rem !important; }
    }



        @media (max-width: 480px) {
            .mobile-header-box { top: 0.7rem; left: 0.7rem; }
            .mobile-logo { height: 42px; }
            .hero-slide-title { font-size: 1rem !important; margin-top:1rem;}
            .stat-number { font-size: 1.2rem !important; }
        }

                /* Hero Section */
        .hero-slider-section {
            position: relative;
            width: 100%;
            height: 100vh;
            background-color: #000000;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 8%;
            overflow: hidden;
            z-index: 10;
        }

        .hero-slider-section.scrolled-away {
            pointer-events: none;
        }

        .hero-logo {
            position: absolute;
            top: 10px;
            left: 2%;
            height: 140px;
            z-index: 10;
            cursor: pointer;
            filter: brightness(1);
            transition: all 0.3s ease;
        }

        .hero-logo:hover {
            filter: brightness(1);
            transform: scale(1);
        }

        .background-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .background-slideshow .bg-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .background-slideshow .bg-slide.active {
            opacity: 1;
        }

        /* UPDATED: Left-side blue gradient overlay instead of full dark overlay */
        .background-slideshow::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(13, 39, 75, 0.88) 0%,
                rgba(18, 60, 115, 0.75) 25%,
                rgba(18, 60, 115, 0.45) 45%,
                rgba(18, 60, 115, 0.15) 60%,
                transparent 75%
            );
            z-index: 1;
        }

        .background-slideshow .bg-slide:nth-child(1) { background-image: url('background/amad-office-interior-groundfloor.jpg'); }
        .background-slideshow .bg-slide:nth-child(2) { background-image: url('background/amad-office.jpg'); }
        .background-slideshow .bg-slide:nth-child(3) { background-image: url('background/amad-staff.jpeg'); }
        .background-slideshow .bg-slide:nth-child(4) { background-image: url('background/managing-director-interview.jpg');}
        .background-slideshow .bg-slide:nth-child(5) { background-image: url('background/warehouse1.jpg'); }
        .background-slideshow .bg-slide:nth-child(6) { background-image: url('background/warehouse2.jpg'); }
        .background-slideshow .bg-slide:nth-child(7) { background-image: url('background/amad-office.jpg'); }
        
        .hero-slide-content {
            position: absolute;
            top: 30%;
            left: 8%;
            transform: translateY(0);
            z-index: 5;
            opacity: 0;
            transition: opacity 0.7s ease;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            max-width: 800px;
        }

        .hero-slide-content.active {
            opacity: 1;
            pointer-events: auto;
        }

        .hero-slide-content.fading-out {
            opacity: 0;
            pointer-events: none;
        }

        .hero-division-text {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 300;
            color: #ffffff;
            margin-bottom: 1rem;
            line-height: 1.2;
            max-width: 360px;
            text-align: justify;
            border-left: 1px solid #ffcd45;
            padding-left: 15px;
            margin-left: 40px;
            pointer-events: auto;
        }

        .hero-border-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 1.5rem;  /* Add clear separation */
            max-height: fit-content;  /* Don't let it extend */
            pointer-events: none;
        }

        .hero-slide-title {
            font-family: 'Inter', sans-serif;
            font-size: 2.6rem;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            letter-spacing: 0px;
            pointer-events: none;  /* Make title non-clickable */
            width: fit-content;
        }
        
        .hero-slide-title span {
            margin-right: 0rem;
            pointer-events: none;  /* Make spans non-clickable too */
        }
        
        .hero-slide-dots {
            display: none;
        }

        .hero-division-labels {
            display: flex;
            width: 650px;
            gap: 0;
            margin-bottom: 0.8rem;
            align-items: center;
            justify-content: space-between;
        }

        .division-label-item {
            flex: 1;
            font-family: 'Inter', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
            opacity: 0.5;
            transition: opacity 0.4s ease, transform 0.3s ease, color 0.3s ease;
            cursor: pointer;
            padding: 0.3rem 0.2rem;
            position: relative;
            margin-bottom: 0rem;
        }

        .division-label-item.active {
            opacity: 1;
            transform: scale(1.05);
        }

        .division-label-item:hover {
            opacity: 1;
            color: #ffcd45;
        }

       .hero-view-more-btn {
            display: inline-block;
            padding: 10px 20px;
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            color: #123c73;
            background: #ffffff;
            border: 2px solid #ffffff;
            border-radius: 0px;
            text-decoration: none;
            cursor: pointer !important;  /* Force cursor */
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: absolute;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
            align-self: flex-start;
            margin-top: -1rem;
            margin-bottom: 0rem;  /* Add space below to prevent overlap */
            z-index: 1000;  /* Very high z-index */
            top: 200px;
            
        }
        
        .hero-view-more-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        
        .hero-view-more-btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .hero-view-more-btn:hover {
            color: #ffffff;
            background: transparent;
            border-color: #ffffff;
            transform: translateY(0px);
        }

        .hero-logo-nav {
            height: 65px;
            cursor: pointer;
            margin-left: 1.5rem;
            filter: brightness(1);
            margin-top: 0px;
            z-index: 10;
            position: relative;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(-0%);
        }

        #heroNav.nav-hovering .hero-logo-nav {
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(0%);
            opacity: 1;
            pointer-events: auto;
        }

        #heroNav.nav-unhovering .hero-logo-nav {
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(-0%);
            transition-delay: 0.5s;
            opacity: 0;
            pointer-events: none;
        }

        .hero-logo-nav:hover {
            filter: brightness(1);
        }
        

        /* Loading Bar and Controls */
        .hero-progress-container {
            position: absolute;
            top: 70%;
            left: 8%;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            max-width: 650px;
            z-index: 4;
            
        }

        .hero-loading-bar {
            display: flex;
            gap: 0;
            align-items: center;
            height: 5px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
            width: 650px;
        }

        .loading-segment {
            height: 100%;
            flex: 1;
            background: transparent;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .loading-segment:hover {
            background: rgba(255, 205, 69, 1);
        }

        .loading-segment::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 1px;
            height: 100%;
            background: rgb(255, 255, 255);
        }

        .loading-segment:last-child::before {
            display: none;
        }

        .loading-segment.active {
            background: #ffffff;
        }

        .hero-playback-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .playback-btn {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-width: 100px;
            padding-bottom: 10px;
        }

        .playback-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(0px);
        }

        .playback-btn:active {
            transform: translateY(0);
        }

        .pause-btn {
            min-width: 40px;
            width: 40px;
            height: 40px;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            line-height: 1;
            gap: 0;
        }

        .pause-btn.playing::before {
            content: '⏸';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            margin-bottom: 3px;
            margin-left: 1px;
        }

        .pause-btn.paused::before {
            content: '▶';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            margin-top: 1px;
            margin-left: 5px;
        }
        
        .explore-button {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            background: transparent;
            border: none;
        }

        .explore-logo {
            width: 80px;
            height: auto;
            fill: #ffffff;
            animation: bounce 1s infinite;
            display: inline-block;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-18px); }
        }

        .back-to-top {
            position: fixed !important;
            bottom: 24px !important;
            right: 24px !important;
            left: auto !important;
            top: auto !important;
            z-index: 9999;
            width: 70px;
            height: 70px;
            min-width: 70px;
            min-height: 70px;
            border-radius: 50%;
            border: none;
            background: rgba(18, 60, 115, 0.95);
            color: #ffffff;
            cursor: pointer;
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            opacity: 0;
            pointer-events: none;
            transform: translateY(10px) scale(0.9);
            transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            margin: 0;
        }

        .back-to-top.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0) scale(1);
        }

        .back-to-top:hover {
            background: rgba(18, 60, 115, 1);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
        }

        .back-to-top-arrow-img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .back-to-top:hover .back-to-top-arrow-img {
            transform: translate(-50%, -50%) translateY(-2px);
        }

        .progress-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-90deg);
            pointer-events: none;
            width: 70px;
            height: 70px;
        }

        .progress-ring-bg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.1);
            stroke-width: 3;
        }

        .progress-ring-circle {
            fill: none;
            stroke: #ffcd45;
            stroke-width: 3;
            stroke-linecap: round;
            stroke-dasharray: 201.06;
            stroke-dashoffset: 201.06;
            transition: stroke-dashoffset 0.1s linear;
            filter: drop-shadow(0 0 4px rgba(255, 205, 69, 0.5));
        }

        .back-to-top-text {
            display: none !important;
        }

        .back-to-top-arrow {
            display: none !important;
        }

        .hero-content-container {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-left: 8%;
            padding-top: 6vh;
        }

        .hero-text-box {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 4rem;
        }

        .scroll-spacer {
            height: 50vh;
            width: 100%;
            position: relative;
            z-index: 5;
        }

        .product-range-section {
            position: fixed;
            margin-top: -50px;
            top: 0;
            left: 0;
            width: 100%;
            min-height: 100vh;
            background: #ffffff;
            padding: 8rem 8% 5rem 8%;
            display: flex;
            flex-direction: column;
            z-index: 6;
        }

        .product-range-section.hero-gone {
            position: absolute;
            top: 100vh;
            left: 0;
            z-index: 6;
        }

        .product-range-section h2 {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            color: #123c73;
            margin-bottom: 1rem;
            margin-top: 1rem;
            text-align: center;
        }

        .product-range-section h3 {
            font-family: 'Inter', sans-serif;
            font-size: 3rem;
            font-weight: 200;
            color: #000000;
            margin-bottom: 0rem;
            text-align: center;
        }

        .product-range-section h4 {
            font-family: 'Inter', sans-serif;
            font-size: 3rem;
            font-weight: 200;
            color: #123c73;
            margin-bottom: 4rem;
            text-align: center;
        }

        .product-range-content {
            display: flex;
            gap: 3rem;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            flex: 1;
            max-width: 750px;
            align-self: center;
        }

        .category-square {
            aspect-ratio: 1;
            background: #f5f5f5;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .category-square::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, #90eeff, #000099);
            transition: height 0.3s ease;
            z-index: 0;
        }

        .category-square:hover::before {
            height: 100%;
        }

        .category-square img {
            width: 160px;
            height: 160px;
            object-fit: contain;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .category-square:hover img {
            transform: scale(1);
        }
        

        .category-square span {
            font-family: 'Inter', sans-serif;
            font-size: 12pt;
            font-weight: 400;
            color: #000000;
            text-align: center;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease, opacity 0.3s ease;
        }

        .category-square:hover span {
            color: #ffffff;
        }

        .category-square:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .category-square:hover img {
            opacity: 1;
        }

        .category-square:hover span {
            opacity: 0;
        }

        .category-square::after {
            content: 'View Products';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, 380%);
            font-family: 'Inter', sans-serif;
            font-size: 12pt;
            font-weight: 500;
            color: #ffffff;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
            pointer-events: none;
            white-space: nowrap;
        }

        .category-square:hover::after {
            opacity: 1;
        }

        .slider-container {
            flex: 1;
            max-width: 700px;
            min-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ========================================= */
        /* BRAND SHOWCASE SLIDER - FIXED */
        /* ========================================= */
        .brand-slider {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 550px;
            background: #ffffff;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border: 1px solid #e0e0e0;
        }

        .dot-navigation {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(18, 60, 115, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot:hover {
            background: rgba(18, 60, 115, 0.5);
        }

        .dot.active {
            background: #ffcd45;
            box-shadow: 0 0 8px #ffcd45;
        }

        #brandSlide {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* ALL slides hidden by default */
        #brandSlide .brand-slide-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            display: flex;
            flex-direction: column;
            padding: 2.5rem 2.5rem 5.5rem 2.5rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        }

        /* Active slide visible */
        #brandSlide .brand-slide-item.active-slide {
            z-index: 3;
            opacity: 1;
            pointer-events: auto;
        }

        /* Brand Header Section */
        .brand-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 2rem;
            position: relative;
            flex-shrink: 0;
        }

        .brand-logo-wrapper {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .brand-logo-container {
            width: 280px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            border: 2px solid #f0f0f0;
        }

        .brand-logo-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .brand-type-badge {
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.5rem 1.5rem;
            background: linear-gradient(135deg, #ffcd45 0%, #ffa726 100%);
            color: #0d274b;
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 25px;
            box-shadow: 0 4px 16px rgba(255, 205, 69, 0.4);
            border: 2px solid #ffffff;
            white-space: nowrap;
            z-index: 2;
        }

        .brand-certifications {
            display: flex;
            gap: 0.6rem;
            align-items: flex-start;
            flex-shrink: 0;
        }

        .cert-badge {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #123c73, #0d274b);
            border: 2px solid #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-size: 0.65rem;
            font-weight: 300;
            color: #ffffff;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(18, 60, 115, 0.3);
        }

        .cert-badge:hover {
            background: linear-gradient(135deg, #ffcd45, #ffa726);
            color: #0d274b;
            box-shadow: 0 6px 16px rgba(255, 205, 69, 0.4);
        }

        /* FIXED: Brand Info Section - Grid-based for consistency */
        .brand-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1.2rem 0;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
            flex-shrink: 0;
        }

        .brand-info-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .brand-info-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            flex-shrink: 0;
            background: linear-gradient(135deg, #123c73, #0d274b);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6px;
            box-shadow: 0 2px 8px rgba(18, 60, 115, 0.2);
        }

        .brand-info-icon img {
            width: 150%;
            height: 150%;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .brand-info-content {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .brand-info-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.65rem;
            font-weight: 600;
            color: #7c7c7c;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.1rem;
            white-space: nowrap;
        }

        .brand-info-value {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: #123c73;
            white-space: nowrap;
        }

        .brand-name-section {
            margin-bottom: 0.8rem;
            flex-shrink: 0;
        }

        .brand-name {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #123c73;
            margin-bottom: 0rem;
            line-height: 1.2;
        }

        .brand-specialties {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0;
        }

        .brand-specialties-title {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: -0rem;
        }

        .brand-specialties-list {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 0.3rem;
        }

        .specialty-item {
            background: #ffffff;
            padding: 1rem 1rem;
            border-radius: 10px;
            border: 2px solid #e8e8e8;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 50px;
            max-width: 200px;
        }

        .specialty-name {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: #000000;
            text-align: center;
            line-height: 1.3;
            transition: all 0.3s ease;
        }

        


       .brand-view-products-btn {
            position: absolute;
            bottom: 3rem;
            left: 2.5rem;
            padding: 0.9rem 1.4rem;
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #ffffff;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            text-decoration: none;
            overflow: hidden;
            z-index: 1;

            /* Base gradient */
            background: linear-gradient(135deg, #123c73, #0d274b);

            transition: color 0.25s ease, transform 0.25s ease;
        }

        /* Wipe layer */
        .brand-view-products-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(135deg, #ffcd45, #ffa726);
            z-index: -1;

            transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* 🔥 wipe duration */
        }

        /* Hover triggers wipe */
        .brand-view-products-btn:hover::after {
            width: 100%;
        }

        .brand-view-products-btn:hover {
            color: #000000;
            transform: translateY(-5px);
        }

      


        

        /* ========================================= */
        /* ABOUT SECTION - CENTER ALIGNED */
        /* ========================================= */
        .about-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background: #ffffff;
            padding: 4rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .about-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-content {
            display: flex;
            gap: 5rem;
            align-items: center;
            justify-content: center;
            width: 85%;
            max-width: 1800px;
            margin: 0 auto;
        }

        .about-image-placeholder {
            flex: 0 0 auto;
            width: 550px;
            max-width: 550px;
            height: 550px;
            background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
            border-radius: 20px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            position: relative;
            overflow: visible;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .about-image {
            width: 100%;
            height: auto;
            max-height: 100%;
            object-fit: contain;
            border-radius: 0;
            opacity: 0;
            transition: opacity 1.2s ease 0.3s;
            box-shadow: none;
        }

        .about-image.visible {
            opacity: 1;
        }

        .about-text-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: left;
            text-align: center;
            max-width: 600px;
        }

        .about-text-content h2 {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            font-weight: 200;
            color: #123c73;
            margin-bottom: 0.5rem;
            margin-top: -2rem;
            text-align: left;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .established-badge {
            position: absolute;
            top: -15px;
            left: -15px;
            background: linear-gradient(135deg, #cfcfcf, #ffffff);
            padding: 1.2rem 2rem;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(18, 60, 115, 0.4);
            border: 2px solid #0d274b;
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .established-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 400;
            color: #0d274b;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .established-year {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: #0d274b;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-text-content h3 {
            font-family: 'Inter', sans-serif;
            font-size: 4.5rem;
            font-weight: 200;
            color: #000000;
            margin-bottom: 0rem;
            text-align: left;
            line-height: 1.1;
        }

        .about-text-content h4 {
            font-family: 'Inter', sans-serif;
            font-size: 4.5rem;
            font-weight: 200;
            color: #123c73;
            margin-bottom: 2.5rem;
            text-align: left;
            line-height: 1.1;
        }

        .about-text-content p {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            color: #333333;
            margin-bottom: 0.5rem;
            text-align: justify;
            line-height: 1.9;
            max-width: 100%;
        }

        .about-action-buttons {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
            justify-content: left;
        }

        .about-btn {
            padding: 16px 36px;
            font-size: 11pt;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        .read-more-btn {
            background: #123c73;
            color: #ffffff;
            border: 2px solid #123c73;
            box-shadow: 0 4px 2px rgba(18, 60, 115, 0.3);
        }

        .read-more-btn:hover {
            background: transparent;
            color: #123c73;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(18, 60, 115, 0.2);
        }
        
        .certifications-btn {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: fit-content;
            border: 2px solid #a12525;
            padding: 0px 15px;
            border-radius: 10px;
            background-color: #a12525;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 2px rgb(161, 37, 37, 0.3);
        }

        .certifications-link {
            text-decoration: none;
            display: inline-block;
        }

        .folderContainer {
            width: 40px;
            height: fit-content;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            position: relative;    
        }

        .fileBack {
            z-index: 1;
            width: 80%;
            height: auto;
        }

        .filePage {
            width: 50%;
            height: auto;
            position: absolute;
            z-index: 2;
            transition: all 0.3s ease-out;
        }

        .fileFront {
            width: 85%;
            height: auto;
            position: absolute;
            z-index: 3;
            opacity: 0.95;
            transform-origin: bottom;
            transition: all 0.3s ease-out;
        }

        .certifications-btn .text {
            padding: 10px 10px;
            font-size: 11pt;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            color: rgb(255, 255, 255);
            margin-top: 10px;
        }

        .certifications-btn:hover .filePage {
            transform: translateY(-10px);
        }

        .certifications-btn:hover .text {
            color: #a12525;
        }

        .certifications-btn:hover {
            background-color: #ffffff;
            transform: translateY(-2px);
        }

        .certifications-btn:hover .fileFront {
            transform: rotateX(30deg);
        }

        .stats-section {
            position: relative;
            width: 100%;
            min-height: 40vh;
            padding: 6rem 10%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('background/warehouse2.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .stats-wrapper {
            width: 100%;
            max-width: 1400px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6rem;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .stat-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-icon-wrapper {
            width: 120px;
            height: 120px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .stat-item:hover .stat-icon-wrapper {
            transform: scale(1.1);
        }

        .stat-icon-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 4px 20px rgba(255, 205, 69, 0.3));
        }

        .stat-number {
            font-family: 'Inter', sans-serif;
            font-size: 4rem;
            font-weight: 200;
            color: #ffcd45;
            margin-bottom: 1rem;
            line-height: 1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 400;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.4;
        }

        /* Stats responsive: handled in main mobile block below */

        .major-projects-section {
            position: relative;
            width: 100%;
            min-height: 90vh;
            background: #f5f5f5;
            padding: 2rem 0 5rem 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 5;
        }

        .major-projects-section h3 {
            font-family: 'Inter', sans-serif;
            font-size: 4rem;
            font-weight: 200;
            color: #123c73;
            margin-bottom: 2rem;
            margin-top: 2rem;
        }

        .projects-scroll-container {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .projects-scroll-wrapper {
            display: flex;
            gap: 2rem;
            overflow: hidden;
            padding: 2rem 5%;
            width: 100%;
            position: relative;
        }
        
        .projects-arrows-container {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            justify-content: center;
        }

        .scroll-arrow {
            background: rgba(255, 255, 255, 0.95);
            width: 30px;
            height: 30px;
            min-width: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            font-size: 2rem;
            padding-bottom: 9px;
            margin-bottom: 2rem;
            color: #123c73;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: -1.5rem;
        }

        .scroll-arrow:hover {
            background: #ffffff;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            transform: scale(1.1);
        }


        /* From Uiverse.io by gharsh11032000 */ 
        .view-all-projects-btn {
        position: relative;
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 16px 36px;
        border: 4px solid;
        border-color: transparent;
        font-size: 16px;
        background-color: inherit;
        border-radius: 100px;
        font-weight: 600;
        color: #123c73;
        box-shadow: 0 0 0 2px #123c73;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        text-decoration: none;
        }

        .view-all-projects-btn svg {
        position: absolute;
        width: 24px;
        fill: #123c73;
        z-index: 9;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .view-all-projects-btn .arr-1 {
        right: 16px;
        }

        .view-all-projects-btn .arr-2 {
        left: -25%;
        }

        .view-all-projects-btn .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background-color: #123c73;
        border-radius: 50%;
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .view-all-projects-btn .text {
        position: relative;
        z-index: 1;
        transform: translateX(-12px);
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .view-all-projects-btn:hover {
        box-shadow: 0 0 0 12px transparent;
        color: #ffffff;
        border-radius: 12px;
        }

        .view-all-projects-btn:hover .arr-1 {
        right: -25%;
        }

        .view-all-projects-btn:hover .arr-2 {
        left: 16px;
        }

        .view-all-projects-btn:hover .text {
        transform: translateX(12px);
        }

        .view-all-projects-btn:hover svg {
        fill: #ffffff;
        }

        .view-all-projects-btn:active {
        scale: 0.95;
        box-shadow: 0 0 0 4px #123c73;
        }

        .view-all-projects-btn:hover .circle {
        width: 220px;
        height: 220px;
        opacity: 1;
        }


        

        .project-card {
            width: 360px;
            min-width: 360px;
            max-width: 360px;
            height: 420px;
            min-height: 600px;
            max-height: 600px;
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        }

        .project-card-image {
            width: 100%;
            height: 200px;
            min-height: 200px;
            max-height: 200px;
            background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999999;
            font-size: 1.2rem;
            overflow: hidden;
            flex-shrink: 0;
        }

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

        .project-card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
            overflow: hidden;
        }

        .project-title {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: #000000;
            margin-bottom: 0rem;
            line-height: 1.3;
            min-height: 2.4rem;
            margin-top: -0.1rem;
        }



        .project-products {
            font-family: 'Inter', sans-serif;
            font-size: 11pt;
            font-weight: 400;
            color: #123c73;
            margin-bottom: 0.3rem;
        }

        .project-products-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .project-products-list li {
            font-family: 'Inter', sans-serif;
            font-size: 10pt;
            color: #666666;
            padding: 0.6rem 0;
        }

        .project-products-list li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        
        .product-icon {
            width: 30px;
            height: 30px;
            fill: #f64740;
            flex-shrink: 0;
        }

       
        /* Footer responsive: handled in main mobile block */

        @media (max-width: 768px) {
            .about-image-placeholder {
                max-width: 100%;
                height: 280px;
            }
        }

        /* Add this to your <style> section */
        #products {
            scroll-margin-top: 60px; /* Offset for scrolled nav */
        }

        #about {
            scroll-margin-top: 60px; /* Offset for scrolled nav */
        }

        /* ===============================================================
   SEARCH TRIGGER (NAV BUTTON)
=============================================================== */
        .search-trigger{
  display:flex;
  align-items:center;
  gap:0.5rem;
  padding:0.45rem 2.5rem;
  border-radius:6px;
  border:1px solid #ffffff;
  background:#ffffff00;
  font-family:"Inter",sans-serif;
  font-size:0.85rem;
  color:#ffffff;
  cursor:pointer;
  transition:all 0.25s ease;
  white-space:nowrap;
  position: absolute;
  right: 5%;
}

.search-trigger svg{
  width:16px;
  height:16px;
}

.search-trigger:hover{
  border-color:#ffcd45;
  color:#ffcd45;
}

/* ===============================================================
   SEARCH OVERLAY
=============================================================== */
.search-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  backdrop-filter:blur(4px);
  opacity:0;
  pointer-events:none;
  transition:opacity 0.3s ease;
  z-index:9998;
}

.search-overlay.active{
  opacity:1;
  pointer-events:auto;
}

/* ===============================================================
   SEARCH PANEL (SLIDE DOWN)
=============================================================== */
.search-panel{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#fff;
  transform:translateY(-100%);
  transition:transform 0.45s cubic-bezier(0.4,0,0.2,1);
  box-shadow:0 8px 40px rgba(0,0,0,0.15);
  z-index:9999;

}

/* Ensure search always positions relative to viewport,
   even inside transformed sections */
.search-panel,
.search-overlay{
  position: fixed;
  top: 0;
  left: 0;
}


.search-panel.active{
  transform:translateY(0);
}

/* ===============================================================
   PANEL INNER LAYOUT
=============================================================== */
.search-panel-inner{
  max-width:900px;
  margin:0 auto;
  padding:2.5rem 2rem 2rem;
}

.search-panel-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:1.5rem;
}

.search-panel-title{
  font-family:"Inter",sans-serif;
  font-size:1.1rem;
  font-weight:600;
  color:#333;
}

.search-close-btn{
  width:36px;
  height:36px;
  border:none;
  background:#f0f0f0;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.2s ease,color 0.2s ease;
}

.search-close-btn svg{
  width:18px;
  height:18px;
}

.search-close-btn:hover{
  background:#123c73;
  color:#fff;
}

/* ===============================================================
   SEARCH INPUT
=============================================================== */
.search-input-wrapper{
  position:relative;
  margin-bottom:1.5rem;
}

.search-input-wrapper svg{
  position:absolute;
  left:1.1rem;
  top:50%;
  transform:translateY(-50%);
  width:20px;
  height:20px;
  color:#bbb;
  pointer-events:none;
  transition:color 0.25s ease;
}

.search-input-wrapper:focus-within svg{
  color:#123c73;
}

.search-input{
  width:100%;
  padding:1rem 1rem 1rem 3.2rem;
  font-family:"Inter",sans-serif;
  font-size:1.05rem;
  border:2px solid #e0e0e0;
  border-radius:10px;
  outline:none;
  background:#fafafa;
  transition:border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-input:focus{
  border-color:#123c73;
  box-shadow:0 0 0 3px rgba(18,60,115,0.08);
  background:#fff;
}

.search-input::placeholder{
  color:#bbb;
}

/* ===============================================================
   PAGE FILTER CHIPS
=============================================================== */
.search-page-filters{
  display:flex;
  gap:0.5rem;
  flex-wrap:wrap;
  margin-bottom:1.2rem;
}

.search-page-chip{
  padding:0.3rem 0.85rem;
  border-radius:20px;
  border:1.5px solid #e0e0e0;
  font-family:"Inter",sans-serif;
  font-size:0.78rem;
  font-weight:500;
  background:#fff;
  color:#666;
  cursor:pointer;
  transition:all 0.2s ease;
}

.search-page-chip.active,
.search-page-chip:hover{
  background:#123c73;
  border-color:#123c73;
  color:#fff;
}

/* ===============================================================
   SEARCH RESULTS
=============================================================== */
.search-results{
  max-height:380px;
  overflow-y:auto;
}

.search-results::-webkit-scrollbar{
  width:5px;
}

.search-results::-webkit-scrollbar-thumb{
  background:#ddd;
  border-radius:10px;
}

.search-result-item{
  display:flex;
  align-items:center;
  gap:1rem;
  padding:0.85rem 1rem;
  border-radius:8px;
  text-decoration:none;
  cursor:pointer;
  transition:background 0.2s ease;
  color:inherit;
}

.search-result-item:hover{
  background:#f5f5f5;
}

.search-result-info{
  flex:1;
}

.search-result-name{
  font-family:"Inter",sans-serif;
  font-size:0.92rem;
  font-weight:500;
  color:#333;
}

.search-result-meta{
  display:flex;
  gap:0.5rem;
  margin-top:0.2rem;
  align-items:center;
}

.search-result-category{
  font-size:0.78rem;
  color:#999;
}

.search-result-page-tag{
  font-size:0.7rem;
  font-weight:600;
  padding:0.1rem 0rem;
  border-radius:10px;
}

/* ===============================================================
   EMPTY STATES
=============================================================== */
.search-hint{
  text-align:center;
  padding:1.5rem 1rem;
  font-family:"Inter",sans-serif;
  color:#bbb;
  font-size:0.85rem;
}

.search-no-results{
  text-align:center;
  padding:2rem 1rem;
  font-family:"Inter",sans-serif;
  color:#999;
  font-size:0.95rem;
}



        /* ── FOOTER ── */
        .footer { background: linear-gradient(135deg, #082947 0%, #002447 100%); padding: 3rem 5% 1.5rem; color: #ffffff; position: relative; }
        .footer::before { content: ''; display: block; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent 0%, #c0392b 30%, #e74c3c 50%, #c0392b 70%, transparent 100%); }
        .footer-content { max-width: 1800px; margin: 0 auto; }
        .footer-main { display: grid; grid-template-columns: auto 1fr; gap: 6rem; align-items: start; margin-bottom: 2rem; }
        .footer-logo-section { display: flex; flex-direction: row; align-items: center; gap: 2rem; }
        .footer-logo-identity { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; flex-shrink: 0; }
        .footer-logo { height: 105px; width: auto; }
        .footer-tagline-list { list-style: none; padding: 0; margin-left: -2rem; margin-top: -3rem; display: flex; flex-direction: column; gap: 0.55rem; border-left: 2px solid rgba(192,57,43,0.5); padding-left: 0.1rem; }
        .footer-tagline-list li { font-size: 0.72rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; position: relative; padding-left: 0.9rem; }
        .footer-social-mobile { display: none !important; }
        .footer-social { display: flex; gap: 15px; margin-top: 0.5rem; }
        .footer-social a { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 6px; color: #ffffff; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.15); }
        .footer-social a::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, #1877f2, #0d5bbd); opacity: 0; transition: opacity 0.4s ease; z-index: -1; }
        .footer-social a:nth-child(2)::before { background: linear-gradient(135deg, #0077b5, #005885); }
        .footer-social a:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 8px 20px rgba(255,255,255,0.2); border-color: rgba(0,0,0,0); }
        .footer-social a:hover::before { opacity: 1; }
        .footer-social svg { width: 22px; height: 22px; position: relative; z-index: 1; transition: transform 0.3s ease; }
        .footer-social a:hover svg { transform: scale(1.1); }
        .footer-sections-group { display: grid; grid-template-columns: 0.6fr auto 0.7fr auto 1fr; gap: 4rem; justify-content: center; align-items: start; margin: 0 auto; max-width: 1400px; margin-left: -1rem; }
        .footer-nav-section h4, .footer-projects-section h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.2rem; color: #ff0000; text-align: left; }
        .footer-contact-section h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; color: #ff0000; text-align: left; }
        .footer-nav-links, .footer-projects-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 0rem; list-style: none; padding: 0; margin: 0; }
        .footer-nav-links li, .footer-projects-links li { display: flex; }
        .footer-nav-links li a, .footer-projects-links li a { color: #ffffff; text-decoration: none; font-size: 0.95rem; font-weight: 400; transition: color 0.3s ease; white-space: nowrap; position: relative; display: inline-block; }
        .footer-nav-links li a::after, .footer-projects-links li a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: #c0392b; transition: width 0.25s ease; }
        .footer-nav-links li a:hover, .footer-projects-links li a:hover { color: #ff0000; }
        .footer-nav-links li a:hover::after, .footer-projects-links li a:hover::after { width: 100%; }
        .footer-divider { width: 1px; background: rgba(255,255,255,0.15); height: 100%; min-height: 100px; }
        .footer-contact-section { display: flex; flex-direction: column; }
        .footer-contact-columns { display: flex; flex-direction: row; gap: 2rem; }
        .footer-contact-row { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 0.9rem; }
        .footer-contact-row:last-child { margin-bottom: 0; }
        .footer-contact-icon { width: 15px; height: 15px; stroke: #c0392b; flex-shrink: 0; margin-top: 6px; opacity: 0.9; }
        .footer-contact-info { display: flex; flex-direction: column; gap: 0; font-size: 0.95rem; line-height: 1.8; }
        .footer-contact-info a { color: #ffffff; text-decoration: none; transition: color 0.3s ease; text-align: left; display: block; }
        .footer-contact-info a:hover { color: #ff0000; }
        .footer-address { display: flex; flex-direction: column; gap: 0; font-size: 0.95rem; line-height: 1.8; }
        .footer-address p { margin: 0; color: #ffffff; text-align: left; }
        .footer-copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; margin-top: -0.5rem; }
        .footer-text { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

        /* ═══ FOOTER LAPTOP OVERRIDES — must come AFTER desktop footer rules ═══ */
        @media (max-width: 1440px) {
            .footer { padding: 2rem 4% 1rem; }
            .footer-main { gap: 2.5rem; margin-bottom: 1.2rem; }
            .footer-logo { height: 75px; }
            .footer-logo-section { gap: 1.2rem; }
            .footer-logo-identity { gap: 0.6rem; }
            .footer-tagline-list { margin-left: -1.2rem; margin-top: -1.8rem; gap: 0.3rem; }
            .footer-tagline-list li { font-size: 0.58rem; padding-left: 0.6rem; }
            .footer-social { gap: 10px; }
            .footer-social a { width: 35px; height: 35px; }
            .footer-social svg { width: 16px; height: 16px; }
            .footer-sections-group { gap: 2rem; max-width: 100%; margin-left: 0; }
            .footer-nav-section h4, .footer-projects-section h4 { font-size: 0.88rem; margin-bottom: 0.7rem; }
            .footer-contact-section h4 { font-size: 0.88rem; margin-bottom: 0.4rem; }
            .footer-nav-links li a, .footer-projects-links li a { font-size: 0.8rem; }
            .footer-nav-links, .footer-projects-links { gap: 0.45rem 0; }
            .footer-contact-info { font-size: 0.8rem; line-height: 1.55; }
            .footer-contact-info a { font-size: 0.8rem; }
            .footer-address { font-size: 0.8rem; line-height: 1.55; }
            .footer-address p { font-size: 0.8rem; }
            .footer-contact-row { gap: 0.45rem; margin-bottom: 0.55rem; }
            .footer-contact-icon { width: 13px; height: 13px; margin-top: 4px; }
            .footer-contact-columns { gap: 1rem; }
            .footer-divider { min-height: 80px; }
            .footer-text { font-size: 0.62rem; }
            .footer-copyright { margin-top: -0.8rem; padding-top: 0.7rem; }
            .category-square::after {top: 35%}
        }
        @media (max-width: 1280px) {
            .footer { padding: 1.5rem 3% 0.8rem; }
            .footer-main { gap: 1.2rem; margin-bottom: 1rem; }
            .footer-logo { height: 58px; }
            .footer-logo-section { gap: 0.8rem; }
            .footer-logo-identity { gap: 0.4rem; }
            .footer-tagline-list { margin-left: -0.8rem; margin-top: -1.2rem; gap: 0.2rem; }
            .footer-tagline-list li { font-size: 0.48rem; padding-left: 0.5rem; }
            .footer-social { gap: 6px; }
            .footer-social a { width: 28px; height: 28px; border-radius: 4px; }
            .footer-social svg { width: 13px; height: 13px; }
            .footer-sections-group { gap: 0.8rem; }
            .footer-nav-section h4, .footer-projects-section h4 { font-size: 0.72rem; margin-bottom: 0.45rem; }
            .footer-contact-section h4 { font-size: 0.72rem; margin-bottom: 0.3rem; }
            .footer-nav-links li a, .footer-projects-links li a { font-size: 0.65rem; }
            .footer-nav-links, .footer-projects-links { gap: 0.25rem 2rem; }
            .footer-contact-info { font-size: 0.65rem; line-height: 1.45; }
            .footer-contact-info a { font-size: 0.65rem; }
            .footer-address { font-size: 0.65rem; line-height: 1.45; }
            .footer-address p { font-size: 0.65rem; }
            .footer-contact-row { gap: 0.3rem; margin-bottom: 0.4rem; }
            .footer-contact-icon { width: 10px; height: 10px; margin-top: 3px; }
            .footer-contact-columns { gap: 0.6rem; }
            .footer-divider { min-height: 55px; }
            .footer-text { font-size: 0.52rem; }
            .footer-copyright { margin-top: -1rem; padding-top: 0.5rem; }
        }
        /* Footer + hero responsive: handled in main mobile block */

        /* ═══ FINAL LAPTOP OVERRIDES — last in cascade to beat all desktop rules ═══ */
        @media (max-width: 1440px) {
            /* Nav — both hero and scrolled */
            #heroNav .nav-menu { gap: 1.4rem; }
            #heroNav .nav-menu li a { font-size: 9.5pt; }
            #scrolledNav .nav-menu { gap: 1.4rem; }
            #scrolledNav .nav-menu li a { font-size: 9.5pt; }
            #scrolledNav .logo { height: 45px; }
            .scrolled-nav-container { padding: 0 2rem; }

            /* Product range gap (desktop is 0rem — override it) */
            .product-range-content { gap: 2.5rem; }
            .category-grid { max-width: 520px; gap: 1rem; }
            .category-square img { width: 100px; height: 100px; }
            .category-square span { font-size: 9.5pt; }
            .category-square::after { font-size: 9.5pt; }

            /* Brand slider */
            .slider-container { max-width: 480px; }
            .brand-slider { max-width: 440px; height: 430px; }
            .brand-type-badge { white-space: normal; text-align: center; line-height: 1.3; max-width: 120px; }
            .brand-view-products-btn { font-size: 0.55rem; padding: 0.25rem 0.5rem; border-radius: 8px; position: relative; bottom: auto; left: auto; }
            .hero-logo-nav { height: 50px; }

            /* Search trigger */
            .search-trigger { font-size: 0.75rem; padding: 0.38rem 2rem; }
            #scrolledNav .search-trigger { font-size: 0.75rem; padding: 0.38rem 2rem; }
        }
        @media (max-width: 1280px) {
            /* Nav — aggressive for 11-13" */
            #heroNav .nav-menu { gap: 0.9rem; }
            #heroNav .nav-menu li a { font-size: 8.5pt; letter-spacing: 0.3px; }
            #scrolledNav .nav-menu { gap: 0.9rem; }
            #scrolledNav .nav-menu li a { font-size: 8.5pt; letter-spacing: 0.3px; }
            #scrolledNav .logo { height: 38px; margin-left: 0.5rem; }
            .scrolled-nav-container { padding: 0 1.2rem; }

            /* Product range — keep side-by-side with real gap */
            .product-range-content { gap: 1.8rem; }
            .category-grid { max-width: 380px; gap: 0.7rem; }
            .category-square { padding: 0.5rem; }
            .category-square img { width: 72px; height: 72px; margin-bottom: 0.4rem; }
            .category-square span { font-size: 8pt; }
            .category-square::after { font-size: 8pt; }

            /* Brand slider — compact */
            .slider-container { max-width: 360px; min-width: 240px; }
            .brand-slider { max-width: 340px; height: 360px; border-radius: 12px; }
            #brandSlide .brand-slide-item { padding: 1rem 1.1rem 2.5rem; }
            .brand-header { margin-bottom: 0.6rem; }
            .brand-logo-container { width: 80px; height: 38px; }
            .brand-name { font-size: 0.58rem; }
            .brand-info-value { font-size: 0.52rem; }
            .brand-info-label { font-size: 0.35rem; }
            .brand-info-icon { width: 16px; height: 16px; min-width: 16px; padding: 2px; }
            .brand-specialties-title { font-size: 0.38rem; }
            .specialty-name { font-size: 0.45rem; }
            .specialty-item { padding: 0.18rem 0.22rem; min-height: 20px; }
            .brand-view-products-btn { font-size: 0.48rem; padding: 0.2rem 0.45rem; border-radius: 7px; position: relative; bottom: auto; left: auto; }
            .cert-badge { width: 18px; height: 18px; font-size: 0.38rem; }
            .brand-type-badge { white-space: normal; text-align: center; line-height: 1.3; max-width: 100px; }
            .hero-logo-nav { height: 42px; }
            .dot { width: 6px; height: 6px; }

            /* Search trigger */
            .search-trigger { font-size: 0.68rem; padding: 0.32rem 1.5rem; }
            #scrolledNav .search-trigger { font-size: 0.68rem; padding: 0.32rem 1.5rem; }
        }

        /* ============================================================
        TABLET SHRINK (601px → 1024px)
        Makes brand badge + About text scale smoothly before mobile
        ============================================================ */
        @media (max-width: 1400px) and (min-width: 501px) {

        .brand-slider {
            min-width: 350px;
        }
        /* Brand type badge (desktop is 0.7rem; mobile becomes 0.35rem) */
        .brand-type-badge {
            font-size: 0.5rem !important;
            padding: clamp(0.28rem, 0.55vw, 0.45rem) clamp(0.8rem, 1.2vw, 1.25rem) !important;
            letter-spacing: clamp(0.7px, 0.15vw, 1.2px) !important;
            bottom: clamp(-12px, -1vw, -8px) !important;
        }

        /* About section typography scaling (your base is huge: 4.5rem) */
        .about-text-content h2 {
            font-size: clamp(0.9rem, 1.1vw, 1.15rem) !important;
            letter-spacing: clamp(1.2px, 0.25vw, 2px) !important;
            margin-top: clamp(-1.2rem, -1.6vw, -0.6rem) !important;
        }

        .about-text-content h3 {
            font-size: clamp(2.6rem, 4.2vw, 3.6rem) !important;
            line-height: 1.08 !important;
        }

        .about-text-content h4 {
            font-size: clamp(2.6rem, 4.2vw, 3.6rem) !important;
            line-height: 1.08 !important;
            margin-bottom: clamp(1.4rem, 2.4vw, 2.2rem) !important;
        }

        /* If you have paragraph text under about (safe even if you don’t) */
        .about-text-content p {
            font-size: clamp(0.92rem, 1.15vw, 1.05rem) !important;
            line-height: 1.75 !important;
        }

        .about-image-placeholder {
            max-height:500px;
        }

        .about-section {
            height: 30vh !important;
        }
        
        .major-projects-section h3{
            font-size: 2.5rem !important;
        }

        }




        /* ── HOME SPECIALIST CARDS ── */
        .home-spec-wrap {
            flex: 1;
            max-width: 700px;
            min-width: 300px;
            height: 550px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.2rem;
            align-self: center;
        }
        .home-spec-card {
            display: flex;
            align-items: stretch;
            background: linear-gradient(135deg, #f4f7fc 0%, #eef2f9 100%);
            border: 1.5px solid #dde4f0;
            border-radius: 10px;
            overflow: hidden;
            flex: 1;
        }
        .home-spec-photo {
            width: 170px;
            min-width: 170px;
            flex-shrink: 0;
            background: linear-gradient(135deg, #0d1f3c, #1a3a6b);
        }
        .home-spec-photo img {
            width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
        }
        .home-spec-ph {
            width: 100%; height: 100%;
            display: flex; align-items: center; justify-content: center;
        }
        .home-spec-ph svg { width: 44px; height: 44px; }
        .home-spec-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 0.4rem;
            padding: 1.2rem 1.5rem;
        }
        .home-spec-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.55rem; font-weight: 700; letter-spacing: 2.5px;
            text-transform: uppercase; color: #123c73;
        }
        .home-spec-name {
            font-family: 'Inter', sans-serif;
            font-size: 1rem; font-weight: 700; color: #0d1f3c; margin: 0;
        }
        .home-spec-title {
            font-family: 'Inter', sans-serif;
            font-size: 0.65rem; color: #5a6a80;
        }
        .home-spec-divider { height: 1px; background: #dde4f0; margin: 0.25rem 0; }
        .home-spec-contact {
            display: flex; align-items: center; gap: 0.4rem;
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem; color: #1a3a6b; text-decoration: none;
        }
        .home-spec-contact svg { width: 12px; height: 12px; flex-shrink: 0; }
        .home-spec-cta {
            align-self: flex-start;
            display: inline-block; margin-top: 0.3rem;
            font-family: 'Inter', sans-serif;
            font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px;
            text-transform: uppercase; text-decoration: none; white-space: nowrap;
            color: #123c73; background: transparent;
            border: 1.5px solid #123c73; border-radius: 6px;
            padding: 0.45rem 1rem; cursor: pointer; transition: all 0.2s;
        }
        .home-spec-cta:hover { background: #123c73; color: #fff; }
        @media (max-width: 1024px) {
            .home-spec-wrap { width: 100%; max-width: 100%; height: auto; align-self: auto; }
            .home-spec-card { flex: none; }
            .home-spec-photo { width: 90px; min-width: 90px; min-height: 110px; }
        }

