    :root {
            /* === CORE BRAND (DARK PREMIUM) === */
            --primary: #0b0b0c;              /* deep charcoal black */
            --primary-dark: #050505;
            --primary-light: #141416;

            /* === PREMIUM ACCENT (NOT YELLOW, NOT BLUE) === */
            --accent: #c89b3c;              /* rich gold */
            --accent-hover: #e0b85c;
            --accent-soft: rgba(200,155,60,0.12);

            /* === TEXT (SOFT PREMIUM WHITE SCALE) === */
            --text-dark: #f5f5f5;
            --text-medium: #cfcfcf;
            --text-light: #8a8a8a;

            /* === BACKGROUND SYSTEM === */
            --bg-main: #0b0b0c;
            --bg-card: #121214;
            --bg-glass: rgba(255,255,255,0.04);

            /* === BORDER / DEPTH === */
            --border: rgba(255,255,255,0.08);

            /* === STATUS === */
            --success: #22c55e;

            /* === SHADOWS (DEEP PREMIUM) === */
            --shadow-sm: 0 2px 6px rgba(0,0,0,0.4);
            --shadow: 0 8px 20px rgba(0,0,0,0.5);
            --shadow-md: 0 12px 30px rgba(0,0,0,0.6);
            --shadow-lg: 0 20px 50px rgba(0,0,0,0.7);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-main);

            /* PREMIUM TEXTURE */
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(200,155,60,0.05), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03), transparent 40%);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        /*header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
        }*/

       /* .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 10px;
        }*/
        .logo {
            display: flex;
            align-items: center;
            margin-left: 30px;
            overflow: visible; 
        }
         .logo img {
            height: 50px;
            transform: scale(2.0);
            width: auto;
            object-fit: contain;
            transform-origin: left center;
        }

        /*.logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: var(--white);
            font-size: 16px;
        }*/

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center; 
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.25s ease;
        }
        .btn i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #c89b3c, #e0b85c);
            color: #111;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(200,155,60,0.5);
        }

        .btn-dark {
            background: #1a1a1a;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.15);
            backdrop-filter: blur(6px);
            transition: all 0.3s ease;
        }

        .btn-dark:hover {
			background: #262626;
            transform: translateY(-3px);
			box-shadow: 0 18px 45px rgba(0,0,0,0.6);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(200,155,60,0.4);
            color: #c89b3c;
            padding: 12px 22px;
        }

        .btn-outline:hover {
            background: #c89b3c;
            color: #111;
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
        }

        /*.btn-whatsapp:hover {
            background: #128C7E;
        }*/
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 80px;
            background: rgba(10,10,10,0.6);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
		.nav.scrolled {
            background: rgba(5,5,5,0.85);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 10px 40px rgba(0,0,0,0.7);
            -webkit-backdrop-filter: blur(12px);
        }

        /*.nav.scrolled {
            background: var(--white);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }*/

        .nav.scrolled .nav-links > li > a,
        .nav.scrolled .logo {
            color: #ffffff;
        }

        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
			padding: 10px 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1002;
            height: 100%;
        }
		.nav-links {
            display: flex;
            gap: 0;
            list-style: none;
            margin: 0 auto;
            flex: 1;
            justify-content: center;
        }

        .nav-links a {
            display: block;
            padding: 12px 14px;
            color: var(--text-medium);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.2s;
            border-bottom: 2px solid transparent;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }

       /* .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 70%;
        }*/
		.nav-cta {
            display: block;
            margin-right: 10px;
        }
        .mobile-toggle {
            display: none;
            font-size: 22px;
            background: none;
            border: none;
            transition: transform 0.3s;
            position: relative;
            z-index: 10001;
            cursor: pointer;
            color: var(--text-medium);
        }
		
		/* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 260px;
            height: 100vh;
            background: rgba(15,15,15,0.95);
            backdrop-filter: blur(14px);
            border-left: 1px solid rgba(255,255,255,0.08);
            z-index: 1001;
            transition: right 0.4s ease;
            padding: 80px 20px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            color: var(--text-medium);
            font-size: 28px;
            cursor: pointer;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            list-style: none;
        }

        .mobile-menu-links a {
            color: var(--text-medium);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
        }
        .mobile-menu-links a:hover {
            color: var(--accent);
        }
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;   /* IMPORTANT FIX */
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.65);  /* dark overlay */
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
       /* nav {
            border-top: 1px solid var(--border);
        }*/
        
        /* Dropdown container */
        .dropdown {
            position: relative;
        }

        /* Hide menu initially */
        .dropdown-menu {
            position: absolute;
            top: 110%;
            left: 0;
            background: rgba(20,20,20,0.95);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            min-width: 230px;
            display: none;
            box-shadow: 0 20px 60px rgba(0,0,0,0.8);
            padding: 10px 0;
            z-index: 999;
        }
        .dropdown.active .dropdown-menu {
            display: block;
        }
        .dropdown.active .dropdown-toggle i {
            transform: rotate(180deg);
        }
        /* Dropdown links */ 
        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu li a {
            color: var(--text-medium);
            padding: 12px 18px;
            display: block;
            transition: all 0.25s ease;
            text-decoration: none;
            font-size: 14px;
        }

        .dropdown-menu li a:hover {
            background: rgba(200,155,60,0.08);
            color: var(--accent);
            padding-left: 22px;
        }
        .dropdown-menu li a.active {
            background: rgba(200,155,60,0.08);
        }

        /* Show on hover */
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        /* ACTIVE CATEGORY ITEM */
        .mobile-menu .dropdown-menu li a.active {
            background: linear-gradient(
                135deg,
                rgba(200,155,60,0.18),
                rgba(200,155,60,0.05)
            );
            color: var(--accent);
            border-left: 3px solid var(--accent);
            padding-left: 16px;
            border-radius: 6px;
            font-weight: 500;
        }
        .mobile-menu  .mobile-menu-links li a.active {
		   color: var(--accent);
		 }
        /*.mobile-menu .mobile-menu-links .dropdown .dropdown-toggle {
		   color: var(--accent);
		 }*/
        .mobile-menu .dropdown.active > .dropdown-toggle {
			color: var(--accent);
		}

        
        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center; /* CENTER EVERYTHING */
            text-align: center;
            padding: 120px 20px 110px;
        }
        /* VIDEO */
        .hero video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            filter: blur(3px);  
            transform: translate(-50%, -50%) scale(1.1);
        }
        /* DARK OVERLAY */
       .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(200,155,60,0.15), transparent 40%),
                rgba(0, 0, 0, 0.60);
            z-index: 1;
        }
        /* CONTENT */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: auto;
            padding-top: 20px;
        }
        /* HEADING */
        .hero-text h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 20px;
            /* TEXT DEPTH */
            text-shadow: 0 10px 30px rgba(0,0,0,0.8);
        }
        /* HIGHLIGHT TEXT */
        .hero-text h1 span {
            color: var(--accent);
        }
        /* SUBTITLE */
        .hero-text .subtitle {
            font-size: 18px;
            color: #d1d5db;
            margin-bottom: 35px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        /* BADGES */
        .hero-badges {
            display: flex;
            justify-content: center; /* CENTER */
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 35px;
        }

        .badge {
            background: rgba(255,255,255,0.08);
            color: #fff;
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 13px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: 0.3s;
        }
        .badge:hover {
            background: rgba(200,155,60,0.15);
            transform: translateY(-2px);
        }
        .badge i {
            color: #22c55e;
        }
        /* BUTTONS */
        .hero-buttons {
            display: flex;
            justify-content: center; /* CENTER */
            gap: 14px;
            flex-wrap: wrap;
        }

        .rfq-section {
            padding: 80px 0;
            background: var(--off-white);
        }
        .rfq-wrapper {
            max-width: 620px;
            margin: auto;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 18px;
            border: 1px solid rgba(0,0,0,0.06);
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .rfq-form .form-group {
            margin-bottom: 18px;
        }
        .rfq-form input,
        .rfq-form select,
        .rfq-form textarea {
           width: 100%;
            padding: 14px 16px;
            border-radius: 12px;
            border: 1.5px solid rgba(0,0,0,0.08);
            font-size: 14px;
            font-family: inherit;
            background: rgba(255,255,255,0.9);
            transition: all 0.25s ease;
        }
        .form-group {
            margin-bottom: 14px;
            position: relative;
        }
        .form-error {
            color: red;
            font-size: 12px;
            display: none;
        }
        .form-group.error input,
        .form-group.error select,
        .form-group.error textarea {
            border: 1px solid red;
        }
        .form-group.error .form-error {
            display: block;
        }
        .form-success {
            display: none;
            color: green;
            margin-top: 15px;
        }
        .form-success.show {
            display: block;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.25s;
            background: var(--off-white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: var(--white);
        }

        .hero-form .btn {
            width: 100%;
            justify-content: center;
            padding: 14px;
            font-size: 15px;
            margin-top: 8px;
        }

        /* Categories Section */
        .categories {
            padding: 60px 0;
            position: relative;
            /* PREMIUM DARK TEXTURE BG */
            background: radial-gradient(circle at top, rgba(255,255,255,0.03), transparent 60%),
                        linear-gradient(135deg, #0f0f0f, #1a1a1a);
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header h2 {
            font-size: 38px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 14px;
        }

        .section-header p {
            color: #a1a1aa;
            font-size: 16px;
            max-width: 650px;
            margin: auto;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 26px;
            margin-top: 50px;
            align-items: stretch; 
        }

        .category-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px;
            display: flex;
            flex-direction: column;   /* IMPORTANT */
            justify-content: space-between; /* pushes button down */
            text-align: center;
            transition: all 0.3s ease;
            height: 100%; /* equal height */
        }

        .category-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(245,158,11,0.4);
            box-shadow: 
                0 20px 50px rgba(0,0,0,0.6),
                0 0 20px rgba(245,158,11,0.15);
        }

        .category-icon {
            width: 70px;
            height: 70px;
            margin: auto;
            margin-bottom: 18px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(245,158,11,0.08);
        }

        .category-card:hover .category-icon {
            background: var(--accent);
        }

        .category-icon i {
            font-size: 28px;
            color: #f59e0b;
            transition: color 0.3s;
        }

        .category-card:hover .category-icon i {
            color: var(--white);
        }

        .category-card h3 {
            font-size: 18px;
            color: #ffffff;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .category-card p {
            font-size: 14px;
            color: #a1a1aa;
            margin-bottom: 18px;
			flex-grow: 1;
        }
        
        .category-card .btn {
            font-size: 13px;
            padding: 8px 16px;
            margin-top: auto; 
        }
        
        .category-btn {
            display: inline-block;
            border: 1px solid rgba(245,158,11,0.5);
            color: #f59e0b;
            padding: 8px 18px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .category-btn:hover {
            background: #f59e0b;
            color: #111;
            box-shadow: 0 0 15px rgba(245,158,11,0.5);
        }
        /* CTA */
        .categories-cta {
            text-align: center;
            margin-top: 60px;
        }

        .categories-cta p {
            color: #a1a1aa;
            margin-bottom: 16px;
        }
        
        /* About Section */
        .about {
            background: linear-gradient(180deg, #0f0f0f 0%, #161616 100%);
            color: #fff;
            position: relative;
        }
        /* subtle texture */
        .about::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 30%, rgba(200,155,60,0.08), transparent 40%);
            pointer-events: none;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
            padding: 80px 0;
            position: relative;
            z-index: 2;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 14px;
            /* PREMIUM DEPTH */
            box-shadow: 0 30px 80px rgba(0,0,0,0.6);
            transition: 0.4s ease;
        }

        /*.about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            border: 3px solid var(--accent);
            border-radius: 16px;
            z-index: -1;
        }*/
        .about-image img:hover {
            transform: scale(1.02);
        }
        .about-text h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 34px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .about-text p {
            color: #cbd5e1;
            margin-bottom: 18px;
            font-size: 15px;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 22px;
            background: rgba(255,255,255,0.03);
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.06);
            backdrop-filter: blur(6px);
            transition: 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(200,155,60,0.08);
        }

        .stat-number {
            font-size: 34px;
            font-weight: 700;
            /* GOLD PREMIUM */
            color: #c89b3c;
            margin-bottom: 6px;
            font-family: 'Space Grotesk', sans-serif;
            -webkit-background-clip: text;
            background-clip: text;
        }

        .stat-label {
            font-size: 13px;
            color: #94a3b8;
            margin: 0;
        }

        /* Products Preview Section */
        .products-preview {
            padding: 80px 0;
            background: var(--off-white);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .product-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .product-image {
            height: 180px;
            background: var(--off-white);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-image i {
            font-size: 48px;
            color: var(--text-light);
        }

        .product-info {
            padding: 20px;
        }

        .product-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .product-info p {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 12px;
        }

        .product-info .btn {
            width: 100%;
            justify-content: center;
            padding: 10px;
            font-size: 13px;
        }
        /*industries section*/
        .industries {
            padding: 80px 0;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }

        .industry-card {
            text-align: center;
            padding: 30px;
            border-radius: 14px;
            border: 1px solid var(--border);
            transition: 0.3s;
        }

        .industry-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .industry-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
        }
        .industry-card p {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.6;
        }

        .industry-card i {
            font-size: 30px;
            color: var(--accent);
            margin-bottom: 12px;
        }
        .process {
            padding: 80px 0;
            background: var(--off-white);
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            align-items: stretch;
        }
        .process-step {
            text-align: center;
            padding: 30px;
            border-radius: 14px;
            border: 1px solid var(--border);
            transition: 0.3s;
        }
        .process-step:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }
        .step-number {
            width: 60px;
            height: 60px;
            margin: 0 auto 14px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            color: #fff;
            background: linear-gradient(135deg, var(--accent), #d97706);
        }
        .process-step h3 {
            font-size: 17px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }
        .process-step p {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.6;
        }
        /* Brands Section */
        .brands {
            background: var(--off-white);
            padding: 60px 0;
        }
        .brands-slider-wrapper {
            position: relative;
            overflow: hidden;
        }
        .brands-slider {
            display: flex;
            gap: 20px;
            overflow: hidden;  
            white-space: nowrap;
        }
        .brands-slider::-webkit-scrollbar {
            display: none;
        }
        .brand-item {
            min-width: 160px;
            height: 100px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
            flex-shrink: 0;
            padding: 15px;
            transition: all 0.3s ease;
        }
        .brand-item:hover {
            transform: scale(1.05);
        }
        .brand-item img {
            max-width: 100px;
            max-height: 60px;
            object-fit: contain;
        }
        /* BUTTONS */
        .brand-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(15, 23, 42, 0.9);
            color: #fff;
            border: none;
            padding: 10px 14px;
            cursor: pointer;
            z-index: 10;
            border-radius: 50%;
            transition: 0.3s;
        }
        .brand-btn.prev {
            left: 0;
        }
        .brand-btn.next {
            right: 0;
        }
        .brand-btn:hover {
            opacity: 1;
        }
        /* Features Section */
        .features {
            padding: 60px 0;
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .feature-item {
            text-align: center;
            padding: 25px;
            border-radius: 12px;
            transition: all 0.3s ease;
            background: var(--white);
            border: 1px solid var(--border);
        }
        .feature-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .feature-item:hover .icon {
            transform: scale(1.1);
        }

        .feature-item .icon {
            width: 56px;
            height: 56px;
            background: var(--accent-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 28px;
            color: var(--accent);
        }

        .feature-item .icon i {
            font-size: 22px;
            color: var(--accent);
        }

        .feature-item h4 {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .feature-item p {
            font-size: 13px;
            color: var(--text-medium);
            line-height: 1.5;
        }

        /* Footer */
        footer {
            position: relative;
            background: linear-gradient(135deg, #0b0b0c, #121214);
            padding: 80px 0 30px;
            color: #e5e5e5;
            overflow: hidden;
        }
        footer .container {
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-about .logo {
            color: var(--white);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            margin-left: 0;
            overflow: visible;
        }
       .footer-about .logo img {
            height: 50px;
            transform: scale(2.0);
            width: auto;
            object-fit: contain;
        }

        .footer-about p {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(6px);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.35s ease;
            border: 1px solid rgba(255,255,255,0.08);
            text-decoration: none;
        }

        .footer-social a:hover {
            background: linear-gradient(135deg, #ff8c00, #ffb347);
            color: #111;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 10px 25px rgba(255,140,0,0.4);
        }

        .footer-links h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
            position: relative;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffb347;
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 25px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
        }

        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .floating-cta .btn {
            display: flex;
            align-items: center;
            gap: 8px;
            border-radius: 50px;
            padding: 14px 20px;
            font-size: 14px;
            font-weight: 500;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            transition: all 0.35s ease;
            white-space: nowrap;
        }
        /* HOVER EFFECT (PREMIUM) */
        .floating-cta .btn:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 25px 60px rgba(0,0,0,0.6);
        }

        /* Page Header */
        .page-header {
            padding: 105px 0 60px;
            background: var(--off-white);
            border-bottom: 1px solid var(--border);
        }

        .page-header .breadcrumbs {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 16px;
        }

        .page-header .breadcrumbs a {
            color: var(--text-medium);
            text-decoration: none;
        }

        .page-header .breadcrumbs a:hover {
            color: var(--accent);
        }

        .page-header h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-links, .nav-cta {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .categories-grid, .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .brand-item {
                min-width: 140px;
                height: 90px;
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .feature-item {
                padding: 22px;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 769px) {
            /* Show dropdown on hover */
            .dropdown:hover .dropdown-menu {
                display: block;
            }
            /* Smooth arrow animation */
            .dropdown-toggle i {
                transition: transform 0.3s ease;
            }
            /* Rotate arrow UP on hover */
            .dropdown:hover .dropdown-toggle i {
                transform: rotate(180deg);
            }
            .feature-item:hover {
                transform: translateY(-6px);
                box-shadow: var(--shadow-lg);
            }
        }
        @media (max-width: 768px) {
            .hero {
                min-height: 100vh;   /* FULL SCREEN */
                padding: 100px 20px 100px; /* TOP SPACE FIX */
                display: flex;
                align-items: center; /* CENTER AGAIN */
                justify-content: center;
                text-align: center;
            }
            .hero-content {
                margin-top: 20px; /* small push down */
            }
            .hero-text h1 {
                font-size: 30px;
                line-height: 1.3;
            }
            .hero-text .subtitle {
                font-size: 15px;
            }
            .hero-badges {
                justify-content: center;
                gap: 8px;
            }
			.hero-buttons {
                justify-content: center;
                flex-direction: column;
                gap: 20px;
            }
            .hero-buttons .btn {
                width: 100%;
            }
            .categories-grid, .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            * {
                -webkit-tap-highlight-color: transparent;
            }

            /* Remove focus background */
            a:focus,
            a:active,
            button:focus,
            button:active {
                outline: none;
                background: transparent !important;
            }
            .logo {
                margin-left: 0;   
            }

            .logo img {
                height: 40px;           
                transform: scale(1.8);  
                transform-origin: left center;
            }
            /*.nav.scrolled {
                backdrop-filter: none;       
                -webkit-backdrop-filter: none;
                background: var(--white);    
                box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
            }*/
            .nav.scrolled {
                background: rgba(5,5,5,0.85);
                backdrop-filter: blur(18px);
                border-bottom: 1px solid rgba(255,255,255,0.08);
                box-shadow: 0 10px 40px rgba(0,0,0,0.7);
                -webkit-backdrop-filter: blur(12px);
            }
            .nav.scrolled .mobile-toggle i {
                color: var(--text-medium);
            }
            .nav-content {
                padding: 8px 15px;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            .nav-links {
                display: none; /* hide desktop menu */
            }
            .nav-links a {
                font-size: 13px;
            }
            .nav-cta {
                display: none; /* hide button */
            }
            .mobile-toggle {
                display: block;
                -webkit-tap-highlight-color: transparent;
                outline: none;
                margin-left: auto;
                color: var(--text-medium);
            }
            .mobile-menu .dropdown .dropdown-menu {
                width: 100%;
                background: rgba(255,255,255,0.02); /* subtle glass */
                border-radius: 10px;
                padding: 8px 0;
                margin-top: 8px;
                border: 1px solid rgba(255,255,255,0.05);
            }
            .mobile-menu .dropdown-menu li a {
                display: block;
                padding: 6px 10px;
                border-radius: 6px;
                color: var(--text-medium);
                font-size: 14px;
                transition: all 0.25s ease;
            }
            .mobile-menu .dropdown-menu li a:hover {
                background: rgba(200,155,60,0.08);
                color: var(--accent);
                padding-left: 16px;
            }
            .mobile-menu a:active,
            .mobile-menu a:focus {
                color: var(--accent);
            }
            .mobile-menu a,
            .mobile-menu button {
                -webkit-tap-highlight-color: transparent;
            }
            
            .mobile-menu .dropdown-menu {
                display: none;
                position: static !important;
                width: 100%;
                padding-left: 15px;
                margin-top: 8px;
                border: none;
                box-shadow: none;
                background: transparent;
            }
            .mobile-menu .dropdown.active .dropdown-menu {
                display: block !important;
            }
            .dropdown-menu {
                display: none;
                position: static;
                box-shadow: none;
                border: none;
            }
             .dropdown.active .dropdown-menu {
                display: block;
            }
            .dropdown:hover .dropdown-menu {
                display: none !important; /* disable hover in mobile */
            }
            .dropdown-toggle i {
                transition: transform 0.3s ease;
            }
            .dropdown.active .dropdown-toggle i {
                transform: rotate(180deg);
            }
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding-top: 90px;
                padding-bottom: 40px;
            }
            .about-image {
                order: -1;
            }
            .about-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            .about-text h2 {
                font-size: 24px;
            }
            .stat-item {
                padding: 14px;
            }
            .stat-number {
                font-size: 24px;
            }
			.section-header h2 {
                font-size: 26px;
            }
            .category-card {
                padding: 20px;
            }
            .industries {
                padding: 60px 0;
            }
            .industries-grid {
                grid-template-columns: 1fr;
            }
            .industry-card {
                padding: 24px 20px;
            }
            .process {
                padding: 60px 0;
            }
            .process-grid {
                grid-template-columns: 1fr;
            }
            .brands {
                padding: 40px 0;
            }
            .brand-item {
                min-width: 120px;
                height: 80px;
                padding: 10px;
            }
            .brand-item img {
                max-height: 50px;
            }
            .features {
                padding: 40px 0;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .feature-item {
                padding: 18px;
                text-align: left; /* better mobile readability */
                display: flex;
                align-items: flex-start;
                gap: 12px;
            }
            .feature-item .icon {
                font-size: 22px;
                margin-bottom: 0;
                flex-shrink: 0;
            }
            .feature-item h4 {
                font-size: 15px;
                margin-bottom: 4px;
            }
            .feature-item p {
                font-size: 12px;
            }
            footer {
                padding: 60px 0 20px;
            }
            .footer-about .logo {
                justify-content: center;   
                margin-bottom: 15px;
            }

            .footer-about .logo img {
                height: 40px;              
                transform: scale(1.8);     
                transform-origin: center;
                width: auto;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                 gap: 22px;
            }
            .footer-social {
                justify-content: center;
            }
            .footer-links h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .floating-cta {
                bottom: 16px;
                right: 16px;
            }
        }

        @media (max-width: 480px) {
            .categories-grid, .products-grid {
                grid-template-columns: 1fr;
            }
            .hero-text h1 {
                font-size: 26px;
            }
            .section-header h2 {
                font-size: 26px;
            }
            .about-stats {
                grid-template-columns: 1fr;
            }
            .brand-item {
                min-width: 100px;
                height: 70px;
            }

            .brand-item img {
                max-height: 40px;
            }
            .feature-item {
                padding: 15px;
                gap: 10px;
            }
            .feature-item .icon {
                font-size: 20px;
            }
            .feature-item h4 {
                font-size: 14px;
            }
            .feature-item p {
                font-size: 12px;
                line-height: 1.4;
            }
        }