
    /* ─── CSS VARIABLES ─────────────────────────────── */
    :root {
      --primary:   #D62828;
      --primary-d: #a81e1e;
      --dark:      #0D1117;
      --navy:      #1A2332;
      --steel:     #2E3A4A;
      --gold:      #F4A800;
      --light:     #F7F8FA;
      --mid:       #E8ECF0;
      --muted:     #6B7B8D;
      --white:     #FFFFFF;
      --font-head: 'Barlow Condensed', sans-serif;
      --font-body: 'Barlow', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: var(--white); color: var(--steel); overflow-x: hidden; }

    /* ─── TOPBAR ────────────────────────────────────── */
    #topbar {
      background: var(--dark);
      font-size: .78rem;
      color: #fff;
      padding: 7px 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    #topbar a { color: #fff; text-decoration: none; transition: color .2s; }
    #topbar a:hover { color: var(--gold); }
    #topbar .sep { margin: 0 10px; opacity: .3; }

    /* ─── NAVBAR ────────────────────────────────────── */
    #mainNav {
      background: var(--white);
      border-bottom: 3px solid var(--primary);
      position: sticky; top: 0; z-index: 1040;
      box-shadow: 0 2px 20px rgba(0,0,0,.08);
      padding: 0;
    }
    #mainNav .container { min-height: 68px; align-items: stretch; }
    .brand-wrap { display: flex; flex-direction: column; justify-content: center; padding: 10px 0; }
    .brand-name {
      font-family: var(--font-head);
      font-size: 1.55rem; font-weight: 800;
      color: var(--dark); letter-spacing: 1.5px;
      line-height: 1;
    }
    .brand-name span { color: var(--primary); }
    .brand-tagline {
      font-size: .68rem; letter-spacing: 2px;
      text-transform: uppercase; color: var(--muted);
      margin-top: 3px;
    }
    .iso-pill {
      background: rgba(244,168,0,.12);
      border: 1px solid rgba(244,168,0,.35);
      color: var(--gold);
      font-size: .62rem; letter-spacing: 1.5px;
      font-family: var(--font-head); font-weight: 600;
      padding: 2px 8px; border-radius: 2px;
      margin-left: 10px; white-space: nowrap;
      align-self: center;
    }
    .navbar-nav .nav-link {
      font-family: var(--font-head);
      font-size: 1.05rem; font-weight: 600;
      letter-spacing: .5px;
      color: var(--steel) !important;
      padding: 22px 14px !important;
      border-bottom: 3px solid transparent;
      margin-bottom: -3px;
      transition: color .2s, border-color .2s;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--primary) !important;
      border-bottom-color: var(--primary);
    }
    .dropdown-menu {
      border: none;
      box-shadow: 0 8px 32px rgba(0,0,0,.12);
      border-top: 3px solid var(--primary);
      border-radius: 0 0 6px 6px;
      padding: 8px 0;
    }
    .dropdown-item {
      font-family: var(--font-body);
      font-size: .88rem;
      padding: 7px 20px;
      color: var(--steel);
    }
    .dropdown-item:hover { background: rgba(214,40,40,.07); color: var(--primary); }
    .dropdown-header {
      font-family: var(--font-head);
      font-size: .75rem; letter-spacing: 1.5px;
      color: var(--primary); padding: 8px 20px 4px;
    }
    .btn-enquiry-nav {
      background: var(--primary);
      color: var(--white) !important;
      font-family: var(--font-head) !important;
      font-size: 1rem !important; font-weight: 700 !important;
      letter-spacing: 1px !important;
      padding: 10px 24px !important;
      border-radius: 3px;
      border: none;
      margin: auto 0 auto 8px;
      transition: background .2s, transform .15s;
    }
    .btn-enquiry-nav:hover { background: var(--primary-d) !important; transform: translateY(-1px); }

    /* ─── HERO ──────────────────────────────────────── */
    #hero {
      background: var(--dark);
      position: relative;
      overflow: hidden;
      min-height: 540px;
      display: flex; align-items: center;
    }
    .hero-bg-tape {
      position: absolute; inset: 0;
      background:
        repeating-linear-gradient(
          -55deg,
          rgba(214,40,40,.06) 0px, rgba(214,40,40,.06) 2px,
          transparent 2px, transparent 28px
        );
    }
    .hero-bg-glow {
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(214,40,40,.18) 0%, transparent 70%);
      top: -100px; right: -100px;
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 2; padding: 70px 0; }
    .hero-label {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(214,40,40,.2);
      border: 1px solid rgba(214,40,40,.4);
      color: #F08080;
      font-family: var(--font-head); font-size: .78rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 5px 14px; border-radius: 2px;
      margin-bottom: 20px;
    }
    .hero-title {
      font-family: var(--font-head);
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.05;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }
    .hero-title .accent { color: var(--primary); }
    .hero-title .gold   { color: var(--gold); }
    .hero-desc {
      color: #fff;
      font-size: 1.05rem; line-height: 1.75;
      max-width: 540px;
      margin-bottom: 36px;
    }
    .btn-hero-red {
      background: var(--primary);
      color: #fff;
      font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
      letter-spacing: 1px; padding: 13px 34px;
      border: none; border-radius: 3px;
      transition: background .2s, transform .15s;
      text-decoration: none; display: inline-block;
    }
    .btn-hero-red:hover { background: var(--primary-d); transform: translateY(-2px); color: #fff; }
    .btn-hero-ghost {
      background: transparent;
      color: #fff;
      font-family: var(--font-head); font-size: 1.05rem; font-weight: 600;
      letter-spacing: 1px; padding: 11px 28px;
      border: 2px solid rgba(255,255,255,.25);
      border-radius: 3px; margin-left: 12px;
      transition: .2s; text-decoration: none; display: inline-block;
    }
    .btn-hero-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
    .hero-stats {
      display: flex; gap: 36px; margin-top: 48px;
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 28px;
    }
    .hero-stat-num {
      font-family: var(--font-head); font-size: 2rem; font-weight: 800;
      color: var(--white); line-height: 1;
    }
    .hero-stat-num span { color: var(--gold); }
    .hero-stat-label { font-size: .75rem; color: #6B7B8D; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }

    /* Hero right panel */
    .hero-panel {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 8px;
      padding: 28px 24px;
      position: relative; z-index: 2;
    }
    .hero-panel-title {
      font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
      color: var(--white); letter-spacing: .5px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      padding-bottom: 14px; margin-bottom: 18px;
    }
    .hero-prod-item {
      display: flex; align-items: center; gap: 14px;
      padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.05);
      text-decoration: none;
      transition: background .15s;
    }
    .hero-prod-item:last-child { border-bottom: none; }
    .hero-prod-img {
      width: 56px; height: 42px; object-fit: cover;
      border-radius: 4px; flex-shrink: 0;
      border: 1px solid rgba(255,255,255,.08);
      background: var(--steel);
    }
    .hero-prod-name {
      font-family: var(--font-body); font-size: .88rem;
      color: #C8D4E0; line-height: 1.3;
    }
    .hero-prod-name small { color: #556070; font-size: .75rem; display: block; }
    .hero-prod-arrow { margin-left: auto; color: var(--primary); opacity: 0; transition: opacity .2s; }
    .hero-prod-item:hover .hero-prod-arrow { opacity: 1; }
    .hero-prod-item:hover .hero-prod-name { color: #fff; }

    /* ─── SECTION COMMONS ───────────────────────────── */
    .section-eyebrow {
      font-family: var(--font-head); font-size: .75rem;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--primary); font-weight: 600;
      margin-bottom: 8px;
    }
    .section-h2 {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800; color: var(--dark);
      letter-spacing: .5px; line-height: 1.1;
    }
    .section-h2 span { color: var(--primary); }
    .red-rule { width: 44px; height: 3px; background: var(--primary); margin: 14px 0 20px; }
    .red-rule.center { margin: 14px auto 20px; }

    /* ─── CATEGORIES SECTION ────────────────────────── */
    #categories { padding: 80px 0; background: var(--white); }
    .cat-card {
      border: 1px solid var(--mid);
      border-radius: 6px;
      overflow: hidden;
      height: 100%;
      transition: box-shadow .25s, transform .25s, border-color .25s;
      background: var(--white);
    }
    .cat-card:hover {
      box-shadow: 0 12px 40px rgba(214,40,40,.14);
      transform: translateY(-5px);
      border-color: rgba(214,40,40,.3);
    }
    .cat-card-top {
      height: 130px;
      display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem;
      position: relative; overflow: hidden;
    }
    .cat-card-top.red  { background: linear-gradient(135deg, #fff1f1 0%, #ffd8d8 100%); }
    .cat-card-top.blue { background: linear-gradient(135deg, #f0f6ff 0%, #d0e4ff 100%); }
    .cat-card-top.amber{ background: linear-gradient(135deg, #fffbf0 0%, #ffeec2 100%); }
    .cat-card-top::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px;
    }
    .cat-card-top.red::after   { background: var(--primary); }
    .cat-card-top.blue::after  { background: #2980B9; }
    .cat-card-top.amber::after { background: var(--gold); }
    .cat-card-body { padding: 22px 22px 20px; }
    .cat-card-body h5 {
      font-family: var(--font-head); font-size: 1.25rem;
      font-weight: 700; color: var(--dark); margin-bottom: 10px;
    }
    .cat-card-body p {font-size: .87rem;color: #1a1b1c;line-height: 1.7;margin-bottom: 14px;}
    .cat-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
    .cat-tag {
      font-size: .7rem; background: var(--light);
      border: 1px solid var(--mid); color: var(--muted);
      padding: 3px 9px; border-radius: 2px;
      font-family: var(--font-body);
    }
    .cat-link {
      font-family: var(--font-head); font-size: .9rem; font-weight: 700;
      color: var(--primary); text-decoration: none; letter-spacing: .5px;
      display: inline-flex; align-items: center; gap: 6px;
      transition: gap .2s;
    }
    .cat-link:hover { color: var(--primary-d); gap: 10px; }

    /* ─── PRODUCTS SECTION ──────────────────────────── */
    #products { padding: 80px 0; background: var(--light); }
    .prod-card {
      background: var(--white);
      border: 1px solid var(--mid);
      border-radius: 6px; overflow: hidden;
      height: 100%;
      transition: box-shadow .25s, transform .25s;
    }
    .prod-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-4px); }
    .prod-img-wrap {
      height: 172px; overflow: hidden;
      background: var(--mid);
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .prod-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .4s;
    }
    .prod-card:hover .prod-img-wrap img { transform: scale(1.06); }
    .prod-img-wrap .prod-badge {
      position: absolute; top: 10px; left: 10px;
      background: var(--primary); color: #fff;
      font-family: var(--font-head); font-size: .65rem;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 3px 10px; border-radius: 2px;
    }
    .prod-img-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 3.2rem;
      background: linear-gradient(135deg, #e8ecf0, #d0d8e4);
      color: #8B9AAB;
    }
    .prod-body { padding: 16px 18px 18px; }
    .prod-body h6 {
      font-family: var(--font-head); font-size: 1.05rem;
      font-weight: 700; color: var(--dark); margin-bottom: 6px;
    }
    .prod-body p { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
    .prod-enquire {
      font-size: .78rem; font-family: var(--font-head);
      color: var(--primary); text-decoration: none; font-weight: 600;
      display: inline-flex; align-items: center; gap: 4px;
      letter-spacing: .5px;
    }
    .prod-enquire:hover { color: var(--primary-d); }

    /* ─── ABOUT SECTION ─────────────────────────────── */
    #about { padding: 90px 0; background: var(--white); }
    .about-img-block {
      position: relative;
    }
    .about-big-box {
      background: var(--navy);
      border-radius: 8px;
      height: 380px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; position: relative;
    }
    .about-tape-pattern {
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        45deg,
        rgba(214,40,40,.07) 0, rgba(214,40,40,.07) 2px,
        transparent 2px, transparent 24px
      );
    }
    .about-year-badge {
      position: absolute; bottom: -20px; right: -20px;
      width: 100px; height: 100px;
      background: var(--primary);
      border-radius: 6px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(214,40,40,.35);
    }
    .about-year-badge .num {
      font-family: var(--font-head); font-size: 2.2rem;
      font-weight: 800; color: #fff; line-height: 1;
    }
    .about-year-badge .lbl {
      font-size: .6rem; color: rgba(255,255,255,.8);
      letter-spacing: 1.5px; text-transform: uppercase;
    }
    .about-big-icon { font-size: 5rem; color: rgba(255,255,255,.1); }
    .about-text h3 {
      font-family: var(--font-head); font-size: 1rem; font-weight: 600;
      color: var(--muted); letter-spacing: 1px; text-transform: uppercase;
      margin-bottom: 4px;
    }
    .feat-list { list-style: none; padding: 0; margin: 20px 0 28px; }
    .feat-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: .9rem; color: var(--steel);
      padding: 8px 0; border-bottom: 1px solid var(--mid);
    }
    .feat-list li:last-child { border-bottom: none; }
    .feat-list li .ic { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
    .cert-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
    .cert-chip {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(244,168,0,.1); border: 1px solid rgba(244,168,0,.3);
      color: #B07800; font-family: var(--font-head); font-size: .82rem;
      font-weight: 600; letter-spacing: .5px;
      padding: 7px 16px; border-radius: 3px;
    }

    /* ─── WHY US ─────────────────────────────────────── */
    #why { padding: 90px 0; background: var(--dark); position: relative; overflow: hidden; }
    #why::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px,
        transparent 1px, transparent 22px
      );
    }
    .why-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 6px; padding: 30px 26px;
      height: 100%;
      transition: background .25s, border-color .25s, transform .25s;
    }
    .why-card:hover {
      background: rgba(214,40,40,.1);
      border-color: rgba(214,40,40,.3);
      transform: translateY(-4px);
    }
    .why-icon-wrap {
      width: 52px; height: 52px;
      background: rgba(214,40,40,.15);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; color: var(--primary);
      margin-bottom: 18px;
      transition: background .25s;
    }
    .why-card:hover .why-icon-wrap { background: rgba(214,40,40,.25); }
    .why-card h5 {
      font-family: var(--font-head); font-size: 1.15rem;
      font-weight: 700; color: var(--white); margin-bottom: 10px;
    }
    .why-card p {font-size: .87rem;color: #f8f9fa;line-height: 1.7;margin: 0;}

    /* ─── CONTACT CTA ────────────────────────────────── */
    #cta {
      background: var(--primary);
      padding: 64px 0;
      position: relative; overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        60deg,
        rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 2px,
        transparent 2px, transparent 30px
      );
    }
    #cta h2 {
      font-family: var(--font-head); font-size: 2.2rem;
      font-weight: 800; color: #fff; position: relative;
    }
    #cta p { color: rgba(255,255,255,.8); position: relative; }
    .btn-cta-white {
      background: #fff; color: var(--primary);
      font-family: var(--font-head); font-size: 1rem;
      font-weight: 700; letter-spacing: 1px;
      padding: 13px 34px; border-radius: 3px; border: none;
      text-decoration: none; display: inline-block;
      transition: .2s; position: relative;
    }
    .btn-cta-white:hover { background: var(--dark); color: #fff; }
    .btn-cta-outline {
      background: transparent; color: #fff;
      font-family: var(--font-head); font-size: 1rem; font-weight: 600;
      letter-spacing: 1px; padding: 11px 28px;
      border: 2px solid rgba(255,255,255,.5); border-radius: 3px;
      text-decoration: none; display: inline-block;
      transition: .2s; position: relative; margin-left: 12px;
    }
    .btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

    /* ─── CONTACT INFO ──────────────────────────────── */
    #contact { padding: 80px 0; background: var(--light); }
    .contact-card {
      background: var(--white);
      border: 1px solid var(--mid); border-radius: 6px;
      padding: 28px 24px; height: 100%;
      transition: box-shadow .2s;
    }
    .contact-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); }
    .contact-card .ci {
      width: 46px; height: 46px;
      background: rgba(214,40,40,.1); border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: var(--primary); font-size: 1.3rem;
      margin-bottom: 16px;
    }
    .contact-card h6 {
      font-family: var(--font-head); font-size: 1rem; font-weight: 700;
      color: var(--dark); margin-bottom: 10px; letter-spacing: .3px;
    }
    .contact-card p, .contact-card a {
      font-size: .87rem; color: var(--muted); line-height: 1.8;
      text-decoration: none; display: block;
    }
    .contact-card a:hover { color: var(--primary); }

    /* Enquiry Form */
    .enquiry-form-card {
      background: var(--white);
      border: 1px solid var(--mid); border-radius: 6px;
      padding: 32px 28px;
    }
    .enquiry-form-card h4 {
      font-family: var(--font-head); font-size: 1.5rem;
      font-weight: 700; color: var(--dark); margin-bottom: 4px;
    }
    .enquiry-form-card .sub { font-size: .87rem; color: var(--muted); margin-bottom: 22px; }
    .form-label { font-size: .82rem; font-weight: 600; color: var(--steel); margin-bottom: 5px; }
    .form-control, .form-select {
      border: 1px solid var(--mid); border-radius: 3px;
      font-size: .9rem; padding: 10px 14px;
      transition: border-color .2s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--primary); box-shadow: 0 0 0 3px rgba(214,40,40,.1);
    }
    .btn-submit {
      background: var(--primary); color: #fff;
      font-family: var(--font-head); font-size: 1.05rem;
      font-weight: 700; letter-spacing: 1px;
      padding: 12px 32px; border: none; border-radius: 3px;
      transition: background .2s; width: 100%;
    }
    .btn-submit:hover { background: var(--primary-d); }

    /* ─── FOOTER ─────────────────────────────────────── */
    footer {
      background: #0A0F18;
      color: #8B9AAB;
      padding: 60px 0 0;
    }
    .footer-brand-name {
      font-family: var(--font-head); font-size: 1.6rem;
      font-weight: 800; color: var(--white); letter-spacing: 1px;
    }
    .footer-brand-name span { color: var(--primary); }
    .footer-desc { font-size: .85rem; color: #fff; line-height: 1.8; max-width: 280px; margin-top: 10px; }
    footer h6 {
      font-family: var(--font-head); font-size: .85rem;
      font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      color: var(--white); margin-bottom: 18px;
      position: relative; padding-bottom: 10px;
    }
    footer h6::after {
      content: ''; position: absolute;
      bottom: 0; left: 0;
      width: 28px; height: 2px; background: var(--primary);
    }
    footer ul { list-style: none; padding: 0; }
    footer ul li { margin-bottom: 9px; }
    footer ul li a {
      font-size: .85rem; color: #fff;
      text-decoration: none; transition: color .2s;
      display: inline-flex; align-items: center; gap: 6px;
    }
    footer ul li a:hover { color: var(--gold); }
    footer ul li a::before { content: '›'; color: var(--primary); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.05);
      margin-top: 48px; padding: 18px 0;
      font-size: .78rem; color: #3D4F62; text-align: center;
    }
    .social-btn {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 4px;
      display: inline-flex; align-items: center; justify-content: center;
      color: #8B9AAB; font-size: 1rem;
      text-decoration: none; transition: .2s;
    }
    .social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

    /* ─── SCROLL REVEAL ──────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.show { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    /* ─── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 767px) {
      .hero-stats { gap: 20px; flex-wrap: wrap; }
      .hero-title { font-size: 2.2rem; }
      .btn-hero-ghost { margin-left: 0; margin-top: 10px; }
    }

    :root {
      --red: #c0392b;
      --red-dark: #a93226;
      --red-light: #e74c3c;
      --gold: #d4a017;
      --dark: #1a1a2e;
      --dark2: #16213e;
      --mid: #e0e0e0;
      --muted: #666;
      --text: #222;
      --light-bg: #f9f9f9;
      --card-bg: #fff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Barlow', sans-serif; color: var(--text); background: #fff; }

    /* TOPBAR */
    #topbar {
      background: var(--dark);
      color: #ccc;
      font-size: .78rem;
      padding: 7px 0;
    }
    #topbar a { color: #ccc; text-decoration: none; }
    #topbar a:hover { color: #fff; }
    #topbar .sep { margin: 0 8px; opacity: .4; }

    /* NAVBAR */
    #mainNav {
      background: #fff;
      border-bottom: 3px solid var(--red);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 16px rgba(0,0,0,.08);
    }
    #mainNav .container { min-height: 64px; }
    .brand-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.45rem; font-weight: 800; letter-spacing: 1px; color: var(--dark); }
    .brand-name span { color: var(--red); }
    .brand-tagline { font-size: .68rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: -2px; }
    .iso-pill { background: var(--red); color: #fff; font-size: .65rem; font-weight: 700; padding: 3px 8px; border-radius: 20px; letter-spacing: .5px; }
    .nav-link { font-family: 'Barlow', sans-serif; font-weight: 500; font-size: .88rem; color: var(--dark) !important; padding: 22px 14px !important; text-transform: uppercase; letter-spacing: .5px; transition: color .2s; }
    .nav-link:hover, .nav-link.active { color: var(--red) !important; }
    .dropdown-menu { border: none; box-shadow: 0 8px 30px rgba(0,0,0,.12); border-radius: 0 0 8px 8px; border-top: 3px solid var(--red); }
    .dropdown-item { font-size: .84rem; padding: 7px 20px; color: var(--dark); }
    .dropdown-item:hover { background: #fef2f2; color: var(--red); }
    .dropdown-header { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; padding: 8px 20px 4px; font-weight: 600; }
    .btn-enquiry-nav { background: var(--red); color: #fff !important; font-size: .82rem; font-weight: 600; padding: 8px 18px !important; border-radius: 4px; text-transform: uppercase; letter-spacing: .5px; transition: background .2s; }
    .btn-enquiry-nav:hover { background: var(--red-dark); }

    /* BREADCRUMB */
    #breadcrumb {
      background: var(--light-bg);
      border-bottom: 1px solid var(--mid);
      padding: 10px 0;
    }
    .breadcrumb { margin: 0; font-size: .82rem; }
    .breadcrumb-item a { color: var(--red); text-decoration: none; }
    .breadcrumb-item.active { color: var(--muted); }
    .breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }

    /* PRODUCT HERO */
    #prod-hero {
      background: linear-gradient(135deg, var(--dark) 0%, #2c1810 60%, var(--dark2) 100%);
      padding: 60px 0 50px;
      position: relative;
      overflow: hidden;
    }
    #prod-hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,.02) 20px,
        rgba(255,255,255,.02) 40px
      );
    }
    .ph-eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
    .ph-title { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800; color: #fff; line-height: 1.05; margin-bottom: 16px; }
    .ph-title span { color: var(--red-light); }
    .ph-desc { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; max-width: 520px; }
    .ph-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
    .ph-badge { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; font-size: .75rem; font-weight: 600; padding: 5px 14px; border-radius: 20px; letter-spacing: .5px; }
    .ph-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-ph-red { background: var(--red); color: #fff; border: none; padding: 12px 26px; font-size: .88rem; font-weight: 600; border-radius: 4px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .5px; transition: background .2s; }
    .btn-ph-red:hover { background: var(--red-dark); color: #fff; }
    .btn-ph-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); padding: 12px 26px; font-size: .88rem; font-weight: 600; border-radius: 4px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .5px; transition: all .2s; }
    .btn-ph-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

    /* Hero visual */
    .prod-visual-box {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px;
      padding: 30px;
      text-align: center;
    }
    .prod-main-img {
      width: 100%;
      max-width: 340px;
      height: 240px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(0,0,0,.4);
    }
    .prod-img-placeholder-hero {
      width: 100%;
      max-width: 340px;
      height: 240px;
      background: linear-gradient(135deg, #c0392b22, #d4a01722);
      border: 1px dashed rgba(255,255,255,.2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      margin: 0 auto;
    }
    .prod-thumb-row { display: flex; gap: 10px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
    .prod-thumb {
      width: 70px; height: 52px;
      background: rgba(255,255,255,.1);
      border: 1.5px solid rgba(255,255,255,.2);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      transition: border-color .2s;
    }
    .prod-thumb:hover, .prod-thumb.active { border-color: var(--red-light); background: rgba(192,57,43,.2); }

    /* SECTION COMMON */
    section { padding: 64px 0; }
    .section-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
    .section-h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
    .section-h2 span { color: var(--red); }
    .red-rule { width: 44px; height: 3px; background: var(--red); margin-bottom: 24px; }
    .red-rule.center { margin: 0 auto 24px; }

    /* OVERVIEW */
    #overview { background: #fff; }
    .overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .ov-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--light-bg); border-radius: 8px; border-left: 3px solid var(--red); }
    .ov-icon { color: var(--red); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
    .ov-title { font-weight: 600; font-size: .88rem; color: var(--dark); margin-bottom: 3px; }
    .ov-desc { font-size: .8rem; color: var(--muted); line-height: 1.5; }

    /* SPECS TABLE */
    #specs { background: var(--light-bg); }
    .specs-table { width: 100%; border-collapse: collapse; }
    .specs-table th { background: var(--dark); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: .85rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 12px 18px; text-align: left; }
    .specs-table td { padding: 11px 18px; font-size: .87rem; border-bottom: 1px solid var(--mid); vertical-align: top; }
    .specs-table tr:last-child td { border-bottom: none; }
    .specs-table tr:nth-child(even) td { background: rgba(0,0,0,.02); }
    .specs-table td:first-child { font-weight: 600; color: var(--dark); width: 40%; }

    /* VARIANTS */
    #variants { background: #fff; }
    .variant-card {
      background: var(--card-bg);
      border: 1px solid var(--mid);
      border-radius: 10px;
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
    }
    .variant-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
    .variant-top { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
    .variant-top.v-bopp { background: linear-gradient(135deg, #fff9c4, #fff59d); }
    .variant-top.v-printed { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
    .variant-top.v-custom { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
    .variant-top.v-colored { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
    .variant-body { padding: 16px; }
    .variant-body h6 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
    .variant-body p { font-size: .8rem; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
    .v-tag { display: inline-block; background: #fef2f2; color: var(--red); font-size: .7rem; font-weight: 600; padding: 3px 8px; border-radius: 3px; margin: 2px 2px 2px 0; }

    /* APPLICATIONS */
    #applications { background: var(--light-bg); }
    .app-card { text-align: center; padding: 28px 20px; background: #fff; border-radius: 10px; border: 1px solid var(--mid); height: 100%; transition: border-color .2s, box-shadow .2s; }
    .app-card:hover { border-color: var(--red); box-shadow: 0 8px 24px rgba(192,57,43,.1); }
    .app-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
    .app-card h6 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
    .app-card p { font-size: .8rem; color: var(--muted); line-height: 1.5; margin: 0; }

    /* CUSTOMIZATION */
    #customization { background: var(--dark); position: relative; overflow: hidden; }
    #customization::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(255,255,255,.015) 30px, rgba(255,255,255,.015) 60px);
    }
    .cust-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 24px; height: 100%; }
    .cust-icon { font-size: 2rem; color: var(--gold); margin-bottom: 14px; display: block; }
    .cust-card h5 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; color: #fff; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
    .cust-card p { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0; }
    #customization .section-h2 { color: #fff; }
    #customization .section-eyebrow { color: var(--gold); }

    /* CONTACT */
    #contact { background: #fff; }
    .contact-card { background: var(--light-bg); border-radius: 10px; padding: 22px; height: 100%; }
    .contact-card .ci { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 14px; }
    .contact-card h6 { font-weight: 700; font-size: .9rem; color: var(--dark); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
    .contact-card p, .contact-card a { font-size: .84rem; color: var(--muted); display: block; line-height: 1.7; text-decoration: none; }
    .contact-card a:hover { color: var(--red); }
    .enquiry-form-card { background: var(--dark); border-radius: 12px; padding: 32px; }
    .enquiry-form-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
    .enquiry-form-card .sub { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 22px; }
    .enquiry-form-card .form-label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .5px; }
    .enquiry-form-card .form-control, .enquiry-form-card .form-select { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; border-radius: 4px; font-size: .88rem; }
    .enquiry-form-card .form-control::placeholder { color: rgba(255,255,255,.35); }
    .enquiry-form-card .form-control:focus, .enquiry-form-card .form-select:focus { background: rgba(255,255,255,.12); border-color: var(--red-light); box-shadow: none; color: #fff; }
    .enquiry-form-card .form-select option { background: var(--dark); }
    .btn-submit { width: 100%; background: var(--red); color: #fff; border: none; padding: 13px; font-size: .9rem; font-weight: 700; border-radius: 4px; cursor: pointer; text-transform: uppercase; letter-spacing: .5px; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
    .btn-submit:hover { background: var(--red-dark); }

    /* FOOTER */
    footer { background: #111; color: rgba(255,255,255,.6); padding: 50px 0 0; }
    .footer-brand-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: 1px; margin-bottom: 12px; }
    .footer-brand-name span { color: var(--red); }
    .footer-desc { font-size: .82rem; line-height: 1.7; }
    footer h6 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 16px; }
    footer ul { list-style: none; padding: 0; }
    footer ul li { margin-bottom: 8px; }
    footer ul li a { font-size: .82rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
    footer ul li a:hover { color: var(--red-light); }
    .social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7); display: inline-flex; align-items: center; justify-content: center; font-size: .9rem; text-decoration: none; transition: all .2s; }
    .social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding: 16px 0; text-align: center; font-size: .78rem; color: rgba(255,255,255,.35); }

    /* CTA STRIP */
    #cta-strip { background: var(--red); padding: 32px 0; }
    #cta-strip h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 800; color: #fff; margin: 0; }
    #cta-strip p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 6px 0 0; }
    .btn-cta-white { background: #fff; color: var(--red); border: none; padding: 11px 24px; font-size: .88rem; font-weight: 700; border-radius: 4px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .5px; margin-right: 10px; margin-top: 8px; transition: all .2s; }
    .btn-cta-white:hover { background: var(--dark); color: #fff; }
    .btn-cta-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); padding: 11px 24px; font-size: .88rem; font-weight: 700; border-radius: 4px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .5px; margin-top: 8px; transition: all .2s; }
    .btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(24px); transition: all .55s ease; }
    .reveal.show { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    @media (max-width: 767px) {
      .ph-title { font-size: 2.1rem; }
      .overview-grid { grid-template-columns: 1fr; }
    }
#mainNav {
  overflow: visible !important;
}

#mainNav .dropdown-menu {
  z-index: 9999;
}

.mega-menu {
  width: 720px;
  left: 50%;
  transform: translateX(-50%);
  border: 0.5px solid rgba(0,0,0,.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  text-t
}

@media (max-width: 991px) {
  .mega-menu {
    width: 100%;
    left: 0;
    transform: none;
  }
}

/* =========================
   GLOBAL FIX
========================= */
html,
body {
    overflow-x: hidden;
}

/* Bootstrap row overflow fix */
.row {
    --bs-gutter-x: 1.5rem;
    margin-right: 0;
    margin-left: 0;
}

/* Images responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   MEGA MENU RESPONSIVE
========================= */
@media (max-width: 991px) {

    .mega-menu {
        width: 100% !important;
        min-width: 100% !important;
        border-radius: 14px;
        overflow: hidden;
    }

    .mega-menu .row {
        flex-direction: column;
    }

    .mega-menu .col-lg-6,
    .mega-menu .col-lg-5,
    .mega-menu .col-lg-1 {
        width: 100%;
    }

    .mega-menu .dropdown-item {
        white-space: normal;
        font-size: 14px;
    }
}

/* =========================
   HERO SECTION MOBILE
========================= */
@media (max-width: 768px) {

    #hero {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.3rem !important;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }

    .btn-hero-red,
    .btn-hero-ghost {
        width: 100%;
        justify-content: center;
    }
}

/* =========================
   TOPBAR MOBILE
========================= */
@media (max-width: 768px) {

    #topbar {
        text-align: center;
        font-size: 13px;
    }

    #topbar .container {
        justify-content: center !important;
    }

    #topbar .sep {
        display: none;
    }
}

/* =========================
   NAVBAR MOBILE
========================= */
@media (max-width: 991px) {

    .navbar-nav {
        padding-top: 15px;
    }

    .nav-link {
        padding: 10px 0;
    }

    .btn-enquiry-nav {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
}

/* =========================
   PRODUCT CARD FIX
========================= */
.prod-card {
    height: 100%;
}

.prod-img-wrap {
    overflow: hidden;
}

/* =========================
   CONTACT FORM MOBILE
========================= */
@media (max-width: 768px) {

    .enquiry-form-card {
        padding: 25px 20px;
    }

    .contact-card {
        text-align: center;
    }
}

/* =========================
   FOOTER MOBILE
========================= */
@media (max-width: 768px) {

    footer {
        text-align: center;
    }

    .footer-bottom {
        font-size: 13px;
        line-height: 1.6;
        padding: 15px;
    }
}
<style>
  /* ══════════════════════════════
     MOBILE SPACING FIXES ≤767px
  ══════════════════════════════ */
  @media (max-width: 767.98px) {

    /* Topbar */
    #topbar { font-size: 11px; padding: 5px 0; }
    #topbar .sep { display: none; }
    #topbar .container { flex-direction: column; gap: 3px !important; align-items: flex-start !important; }

    /* Navbar */
    #mainNav { padding: 7px 0 !important; }
    .brand-name { font-size: 1.05rem !important; }
    .brand-tagline { font-size: 0.62rem !important; }

    /* Hero */
    #hero { padding: 28px 0 28px !important; }
    .hero-title { font-size: 2rem !important; line-height: 1.15 !important; }
    .hero-desc { font-size: 0.83rem !important; margin-bottom: 12px !important; }
    .hero-label { font-size: 0.7rem !important; padding: 4px 9px !important; margin-bottom: 10px !important; }
    .hero-stats { gap: 10px !important; margin-top: 18px !important; padding-top: 14px !important; }
    .hero-stat-num { font-size: 1.3rem !important; }
    .hero-stat-label { font-size: 0.62rem !important; }
    .btn-hero-red, .btn-hero-ghost { padding: 8px 14px !important; font-size: 0.8rem !important; }

    /* Categories */
    #categories { padding: 32px 0 !important; }
    #categories .mb-5 { margin-bottom: 20px !important; }
    .cat-card-body { padding: 12px 14px !important; }
    .cat-card-body h5 { font-size: 0.95rem !important; }
    .cat-card-body p { font-size: 0.8rem !important; }
    .cat-tag { font-size: 0.68rem !important; padding: 2px 6px !important; }

    /* Products */
    #products { padding: 32px 0 !important; }
    #products .mb-5 { margin-bottom: 18px !important; }
    .prod-body { padding: 9px 11px !important; }
    .prod-body h6 { font-size: 0.8rem !important; }
    .prod-body p { font-size: 0.73rem !important; display: none !important; }
    .prod-enquire { font-size: 0.73rem !important; padding: 4px 9px !important; }

    /* About */
    #about { padding: 32px 0 !important; }

    /* Why */
    #why { padding: 32px 0 !important; }
    .why-card { padding: 16px 14px !important; }
    .why-card h5 { font-size: 0.92rem !important; }
    .why-card p { font-size: 0.8rem !important; }

    /* CTA */
    #cta { padding: 24px 0 !important; }
    #cta h2 { font-size: 1.3rem !important; }
    .btn-cta-white, .btn-cta-outline { padding: 9px 16px !important; font-size: 0.82rem !important; }

    /* Contact */
    #contact { padding: 32px 0 !important; }
    .contact-card { padding: 14px !important; }
    .enquiry-form-card { padding: 18px 14px !important; }

    /* Section headings */
    .section-h2 { font-size: 1.5rem !important; }
    .section-eyebrow { font-size: 0.68rem !important; }

    /* Footer */
    footer { padding: 36px 0 0 !important; }
    footer h6 { font-size: 0.8rem !important; margin-bottom: 9px !important; }
    footer ul li a { font-size: 0.78rem !important; padding: 2px 0 !important; display: block; }
  }
  </style>

  