        /* --- CSS Variables --- */
        :root {
            --primary: #0f172a;      /* Deep Navy */
            --primary-light: #1e293b;
            --accent: #f97316;       /* Orange */
            --gold: #d97706;         /* Amber/Gold */
            --text-dark: #1e293b;
            --text-gray: #475569;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --border: #e2e8f0;
            --container: 1280px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* --- Reset & Base Styles --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Anek Bangla', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: var(--white);
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        
        h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; color: var(--primary); }
        p { color: var(--text-gray); font-size: 1.05rem; }

        /* --- Utility Classes --- */
        .container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
        .section-padding { padding: 100px 0; }
        .bg-light { background-color: var(--bg-light); }
        .text-center { text-align: center; }
        .flex { display: flex; }
        .grid { display: grid; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.5px;
        }
        .btn-primary { background: var(--accent); color: var(--white); border: 1px solid var(--accent); }
        .btn-primary:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3); }
        .btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
        .btn-outline:hover { background: var(--white); color: var(--primary); }

        /* --- Scroll Animation Classes --- */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- Header --- */
        header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .top-bar {
            background: var(--primary);
            color: #cbd5e1;
            font-size: 0.85rem;
            padding: 8px 0;
        }
        .top-bar .container { display: flex; justify-content: space-between; align-items: center; }
        .top-bar a:hover { color: var(--white); }

        .navbar { height: 90px; display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.8rem; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 10px; }
        .logo span { color: var(--accent); }
        
        .nav-menu { display: flex; gap: 35px; }
        .nav-link { font-weight: 500; font-size: 1rem; color: var(--primary); position: relative; }
        .nav-link::after {
            content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0;
            background: var(--accent); transition: var(--transition);
        }
        .nav-link:hover::after { width: 100%; }

        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: var(--primary); }

        /* --- Hero Section --- */
        .hero {
            height: auto;
            min-height: 500px;
            padding: 200px 0 200px;
            background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.6)), url('factory.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
        }
        .hero-content { max-width: 800px; }
        .hero-badge {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(5px);
            padding: 5px 15px;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.3);
            display: inline-block;
            margin-bottom: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero h1 { font-size: 4rem; margin-bottom: 25px; color: var(--white); line-height: 1.1; }
        .hero p { font-size: 1.25rem; color: #e2e8f0; margin-bottom: 40px; max-width: 650px; }
        
        /* --- Stats Counter --- */
        .stats-strip {
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-top: -80px;
            position: relative;
            z-index: 10;
            padding: 40px;
            border-radius: 8px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .stat-item { text-align: center; border-right: 1px solid var(--border); }
        .stat-item:last-child { border-right: none; }
        .stat-num { font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 10px; }
        .stat-label { font-weight: 600; color: var(--primary); }

        /* --- About Section --- */
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .about-img-group { position: relative; }
        .about-img-1 { width: 90%; border-radius: 8px; box-shadow: 20px 20px 0 var(--bg-light); }
        .about-img-2 {
            position: absolute; bottom: -50px; right: 0; width: 50%;
            border: 5px solid var(--white); border-radius: 8px; box-shadow: var(--shadow);
        }
        .about-text h4 { color: var(--accent); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin-bottom: 10px; }
        .about-text h2 { font-size: 2.5rem; margin-bottom: 25px; }
        .check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
        .check-list i { color: var(--accent); font-size: 1.2rem; }

        /* --- Timeline/Journey --- */
        .timeline { position: relative; max-width: 1000px; margin: 60px auto 0; }
        .timeline::before {
            content: ''; position: absolute; left: 50%; top: 0; width: 2px; height: 100%;
            background: var(--border); transform: translateX(-50%);
        }
        .timeline-item { margin-bottom: 50px; position: relative; width: 50%; padding-right: 40px; text-align: right; }
        .timeline-item:nth-child(even) { margin-left: 50%; padding-right: 0; padding-left: 40px; text-align: left; }
        .timeline-dot {
            position: absolute; right: -10px; top: 0; width: 20px; height: 20px;
            background: var(--accent); border-radius: 50%; border: 4px solid var(--white);
            box-shadow: 0 0 0 2px var(--accent); z-index: 2;
        }
        .timeline-item:nth-child(even) .timeline-dot { right: auto; left: -10px; }
        .year { font-weight: 800; color: var(--accent); font-size: 1.5rem; display: block; margin-bottom: 5px; }

        /* --- Products/Divisions --- */
        .product-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 400px;
            group: cursor-pointer;
        }
        .product-card img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.6s ease;
        }
        .product-card:hover img { transform: scale(1.1); }
        .product-overlay {
            position: absolute; bottom: 0; left: 0; width: 100%;
            background: linear-gradient(to top, rgba(15,23,42,0.95), transparent);
            padding: 30px;
            color: var(--white);
            transform: translateY(20px);
            transition: var(--transition);
        }
        .product-card:hover .product-overlay { transform: translateY(0); }
        .product-overlay h3 { font-size: 1.8rem; color: var(--white); margin-bottom: 10px; }
        .product-overlay p { color: #cbd5e1; font-size: 0.95rem; margin-bottom: 0; }
        
        /* --- Features/Why Us --- */
        .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .feature-box {
            padding: 40px; background: var(--white); border: 1px solid var(--border);
            border-radius: 8px; transition: var(--transition);
        }
        .feature-box:hover { border-color: var(--accent); box-shadow: 0 15px 40px rgba(0,0,0,0.05); transform: translateY(-5px); }
        .feature-icon {
            width: 60px; height: 60px; background: rgba(14, 165, 233, 0.1);
            color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 1.8rem; margin-bottom: 25px;
        }

        /* --- Certifications --- */
        .cert-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center; }
        .cert-item { opacity: 0.7; transition: var(--transition); filter: grayscale(100%); }
        .cert-item:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.05); }
        .cert-box {
            border: 1px solid var(--border); padding: 20px; border-radius: 8px;
            text-align: center; width: 180px;
        }
        .cert-box i { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; }
        .cert-box span { font-weight: 700; display: block; font-size: 0.9rem; }

        /* --- Leadership --- */
        .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .team-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
        .team-img { height: 350px; overflow: hidden; }
        .team-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
        .team-card:hover .team-img img { transform: scale(1.05); }
        .team-info { padding: 25px; text-align: center; }
        .team-info h4 { font-size: 1.25rem; margin-bottom: 5px; }
        .team-info span { color: var(--accent); font-weight: 500; font-size: 0.9rem; }

        /* --- Global Clients --- */
        .clients-strip { background: var(--white); padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .client-logos { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; opacity: 0.6; }
        .client-logo { font-size: 1.5rem; font-weight: 800; color: #94a3b8; display: flex; align-items: center; gap: 5px; }

        /* --- Contact --- */
        .contact-section { background-color: var(--primary); color: var(--white); position: relative; overflow: hidden; }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; position: relative; z-index: 2; }
        .contact-info h2 { color: var(--white); margin-bottom: 20px; font-size: 2.5rem; }
        .contact-info p { color: #cbd5e1; margin-bottom: 40px; }
        .info-row { display: flex; gap: 20px; margin-bottom: 30px; }
        .info-icon { min-width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.5rem; }
        
        .contact-form { background: var(--white); padding: 50px; border-radius: 8px; color: var(--text-dark); }
        .form-group { margin-bottom: 20px; }
        .form-control { width: 100%; padding: 15px; border: 1px solid var(--border); border-radius: 4px; font-family: inherit; font-size: 1rem; transition: var(--transition); }
        .form-control:focus { outline: none; border-color: var(--accent); }
        textarea.form-control { height: 120px; resize: none; }

        /* --- Footer --- */
        footer { background: #020617; color: #94a3b8; padding-top: 80px; border-top: 4px solid var(--accent); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid #1e293b; }
        .footer-col h3 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; }
        .footer-col p { margin-bottom: 20px; font-size: 0.95rem; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--accent); padding-left: 5px; }
        .social-icons { display: flex; gap: 15px; margin-top: 20px; }
        .social-icons a { width: 40px; height: 40px; background: #1e293b; display: flex; align-items: center; justify-content: center; border-radius: 4px; color: var(--white); }
        .social-icons a:hover { background: var(--accent); }
        .copyright { padding: 25px 0; text-align: center; font-size: 0.9rem; }

        /* --- Language Switcher --- */
        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50px;
            padding: 4px 8px;
            cursor: pointer;
            font-size: 0.85rem;
            color: #cbd5e1;
            transition: var(--transition);
            background: transparent;
            font-family: inherit;
        }
        .lang-switcher:hover { border-color: var(--accent); color: var(--white); }
        .lang-switcher .lang-flag { font-size: 1rem; }
        .lang-switcher .lang-label { font-weight: 600; letter-spacing: 0.5px; }
        .lang-switcher .lang-active { color: var(--accent); }

        /* English font override */
        body.lang-en { font-family: 'Google Sans', 'Inter', 'Segoe UI', sans-serif; }

        /* =============================================
           ENHANCED DESIGN: Gradients, Compact, Polish
        ============================================= */

        /* Extended Variables */
        :root {
            --accent-2: #f83600;
            --accent-gradient: linear-gradient(135deg, #fe8c00, #f83600);
            --action-gradient: linear-gradient(to right, #fe8c00 0%, #f83600 51%, #fe8c00 100%);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
            --shadow-lg: 0 20px 40px rgba(0,0,0,0.08);
        }

        /* Compact Spacing */
        .section-padding { padding: 70px 0; }

        /* Subtle Gradient Backgrounds */
        .bg-light { background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%); }

        /* Section Headers */
        .section-header { margin-bottom: 45px; }
        .section-header h2 { font-size: 2.2rem; margin-bottom: 12px; }
        .section-header.text-center h2::after {
            content: ''; display: block; width: 60px; height: 3px;
            background: var(--accent-gradient); margin: 14px auto 0; border-radius: 2px;
        }

        /* Enhanced Buttons */
        .btn { padding: 12px 28px; font-size: 0.95rem; border-radius: 6px; font-family: inherit; }
        .btn-primary {
            background-image: linear-gradient(to right, #fe8c00 0%, #f83600 51%, #fe8c00 100%);
            background-size: 200% auto; border: none;
            box-shadow: 0 4px 15px rgba(248, 54, 0, 0.25);
            transition: 0.5s;
        }
        .btn-primary:hover {
            background-position: right center;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(248, 54, 0, 0.35);
        }
        .btn-outline {
            background: rgba(255,255,255,0.1); backdrop-filter: blur(4px);
            border: 1.5px solid rgba(255,255,255,0.4);
        }
        .btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

        /* Scroll Animation Tweak */
        .reveal { transform: translateY(30px); transition: all 0.7s ease-out; }

        /* Header Enhanced */
        header {
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(0,0,0,0.06);
            box-shadow: none;
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }
        header.scrolled { box-shadow: var(--shadow-md); background: rgba(255,255,255,0.85); }
        .navbar { height: 70px; }
        .logo { font-size: 1.5rem; gap: 8px; }
        .logo > i { color: var(--accent); font-size: 1.6rem; }
        .nav-menu { gap: 28px; }
        .nav-link { font-size: 0.92rem; color: var(--text-gray); padding: 4px 0; }
        .nav-link::after { background: var(--accent-gradient); border-radius: 1px; bottom: -2px; }
        .nav-link:hover { color: var(--primary); }

        /* Header Actions */
        .header-actions { display: flex; align-items: center; gap: 12px; }
        .lang-toggle {
            display: flex; align-items: center; gap: 4px;
            padding: 6px 12px; border: 1px solid var(--border);
            border-radius: 50px; cursor: pointer; font-size: 0.8rem;
            font-weight: 600; color: var(--text-gray); background: transparent;
            transition: var(--transition); font-family: inherit;
        }
        .lang-toggle:hover { border-color: var(--accent); color: var(--accent); }
        .btn-header {
            background-image: linear-gradient(to right, #fe8c00 0%, #f83600 51%, #fe8c00 100%);
            background-size: 200% auto; color: var(--white); border: none;
            padding: 8px 20px; font-size: 0.85rem; font-weight: 600;
            border-radius: 6px; display: inline-flex; align-items: center;
            gap: 4px; box-shadow: 0 2px 10px rgba(248, 54, 0, 0.2);
            transition: 0.5s; font-family: inherit; white-space: nowrap;
        }
        .btn-header:hover { background-position: right center; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(248, 54, 0, 0.35); }

        /* Hero Enhanced */
        .hero {
            min-height: auto; 
            padding: 160px 0 150px;
            background:
                linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.78) 50%, rgba(15,23,42,0.7) 100%),
                url('factory.webp');
            background-size: cover; background-position: center; background-attachment: fixed;
            overflow: hidden;
        }
        .hero::before {
            content: ''; position: absolute;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(254,140,0,0.12), transparent 70%);
            top: -100px; right: -100px; border-radius: 50%; pointer-events: none;
        }
        .hero::after {
            content: ''; position: absolute;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(248,54,0,0.1), transparent 70%);
            bottom: -80px; left: -80px; border-radius: 50%; pointer-events: none;
        }
        .hero-content { max-width: 750px; position: relative; z-index: 2; }
        .hero-badge {
            background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.9); letter-spacing: 0.5px; font-size: 0.85rem;
            text-transform: none;
        }
        .hero-badge::before {
            content: ''; display: inline-block;
            width: 6px; height: 6px; background: #fe8c00;
            border-radius: 50%; margin-right: 8px; vertical-align: middle;
            animation: heroPulse 2s ease infinite;
        }
        @keyframes heroPulse {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(254,140,0,0.4); }
            50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(254,140,0,0); }
        }
        .hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.15; color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
        .hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 600px; text-shadow: 0 1px 8px rgba(0,0,0,0.2); }

        /* Stats Enhanced */
        .stats-strip {
            backdrop-filter: blur(12px); box-shadow: var(--shadow-lg);
            margin-top: -60px; padding: 28px 35px; border-radius: 12px;
            background: rgba(255,255,255,0.97); position: relative; overflow: hidden;
            max-width: 60%; margin-left: auto; margin-right: auto;
        }
        .stats-strip::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 3px; background: var(--accent-gradient);
        }
        .stat-num {
            font-size: 2.5rem;
            background: linear-gradient(to right, #fe8c00 0%, #f83600 51%, #fe8c00 100%);
            background-size: 200% auto;
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; margin-bottom: 6px;
        }
        .stat-label { font-size: 0.9rem; }

        /* About Enhanced */
        .about-grid { gap: 60px; }
        .about-img-1 { border-radius: 12px; box-shadow: var(--shadow-lg); }
        .about-img-2 { bottom: -40px; border-radius: 12px; box-shadow: var(--shadow-md); border-width: 4px; }
        .about-text h4 {
            background: var(--accent-gradient);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; letter-spacing: 1.5px; font-size: 0.85rem; margin-bottom: 8px;
        }
        .about-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
        .check-list li { margin-bottom: 12px; font-size: 0.95rem; }

        /* Timeline Enhanced */
        .timeline { margin: 40px auto 0; }
        .timeline::before { background: linear-gradient(180deg, var(--accent), var(--accent-2)); opacity: 0.3; }
        .timeline-item { margin-bottom: 40px; }
        .timeline-dot { background: var(--accent-gradient); }
        .year {
            background: var(--accent-gradient);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; font-size: 1.3rem; margin-bottom: 4px;
        }

        /* Product Cards Enhanced */
        .product-card { border-radius: 12px; height: 380px; box-shadow: var(--shadow-md); }
        .product-card::after {
            content: ''; position: absolute; inset: 0; border-radius: 12px; padding: 2px;
            background: var(--accent-gradient);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor; mask-composite: exclude;
            opacity: 0; transition: var(--transition); z-index: 3; pointer-events: none;
        }
        .product-card:hover::after { opacity: 1; }
        .product-card:hover img { transform: scale(1.08); }
        .product-overlay {
            background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.5) 60%, transparent 100%);
            padding: 25px; transform: translateY(15px);
        }
        .product-overlay h3 { font-size: 1.5rem; margin-bottom: 8px; }
        .product-overlay p { font-size: 0.9rem; }

        /* Features Enhanced */
        .feature-grid { gap: 24px; }
        .feature-box { padding: 32px; border-radius: 12px; position: relative; overflow: hidden; }
        .feature-box::after {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
            background: var(--accent-gradient); transform: scaleX(0);
            transform-origin: left; transition: transform 0.4s ease;
        }
        .feature-box:hover::after { transform: scaleX(1); }
        .feature-box:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
        .feature-icon {
            width: 52px; height: 52px;
            background: linear-gradient(135deg, rgba(254,140,0,0.1), rgba(248,54,0,0.1));
            border-radius: 12px; font-size: 1.5rem; margin-bottom: 20px;
        }

        /* Certifications Enhanced */
        .cert-grid { gap: 24px; }
        .cert-item { filter: none; opacity: 1; }
        .cert-item:hover { transform: translateY(-4px); }
        .cert-box { border-radius: 12px; width: 170px; padding: 20px 16px; background: var(--white); transition: var(--transition); }
        .cert-box:hover {
            border-color: transparent; box-shadow: var(--shadow-md);
            background: linear-gradient(135deg, rgba(254,140,0,0.05), rgba(248,54,0,0.05));
        }
        .cert-box i { font-size: 2.2rem; color: var(--accent); display: block; }

        /* Team Enhanced */
        .team-grid { gap: 24px; }
        .team-card { border-radius: 12px; box-shadow: var(--shadow-sm); transition: var(--transition); }
        .team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
        .team-img { height: 320px; }
        .team-info { padding: 20px; }
        .team-info h4 { font-size: 1.15rem; margin-bottom: 4px; }
        .team-info span { font-size: 0.85rem; }

        /* Clients Enhanced */
        .clients-strip { padding: 40px 0; }
        .client-logos { gap: 24px; opacity: 0.5; }
        .client-logo { font-size: 1.3rem; transition: var(--transition); }
        .client-logo:hover { opacity: 1; color: var(--primary); }

        /* Contact Enhanced */
        .contact-section {
            background: linear-gradient(135deg, var(--primary) 0%, #1a1f3a 50%, #0f2027 100%);
        }
        .contact-section::before {
            content: ''; position: absolute;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(254,140,0,0.08), transparent 70%);
            top: -200px; right: -200px; border-radius: 50%; pointer-events: none;
        }
        .contact-grid { gap: 50px; }
        .contact-info h2 { font-size: 2.2rem; margin-bottom: 16px; }
        .contact-info p { margin-bottom: 32px; }
        .info-row { gap: 16px; margin-bottom: 24px; }
        .info-icon {
            min-width: 44px; height: 44px;
            background: linear-gradient(135deg, rgba(254,140,0,0.15), rgba(248,54,0,0.15));
            border-radius: 10px; font-size: 1.3rem;
        }
        .contact-form { padding: 40px; border-radius: 12px; box-shadow: var(--shadow-lg); }
        .form-group { margin-bottom: 16px; }
        .form-control { padding: 12px 14px; border-radius: 8px; font-size: 0.95rem; }
        .form-control:focus { box-shadow: 0 0 0 3px rgba(254,140,0,0.1); }
        textarea.form-control { height: 100px; }

        /* CSR Enhanced */
        #csr { background: linear-gradient(135deg, var(--primary) 0%, #1a1f3a 100%) !important; }

        /* Footer Enhanced */
        footer {
            background: linear-gradient(180deg, #020617 0%, #0a0f1e 100%);
            padding-top: 60px; border-top: none; position: relative;
        }
        footer::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
            background: var(--accent-gradient);
        }
        .footer-grid { gap: 30px; padding-bottom: 40px; }
        .footer-col h3 { margin-bottom: 20px; font-size: 1.1rem; }
        .footer-col p { margin-bottom: 16px; font-size: 0.9rem; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { font-size: 0.9rem; }
        .footer-links a:hover { padding-left: 4px; }
        .social-icons { gap: 10px; margin-top: 16px; }
        .social-icons a { width: 36px; height: 36px; border-radius: 8px; }
        .social-icons a:hover { background: var(--accent); background-image: var(--accent-gradient); }
        .copyright { padding: 20px 0; font-size: 0.85rem; }

        /* Hide old top-bar */
        .top-bar { display: none; }

        /* --- UPDATED Responsive --- */
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.6rem; }
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-img-group { margin-bottom: 40px; }
            .about-img-1 { width: 100%; }
            .about-img-2 { width: 40%; right: -10px; }
            .timeline::before { left: 20px; }
            .timeline-item { width: 100%; padding-left: 45px; padding-right: 0; text-align: left; }
            .timeline-item:nth-child(even) { margin-left: 0; padding-left: 45px; }
            .timeline-dot { left: 10px !important; right: auto; }
            .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 100%; }
            .stat-item { border-right: none; }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .btn-header { display: none; }
        }

        @media (max-width: 768px) {
            .section-padding { padding: 50px 0; }
            .nav-menu {
                position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px);
                background: var(--white); flex-direction: column; padding: 30px;
                transition: var(--transition); border-top: 1px solid var(--border);
            }
            .nav-menu.active { left: 0; }
            .hamburger { display: block; }

            /* Hero */
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; margin-bottom: 24px; }
            .hero { padding: 220px 0 80px; }
            .hero-badge { font-size: 0.75rem; padding: 4px 12px; margin-bottom: 16px; }

            /* Stats */
            .stats-strip {
                margin-top: 30px; margin-bottom: 30px; grid-template-columns: repeat(2, 1fr);
                padding: 20px 16px; gap: 16px; border-radius: 10px;
            }
            .stat-num { font-size: 1.8rem; }
            .stat-label { font-size: 0.8rem; }

            /* Production grid - 1 column */
            .product-grid-mobile { grid-template-columns: 1fr !important; gap: 20px !important; }
            .product-card { height: 280px; }
            .product-overlay { padding: 20px; transform: translateY(0); }
            .product-overlay h3 { font-size: 1.2rem; margin-bottom: 4px; }
            .product-overlay p { font-size: 0.85rem; }

            /* CSR - stack vertically */
            .csr-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
            .csr-grid img { max-height: 250px; object-fit: cover; width: 100%; }

            /* Other mobile fixes */
            .team-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .btn-header { display: none; }
            .section-header h2 { font-size: 1.7rem; }
            .section-header p { font-size: 0.9rem; }
            .about-text h2 { font-size: 1.8rem; }
            .contact-info h2 { font-size: 1.8rem; }
            .contact-form { padding: 24px; }
            .feature-grid { grid-template-columns: 1fr; }
            .cert-box { width: 140px; padding: 14px 10px; }
            .cert-grid { gap: 12px; }

            /* Language toggle - compact */
            .lang-toggle {
                padding: 3px 8px; font-size: 0.7rem; gap: 3px;
                border-radius: 30px;
            }
            .lang-toggle #langFlag { font-size: 0.85rem; }
            .header-actions { gap: 8px; }
            .hamburger { font-size: 1.5rem; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 1.65rem; }
            .hero { padding: 210px 0 70px; }
            .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 16px 12px; gap: 12px; margin-top: 24px; margin-bottom: 24px; }
            .stat-num { font-size: 1.5rem; }
            .stat-label { font-size: 0.75rem; }
            .container { padding: 0 14px; }
            .product-card { height: 240px; }
            .footer-col h3 { font-size: 1rem; }
            .contact-form { padding: 20px; }
            .form-control { padding: 10px 12px; font-size: 0.9rem; }
        }