html, body {
  height: auto;
  overflow-x: hidden;
  overflow-y: visible;
}

        :root {
            --primary: #d49132;
            --primary-dark: #b87a28;
            --navy: #001e38;
            --dark-navy: #001222;
            --transition: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        html { scroll-behavior: smooth; overflow-x: hidden }
        body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    max-width: 100%;
    padding-top: 70px;
}
        .container { max-width: 1200px; margin: 0 auto; padding: 0 16px; width: 100%; }
        a { text-decoration: none; color: inherit; }

        /* ── TOP BAR ── */
        .top-bar { background: var(--navy); color: white; padding: 8px 0; font-size: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
        .top-bar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
        .top-bar-left { color: #bbb; font-size: 0.72rem; }
        .top-bar-right { display: flex; align-items: center; gap: 18px; }
        .top-bar-contact { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
        .top-bar-contact span { display: flex; align-items: center; gap: 6px; color: #ccc; }
        .top-bar-contact i { color: var(--primary); font-size: 0.75rem; }
        .top-bar-social { display: flex; align-items: center; gap: 12px; border-left: 1px solid rgba(255,255,255,0.12); padding-left: 16px; }
        .top-bar-social a { color: #aaa; font-size: 0.78rem; transition: var(--transition); }
        .top-bar-social a:hover { color: var(--primary); }

        /* ── NAV ── */
        nav {
    background: white;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
        .nav-content { display: flex; justify-content: space-between; align-items: center; gap: 10px; width: 100%; overflow: hidden; }
        .logo { display: flex; align-items: center; gap: 8px; max-width: 70%; overflow: hidden; }
        .logo img { height: 52px; width: auto; display: block; }
        .logo-text h2 { font-size: 1.1rem; font-weight: 800; color: var(--navy); letter-spacing: 0.3px; line-height: 1.2;white-space: nowrap; overflow: hidden; 
text-overflow: ellipsis; }
        .logo-text span { font-size: 0.58rem; font-weight: 700; color: var(--primary); letter-spacing: 2.5px; text-transform: uppercase; display: block; }

        .nav-links { display: flex; gap: 20px; align-items: center; }
        .nav-links a { font-weight: 600; font-size: 0.75rem; color: #333; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); white-space: nowrap; }
        .nav-links a:hover { color: var(--primary); }
        .nav-links a.active { color: var(--primary); border-bottom: 2px solid var(--primary); padding-bottom: 2px; }
        .nav-links a i { font-size: 0.55rem; margin-left: 2px; }

        .btn-enquiry { background: var(--primary); color: white !important; padding: 14px 26px; border-radius: 4px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); white-space: nowrap; min-height: 44px; display: flex; align-items: center; flex-shrink: 0; max-width: 100%; }
        .btn-enquiry:hover { background: var(--primary-dark); }

        /* Hamburger */
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; z-index: 1100; }
        .hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-nav { display: none; flex-direction: column; background: white; border-top: 1px solid #eee; padding: 12px 16px 20px; width: 100%; gap: 2px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
        .mobile-nav.open { display: flex; }
        .mobile-nav a { font-size: 0.85rem; font-weight: 600; color: #333; text-transform: uppercase; letter-spacing: 0.5px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; transition: var(--transition); min-height: 44px; display: flex; align-items: center; }
        .mobile-nav a:last-child { border-bottom: none; }
        .mobile-nav a:hover { color: var(--primary); padding-left: 6px; }
        .mobile-nav .mobile-enquiry { background: var(--primary); color: white !important; padding: 13px 20px; border-radius: 4px; text-align: center; margin-top: 8px; justify-content: center; border-bottom: none; }
        .mobile-nav .mobile-enquiry:hover { background: var(--primary-dark); padding-left: 20px; }

        /* ── HERO ── */
        .hero {
            min-height: 580px;
            background:
                linear-gradient(135deg, rgba(0,18,34,0.97) 0%, rgba(0,30,56,0.90) 45%, rgba(0,18,34,0.50) 100%),
                url('images/hero1.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.04;
            background-image: radial-gradient(rgba(255,255,255,0.8) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
        }
        .hero::after {
            content: "";
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 4px;
            background: var(--primary);
        }
        .hero-content {  max-width: 100%; width: 100%; position: relative; z-index: 1; }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(212,145,50,0.12);
            border: 1px solid rgba(212,145,50,0.35);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 22px;
        }
        .hero-content h1 { font-size: 2.8rem; font-weight: 700; line-height: 1.05; color: #e5e5e5; letter-spacing: -0.5px; }
        .hero-content h2 { font-size: 2.8rem; font-weight: 900; color: var(--primary); line-height: 1.05; margin-bottom: 18px; letter-spacing: -0.5px; }
        .hero-subtitle { font-size: 1rem; font-weight: 600; color: #ddd; margin-bottom: 4px; }
        .hero-tagline { font-size: 0.82rem; color: #999; margin-bottom: 30px; line-height: 1.75; }
        .hero-features { display: flex; gap: 28px; margin-bottom: 34px; flex-wrap: wrap; }
        .hero-feature-item { text-align: center; }
        .hero-feature-item i { color: var(--primary); font-size: 1.4rem; margin-bottom: 6px; display: block; }
        .hero-feature-item span { font-size: 0.67rem; font-weight: 600; color: #ccc; display: block; line-height: 1.35; }
        .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
        .btn-hero-primary { background: var(--primary); color: white; padding: 14px 30px; border-radius: 4px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); box-shadow: 0 8px 24px rgba(212,145,50,0.3); min-height: 44px; display: flex; align-items: center; }
        .btn-hero-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
        /* This makes the button white with Navy Blue text so you can read it */
.btn-hero-outline { 
    background: white !important; 
    border: 2px solid white; 
    color: #001e38 !important; /* This is the Navy Blue color */
    padding: 16px 32px; 
    border-radius: 4px; 
    font-weight: 700; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    transition: var(--transition); 
    min-height: 44px; 
    cursor: pointer;
}

/* This makes it turn see-through with white text when you hover over it */
.btn-hero-outline:hover { 
    background: transparent !important; 
    color: white !important; 
    border-color: white; 
}
        .btn-hero-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

        /* ── SECTIONS ── */
        .section-padding {
    padding: 60px 0;
}
        .section-label { color: var(--primary); font-weight: 700; font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 10px; display: block; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h2 { font-size: 1.85rem; color: var(--navy); font-weight: 700; }
        .section-underline { width: 50px; height: 3px; background: var(--primary); margin: 14px auto 0; border-radius: 2px; }

        /* ── PRODUCT GRID ── */
        .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .product-card { background: white; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); overflow: hidden; text-align: center; transition: var(--transition); }
        .product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
	.product-card { ...existing code... }

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* 👉 ADD THIS BELOW */
.product-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-card:hover {
    border: 2px solid var(--primary);
    box-shadow: 0 12px 32px rgba(212,145,50,0.25);
}
.product-card:hover .product-info h3 {
    color: var(--primary);
}
        .product-img { height: 200px; position: relative; border-radius: 8px 8px 0 0; }
        .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .product-card:hover .product-img img { transform: scale(1.05); }
        .product-icon { width: 48px; height: 48px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%); border: 3px solid white; font-size: 1.1rem; z-index: 10; box-shadow: 0 4px 12px rgba(212,145,50,0.35); }
        .product-info {
    padding: 48px 24px 28px;
}
        .product-info h3 { margin-bottom: 10px; font-size: 1rem; color: var(--navy); font-weight: 700; }
        .product-info p { font-size: 0.85rem; color: #666; margin-bottom: 16px; line-height: 1.65; min-height: 52px; }
        .view-link { color: var(--primary); font-weight: 700; font-size: 0.8rem; transition: var(--transition); }
        .view-link:hover { letter-spacing: 0.3px; }

        /* ── WHY PARTNER ── */
        .partner-section { background: var(--navy); color: white; }
        .partner-section h2 { text-align: center; margin-bottom: 50px; font-size: 1.4rem; font-weight: 700; letter-spacing: 2px; color: white; }
        .partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
        .partner-item { text-align: center; padding: 32px 24px; border-right: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); transition: var(--transition); }
        .partner-item:hover { background: rgba(255,255,255,0.03); }
        .partner-item:nth-child(3), .partner-item:nth-child(6) { border-right: none; }
        .partner-item:nth-child(4), .partner-item:nth-child(5), .partner-item:nth-child(6) { border-bottom: none; }
        .partner-item i { color: var(--primary); font-size: 2rem; margin-bottom: 14px; display: block; }
        .partner-item h4 { margin-bottom: 8px; font-size: 0.92rem; font-weight: 700; color: white; }
        .partner-item p { font-size: 0.78rem; color: #7a9ab5; line-height: 1.55; }

        /* ── EXPORT MARKETS ── */
       .flags-grid { 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 30px; 
    margin: 40px auto 36px auto; 
    max-width: 920px; /* ⭐ This width is perfect for exactly 6 flags per row */
}

.flag-item { 
    text-align: center; 
    transition: var(--transition);
    flex: 0 1 120px; /* Gives each flag a bit more room for the text */
}
        .flag-item img { width: 62px; height: 44px; object-fit: cover; border: 1px solid #e0e0e0; border-radius: 4px; margin: 0 auto 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); display: block; transition: var(--transition); }
        .flag-item:hover img { transform: scale(1.08); box-shadow: 0 4px 14px rgba(0,0,0,0.14); }
        .flag-item span { display: block; font-size: 0.72rem; font-weight: 600; color: #444; }
        .btn-bordered { border: 2px solid var(--primary); color: var(--primary); padding: 11px 30px; border-radius: 4px; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); min-height: 44px; display: inline-flex; align-items: center; }
        .btn-bordered:hover { background: var(--primary); color: white; }

        /* ── CERTIFICATIONS ── */
        .certs-section { background: #f7f9fb; }
        .certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}
        .cert-item { text-align: center; padding: 22px 12px 18px; background: white; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); border: 1px solid #eef0f3; transition: var(--transition); }
        .cert-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-color: var(--primary); }
        .cert-item img { height: 50px; width: auto; display: block; margin: 0 auto 12px; }
        .cert-item strong { display: block; font-size: 0.72rem; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
        .cert-item p { font-size: 0.67rem; color: #777; line-height: 1.5; }

        /* ── STATS STRIP ── */
        .stats-strip { background: var(--dark-navy); color: white; padding: 56px 0; }
        .stats-content { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
        .stats-cta { max-width: 360px; }
        .stats-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; display: block; }
        .stats-cta h3 { font-size: 1.5rem; font-weight: 700; color: white; line-height: 1.35; margin-bottom: 10px; }
        .stats-cta p { font-size: 0.8rem; color: #7a9ab5; line-height: 1.65; }
        .stat-group { display: flex; gap: 40px; flex-wrap: wrap; }
        .stat-item { text-align: center; min-width: 70px; }
        .stat-item i { color: var(--primary); font-size: 1.6rem; margin-bottom: 10px; display: block; }
        .stat-item h4 { font-size: 1.8rem; font-weight: 900; color: white; line-height: 1; }
        .stat-item p { font-size: 0.7rem; color: #7a9ab5; margin-top: 5px; font-weight: 500; }

        /* ── FOOTER ── */
        footer { background: var(--dark-navy); color: white; padding: 70px 0 0; border-top: 3px solid var(--primary); }
        .footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.2fr 1.4fr; gap: 50px; padding-bottom: 50px; }

        .footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
        .footer-logo-wrap img { height: 62px; width: auto; display: block; }
        .footer-logo-text h2 { font-size: 1rem; font-weight: 800; color: white; letter-spacing: 0.3px; line-height: 1.2; }
        .footer-logo-text span { font-size: 0.55rem; font-weight: 700; color: var(--primary); letter-spacing: 2.5px; text-transform: uppercase; display: block; }

        .footer-desc { font-size: 0.8rem; color: #7a9ab5; line-height: 1.75; margin-bottom: 20px; }
        .footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
        .footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ccd6e0; font-size: 0.8rem; transition: var(--transition); background: rgba(255,255,255,0.05); }
        .footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }

        .footer-col h4 { margin-bottom: 22px; font-size: 0.82rem; color: white; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; position: relative; padding-bottom: 12px; }
        .footer-col h4::after { content: ""; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--primary); border-radius: 2px; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { font-size: 0.8rem; color: #7a9ab5; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
        .footer-col ul li a::before { content: "›"; color: var(--primary); font-size: 1rem; line-height: 1; }
        .footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }

        .contact-row { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
        .contact-row i { color: var(--primary); margin-top: 3px; font-size: 0.82rem; flex-shrink: 0; width: 14px; }
        .contact-row span { font-size: 0.8rem; color: #7a9ab5; line-height: 1.55; }

        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.72rem; color: #4a6070; }
        .footer-bottom-links { display: flex; gap: 20px; }
        .footer-bottom-links a { color: #4a6070; transition: var(--transition); }
        .footer-bottom-links a:hover { color: var(--primary); }

        /* ── WHATSAPP FLOAT ── */
        .whatsapp-float { position: fixed; bottom: 30px; right: 20px; background: #25d366; color: white; padding: 12px 20px 12px 16px; border-radius: 50px; display: flex; align-items: center; gap: 10px; z-index: 9999; box-shadow: 0 6px 22px rgba(37,211,102,0.45); transition: var(--transition); min-height: 52px; }
        .whatsapp-float:hover { background: #1db954; transform: scale(1.05); }
        .whatsapp-float i { font-size: 1.5rem; }
        .whatsapp-float span { font-size: 0.75rem; font-weight: 700; line-height: 1.3; color: white; }
        .whatsapp-float small { font-size: 0.62rem; font-weight: 400; display: block; opacity: 0.88; }

        /* ── RESPONSIVE ── */
        @media (max-width: 1100px) {
            .certs-grid { grid-template-columns: repeat(3, 1fr); }
            .nav-links { gap: 14px; }
            .nav-links a { font-size: 0.7rem; }
        }
        @media (max-width: 900px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .btn-enquiry { padding: 10px 16px; font-size: 0.7rem; }
            .hero-content h1, .hero-content h2 { font-size: 2.3rem; }
            .product-grid { grid-template-columns: repeat(2, 1fr); }
            .partner-grid { grid-template-columns: repeat(2, 1fr); }
            .partner-item:nth-child(2), .partner-item:nth-child(4) { border-right: none; }
            .partner-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); }
            .partner-item:nth-child(5), .partner-item:nth-child(6) { border-bottom: none; }
            .partner-item:nth-child(3), .partner-item:nth-child(4) { border-bottom: 1px solid rgba(255,255,255,0.07); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-content { flex-direction: column; text-align: center; }
            .stats-cta { max-width: 100%; }
            .stat-group { justify-content: center; }
        }
        @media (max-width: 600px) {
	     body { padding-top: 70px; }
	    nav .btn-enquiry { display: none; }
            .top-bar-left { display: none; }
            .top-bar-contact span:first-child { display: none; }
            .logo img { height: 44px; }
            .logo-text h2 { font-size: 0.95rem; }
            .hero { min-height: 520px; }
            .hero-content h1, .hero-content h2 { font-size: 1.6rem; }
            .hero-features { gap: 16px; }
            .hero-buttons { flex-direction: column; }
            .btn-hero-primary, .btn-hero-outline { justify-content: center; }
            .product-grid { grid-template-columns: 1fr; }
            .partner-grid { grid-template-columns: 1fr; gap: 20px;}
            .footer-grid { grid-template-columns: 1fr; }
            .certs-grid { grid-template-columns: repeat(2, 1fr); }
            /* 5. Make Flags neat (3 per row) */
            .flags-grid { 
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 15px; 
                justify-items: center;
            }
            .flag-item { min-width: auto; }
            .flag-item img { width: 52px; height: 36px; }
            .stats-cta h3 { font-size: 1.25rem; }
            .stat-group { gap: 24px; }
            .whatsapp-float span { display: none; }
            .whatsapp-float { padding: 14px; border-radius: 50%; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .section-header h2 { font-size: 1.4rem; }
        }

img {
    max-width: 100%;
    height: auto;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

/* ── HOW WE WORK SECTION ── */
.process-section { background: #fcfcfc; position: relative; }
.section-subtext { font-size: 0.9rem; color: #666; margin-top: 8px; }

.process-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    margin-top: 50px; 
    position: relative;
}

.process-card {
    background: white;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(212,145,50,0.08); /* Very subtle gold number */
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(212,145,50,0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--primary);
    color: white;
}

.process-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
}

/* ── FAQ SECTION ── */
.faq-section { background: white; }
.faq-container { max-width: 800px; margin: 40px auto 0; }

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-question:hover { color: var(--primary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.faq-answer p {
    padding: 20px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* When FAQ is active */
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-question { color: var(--primary); }
.faq-item.active .faq-question i { transform: rotate(45deg); }

/* Responsive adjustments */
@media (max-width: 992px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .process-grid { grid-template-columns: 1fr; }
    .faq-question { font-size: 0.9rem; }
}

/* ── MIXED CONTAINER SECTION (Corrected) ── */
.mixed-content-wrapper { display: flex; align-items: center; gap: 60px; padding: 40px 0; }
.mixed-text { flex: 1.2; text-align: left; }
.mixed-visual { flex: 0.8; display: flex; justify-content: center; }

.mixed-benefits { list-style: none; margin: 30px 0; padding: 0; }

.mixed-benefits li { 
    margin-bottom: 25px; 
    display: grid; 
    grid-template-columns: 30px 1fr; /* Icon gets 30px, text gets the rest */
    gap: 10px; 
    align-items: flex-start; 
    text-align: left;
}

.mixed-benefits li i { 
    color: var(--primary); 
    font-size: 1.2rem; 
    margin-top: 4px; 
}

.mixed-benefits li div {
    display: flex;
    flex-direction: column; /* Puts description under the title */
    gap: 2px;
}

.mixed-benefits li strong { 
    color: var(--primary); 
    font-size: 1.05rem; 
    display: block;
}

.mixed-benefits li span { 
    color: #aaa; 
    font-size: 0.9rem; 
    line-height: 1.4;
}

/* THE BOX VISUAL */
.container-box {
    width: 280px;
    height: 350px;
    border: 4px solid var(--primary);
    border-radius: 8px;
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255,255,255,0.05);
}

.product-layer {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--navy);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 4px;
    text-align: center;
    padding: 5px;
}

/* RESPONSIVE (PHONES) */
@media (max-width: 900px) {
    .mixed-content-wrapper { flex-direction: column; gap: 40px; }
    .mixed-text { text-align: center; }
    .mixed-benefits li { justify-content: center; }
}


/* ── MODAL STYLING ── */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 18, 34, 0.9);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 11000;
    padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-content {
    background: white;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 2rem;
    background: none; border: none; cursor: pointer; color: #999;
}

.spec-table { width: 100%; border-collapse: collapse; margin-top: 15px; }
.spec-table td { padding: 10px; border-bottom: 1px solid #eee; font-size: 0.9rem; }
.spec-table td:first-child { font-weight: 700; color: var(--navy); width: 40%; }

button.view-link { background: none; border: none; font-family: inherit; cursor: pointer; padding: 0; }



/* Styling for the Catalogue Choice Buttons */
.cat-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 12px;
}

.cat-opt {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 15px 10px;
    border-radius: 8px;
    font-weight: 700; 
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #001e38; /* Navy blue text */
}

.cat-opt:hover {
    background: #d49132 !important; /* Your brand orange */
    color: white !important;
    border-color: #d49132 !important;
    transform: translateY(-3px); /* Makes it lift up */
    box-shadow: 0 5px 15px rgba(212,145,50,0.3); /* Adds the soft glow */
}

/* Mobile fix for the grid */
@media (max-width: 500px) {
    .cat-choice-grid { grid-template-columns: 1fr; }
}


/* Top Bar Contact Links */
.top-bar-contact a {
    color: white;
    text-decoration: none;
    margin-left: 0px;
    font-size: 0.75rem;
    transition: 0.3s ease;
}

.top-bar-contact a:hover {
    color: #f4b400;
}



/* Ensure the button inside the modal always shows on mobile */
.modal-content .btn-enquiry {
    display: flex !important;
    justify-content: center;
    margin-top: 20px;
}