    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --navy:   #0B1B2E;
      --navy2:  #101F30;
      --navy3:  #091624;
      --gold:   #C8851F;
      --gold2:  #E09A30;
      --gold3:  #F5B240;
      --off:    #F3F0EA;
      --white:  #FFFFFF;
      --tm:     #1C1C1C;
      --ts:     #5C6B75;
      --border: rgba(200,133,31,0.22);
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Barlow', sans-serif; font-weight: 600; color: var(--tm); background: #fff; overflow-x: hidden; padding-top: 70px;}

    /* ─── NAVIGATION ─────────────────────────────────── */
    /* NAVBAR */
/* NAVBAR */
.navbar {
  width: 100%;
  background: #0B1B2E;
  border-bottom: 2px solid #f0a500;

  position: fixed;   /* ⬅️ this is what you want */
  top: 0;
  left: 0;

  z-index: 9999;
}

/* CONTAINER */
.nav-container {
  max-width: 1400px;
  margin: auto;

  padding: 14px 60px;   /* ⬅️ more breathing space */

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO spacing */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;  /* ⬅️ increased */
  text-decoration: none;
}

/* 🔥 FIX WHITE BOX ISSUE */
.nav-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: transparent;   /* important */
  display: block;
}

/* TEXT */
.nav-logo span {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-logo em {
  color: #f0a500;
  font-style: normal;
}

/* MENU spacing */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;  /* ⬅️ more space between menu items */
}

/* PUSH MENU TO CENTER NICELY */
.nav-links {
  margin-left: 40px;
  margin-right: auto;
}

.nav-links li a {
  color: #cfd6df;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ffffff;
}

/* CTA BUTTON */
.nav-btn {
  background: #f0a500;
  
  color: #000;
  margin-left: 30px;  /* ⬅️ separates from menu */
  padding: 12px 24px; /* slightly bigger button */
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #ffb733;
}

    /* ─── HERO ────────────────────────────────────────── */
    .hero {
      background: var(--navy);
      position: relative; overflow: hidden;
      padding: 6.5rem 3rem 5.5rem;
      min-height: 540px;
      display: flex; align-items: center;
    }

    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(200,133,31,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,133,31,0.08) 1px, transparent 1px);
      background-size: 52px 52px;
    }

    .hero-ring1 {
      position: absolute; right: -100px; top: -100px;
      width: 520px; height: 520px;
      border: 90px solid rgba(200,133,31,0.05);
      border-radius: 50%;
    }

    .hero-ring2 {
      position: absolute; right: 60px; top: 60px;
      width: 260px; height: 260px;
      border: 1.5px solid rgba(200,133,31,0.14);
      border-radius: 50%;
    }

    .hero-ring3 {
      position: absolute; right: 110px; top: 110px;
      width: 160px; height: 160px;
      border: 1px solid rgba(200,133,31,0.08);
      border-radius: 50%;
    }

    .hero-ghost {
      position: absolute; right: 120px; top: 50%;
      transform: translateY(-50%);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 180px; font-weight: 800;
      color: rgba(255,255,255,0.022);
      letter-spacing: -10px; user-select: none;
    }

    .hero-content { position: relative; max-width: 680px; }

    .hero-eyebrow {
      font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.3rem;
      display: flex; align-items: center; gap: 10px;
    }

    .hero-eyebrow::before {
      content: ''; display: block;
      width: 34px; height: 2px; background: var(--gold);
    }

    .hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(38px, 5.5vw, 62px);
      font-weight: 800; line-height: 1.04;
      color: #fff; text-transform: uppercase;
      margin-bottom: 1.6rem; letter-spacing: 0.02em;
    }

    .hero h1 em { color: var(--gold); font-style: normal; }

    .hero-sub {
      font-size: 15px; font-weight: 300; line-height: 1.8;
      color: rgba(255,255,255,0.58);
      max-width: 530px; margin-bottom: 2.2rem;
    }

    .hero-badges {
      display: flex; flex-wrap: wrap; gap: 14px;
      margin-bottom: 2.8rem;
    }

    .h-badge {
      display: flex; align-items: center; gap: 8px;
      font-size: 11.5px; font-weight: 600; letter-spacing: 0.07em;
      text-transform: uppercase; color: rgba(255,255,255,0.82);
    }

    .h-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--gold); flex-shrink: 0;
    }

    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

    .btn-p {
      background: var(--gold); color: var(--navy);
      font-family: 'Barlow', sans-serif;
      font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 14px 30px;
      border: none; cursor: pointer; transition: background 0.2s;
    }

    .btn-p:hover { background: var(--gold2); }

    .btn-o {
      background: transparent; color: #fff;
      font-family: 'Barlow', sans-serif;
      font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 13px 30px;
      border: 1.5px solid rgba(255,255,255,0.28);
      cursor: pointer; transition: all 0.2s;
    }

    .btn-o:hover { border-color: var(--gold); color: var(--gold); }

    /* ─── CERT STRIP ──────────────────────────────────── */
    .cert-strip {
      background: var(--navy3);
      padding: 14px 3rem;
      display: flex; align-items: center; justify-content: center;
      gap: 2rem; flex-wrap: wrap;
      border-top: 1px solid rgba(255,255,255,0.055);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .cert-item {
      display: flex; align-items: center; gap: 9px;
    }

    .cert-ico {
      width: 30px; height: 30px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 9px; font-weight: 800; flex-shrink: 0;
    }

    .ci-biz  { background: #B71C1C; color: #fff; }
    .ci-iso  { background: #0D47A1; color: #fff; font-size: 8px; }
    .ci-env  { background: #1B5E20; color: #fff; font-size: 8px; }
    .ci-asp  { background: #01579B; color: #fff; font-size: 8px; }

    .cert-label {
      font-size: 11px; font-weight: 600;
      color: rgba(255,255,255,0.52);
      letter-spacing: 0.05em;
      line-height: 1.3;
    }

    .cert-label strong {
      display: block; font-weight: 700;
      color: rgba(255,255,255,0.75); font-size: 12px;
    }

    .cert-div {
      width: 1px; height: 28px;
      background: rgba(255,255,255,0.08);
    }

    /* ─── STATS BAR ───────────────────────────────────── */
    .stats-bar {
      background: var(--gold);
      display: flex; justify-content: center; flex-wrap: wrap;
    }

    .stat-item {
      padding: 1.6rem 3rem; text-align: center;
      border-right: 1px solid rgba(11,27,46,0.16);
    }

    .stat-item:last-child { border-right: none; }

    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 30px; font-weight: 800;
      color: var(--navy); line-height: 1;
    }

    .stat-lbl {
      font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(11,27,46,0.58); margin-top: 5px;
    }

    /* ─── SECTION COMMONS ────────────────────────────── */
    section { padding: 5.5rem 3rem; }

    .cx { max-width: 1180px; margin: 0 auto; }

    .s-tag {
      font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 1rem;
    }

    .s-tag::before { content: ''; width: 26px; height: 2px; background: var(--gold); }

    .s-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800; text-transform: uppercase;
      color: var(--navy); letter-spacing: 0.02em;
      line-height: 1.1; margin-bottom: 1rem;
    }

    .s-sub {
      font-size: 15px; font-weight: 300; line-height: 1.75;
      color: var(--ts); max-width: 560px; margin-bottom: 3rem;
    }

    /* ─── ABOUT ───────────────────────────────────────── */
    .about-wrap { background: var(--off); }

    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: start;
      max-width: 1080px; margin: 0 auto;
    }

    .ind-list {
      display: flex; flex-direction: column;
      gap: 8px; margin-top: 1.6rem;
    }

    .ind-item {
      display: flex; align-items: center; gap: 12px;
      font-size: 13.5px; font-weight: 500; color: var(--tm);
      padding: 11px 16px; background: #fff;
      border-left: 3px solid var(--gold);
    }

    .ind-item .icon { color: var(--gold); font-size: 14px; }

    .about-panel {
      background: var(--navy);
      padding: 2.8rem; position: relative; overflow: hidden;
    }

    .about-panel::before {
      content: ''; position: absolute;
      top: -48px; right: -48px;
      width: 200px; height: 200px;
      border: 2px solid rgba(200,133,31,0.12);
      border-radius: 50%;
    }

    .about-panel::after {
      content: ''; position: absolute;
      bottom: -30px; left: -30px;
      width: 120px; height: 120px;
      border: 1px solid rgba(200,133,31,0.07);
      border-radius: 50%;
    }

    .qm {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 80px; font-weight: 800;
      color: var(--gold); opacity: 0.2;
      line-height: 0.75; display: block;
      margin-bottom: 1.1rem; position: relative;
    }

    .about-panel p {
      font-size: 14px; font-weight: 300; line-height: 1.9;
      color: rgba(255,255,255,0.68);
      position: relative; z-index: 1;
      margin-bottom: 1.4rem;
    }

    .about-panel p:last-child { margin-bottom: 0; }

    /* ─── SERVICES ────────────────────────────────────── */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
      gap: 1.5px; background: var(--border);
      border: 1.5px solid var(--border);
      max-width: 1180px; margin: 0 auto;
    }

    .svc-card {
      background: #fff;
      padding: 2.1rem 1.8rem;
      border: 1px solid var(--border); /* ✅ each card border */
      transition: all 0.28s;
      height: 100%;
    }

    .svc-card:hover { background: var(--navy); }
    .svc-card:hover .svc-t { color: #fff; }
    .svc-card:hover .svc-d { color: rgba(255,255,255,0.52); }
    .svc-card:hover .svc-ico { border-color: var(--gold); background: rgba(200,133,31,0.1); }

    .svc-ico {
      width: 48px; height: 48px;
      border: 1.5px solid rgba(200,133,31,0.28);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.3rem; transition: all 0.28s; font-size: 20px;
    }

    .svc-t {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 17px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.03em;
      color: var(--navy); margin-bottom: 0.65rem;
      transition: color 0.28s;
    }

    .svc-d {
      font-size: 13px; font-weight: 300;
      line-height: 1.72; color: var(--ts);
      transition: color 0.28s;
    }

    .svc-img {
      width: 64px;
      height: 64px;
      border: 1.5px solid rgba(200,133,31,0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.3rem;
      transition: all 0.28s;
      background: #fff;
    }

    .svc-img img {
      width: 28px;
      height: 28px;
      object-fit: contain;
    }
    /* Outer Gold Frame */
    .svc-frame {
      background: linear-gradient(135deg, #c8851f, #e0b45c);
      padding: 2px; /* thickness of gold border */
    }

    /* Inner Card */
    .svc-inner {
      background: #f3f3f3;
      padding: 14px;
      height: 100%;
    }

    /* Image */
    .svc-img-top img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    /* Content */
    .svc-content {
      padding: 18px 6px 10px;
    }

    /* Title */
    .svc-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.05em;
      margin-bottom: 10px;
    }

    /* Description */
    .svc-desc {
      font-size: 14px;
      color: #6b7280; /* softer gray like screenshot */
      line-height: 1.7;
    }

    .svc-card:hover .svc-img {
      border-color: var(--gold);
      background: rgba(200,133,31,0.1);
    }

    .svc-ft { background: var(--navy); }
    .svc-ft .svc-t { color: #fff; }
    .svc-ft .svc-d { color: rgba(255,255,255,0.5); }
    .svc-ft .svc-ico { border-color: var(--gold); background: rgba(200,133,31,0.12); }

    /* ─── CAPABILITIES ────────────────────────────────── */
    .cap-wrap { background: var(--navy); }
    .cap-wrap .s-title { color: #fff; }
    .cap-wrap .s-sub { color: rgba(255,255,255,0.46); }

    .cap-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 1.6rem; max-width: 1180px; margin: 0 auto;
    }

    .cap-card { border: 1px solid rgba(200,133,31,0.2); padding: 1.8rem; }

    .cap-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14.5px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.07em;
      color: var(--gold); margin-bottom: 1.15rem;
      display: flex; align-items: center; gap: 8px;
    }

    .cap-title::after {
      content: ''; flex: 1; height: 1px;
      background: rgba(200,133,31,0.18);
    }

    .cap-list { list-style: none; }

    .cap-list li {
      font-size: 13px; font-weight: 300; line-height: 1.6;
      color: rgba(255,255,255,0.6);
      padding: 6px 0;
      border-bottom: 1px solid rgba(255,255,255,0.055);
      display: flex; align-items: flex-start; gap: 9px;
    }

    .cap-list li:last-child { border-bottom: none; }

    .cdot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--gold); flex-shrink: 0; margin-top: 6px;
    }

    /* ─── FACILITIES ──────────────────────────────────── */
    .fac-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2rem; max-width: 900px; margin: 0 auto;
    }

    .fac-card { border: 1.5px solid var(--border); overflow: hidden; }

    .fac-head { background: var(--navy); padding: 1.2rem 1.5rem; }

    .fac-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px; font-weight: 700;
      text-transform: uppercase; color: #fff; letter-spacing: 0.04em;
    }

    .fac-addr {
      font-size: 11.5px; color: rgba(255,255,255,0.42);
      margin-top: 4px; font-weight: 300; line-height: 1.5;
    }

    .fac-body { padding: 1.2rem 1.5rem; }

    .fac-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.07);
      font-size: 13px;
    }

    .fac-row:last-child { border-bottom: none; }
    .fac-lbl { color: var(--ts); font-weight: 300; }
    .fac-val {
      font-weight: 600; color: var(--navy);
      font-family: 'Barlow Condensed', sans-serif; font-size: 15px;
    }

    .fac-office {
      max-width: 900px; margin: 1.8rem auto 0;
      border: 1.5px solid var(--border); overflow: hidden;
      display: grid; grid-template-columns: auto 1fr;
    }

    .fac-office .fac-head { display: flex; align-items: center; padding: 1.4rem 1.75rem; }
    .fac-office .fac-body { display: flex; align-items: center; padding: 1.4rem 1.75rem; }
    .fac-office .fac-body p { font-size: 14px; font-weight: 300; color: var(--ts); line-height: 1.65; }


   /* Section */
.fac-sec {
  background: #f8f9fb;
  padding: 80px 0;
}

/* MAP CARD */
.map-card {
  position: relative;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.map-card img {
  width: 100%;
  display: block;
}

/* PINS */
.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: center;
}

/* inner circle */
.map-pin::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}

.map-pin:hover {
  transform: translate(-50%, -50%) scale(1.3);
}

/* Pin positions (adjust slightly if needed) */
.pin-1 { top: 75%; left: 23%; }
.pin-2 { top: 50%; left: 25%; }
.pin-3 { top: 55%; left: 23%; }

/* LOCATION LIST */
.fac-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fac-item {
  background: #fff;
  padding: 18px 20px;
  border: 1px solid rgba(0,0,0,0.06);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover */
.fac-item:hover {
  border-left: 3px solid var(--gold);
  background: #fcfcfc;
}

/* Active */
.fac-item.active {
  border-left: 3px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* TEXT */
.fac-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.fac-item p {
  font-size: 13.5px;
  color: #6b7280;
  margin: 0;
}

/* ===== PRODUCTS SECTION ===== */

.products-section {
  background: #f4f1ec;
  padding: 80px 0;
  text-align: center;
}

/* TITLES */
.section-tag {
  color: #c58a2b;
  letter-spacing: 2px;
  font-weight: 600;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  color: #0b1b2e;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 600px;
  margin: auto;
  color: #6c7a89;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.product-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CURVE (DOWNWARD) */
.product-img::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;

  border-bottom-left-radius: 100% 80px;
  border-bottom-right-radius: 100% 80px;
}

/* ICON */
.product-icon {
  width: 70px;
  height: 70px;
  background: #0b1b2e;
  color: #c58a2b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;

  position: absolute;
  top: 240px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* BODY */
.product-body {
  padding: 70px 25px 30px;
}

.product-body h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0b1b2e;
  margin-bottom: 10px;
}

.product-body p {
  font-size: 14px;
  color: #6c7a89;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-main {
  display: inline-block;
  padding: 10px 22px;
  background: #0b1b2e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-main:hover {
  background: #c58a2b;
}


/* ─── WHY US ──────────────────────────────────────── */
    .why-grid {
      display: flex; flex-wrap: wrap;
      gap: 2rem; justify-content: center;
      max-width: 940px; margin: 0 auto;
    }

    .why-item {
      display: flex; align-items: flex-start; gap: 14px;
      flex: 1 1 255px;
    }

    .why-n {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 50px; font-weight: 800;
      color: var(--gold); opacity: 0.18;
      line-height: 0.88; flex-shrink: 0;
    }

    .why-tt { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 5px; }
    .why-td { font-size: 13px; font-weight: 300; color: var(--ts); line-height: 1.65; }

 /* ─── CONTACT ─────────────────────────────────────── */
    .cont-wrap { background: var(--navy); padding: 5.5rem 3rem; }
    .cont-wrap .s-title { color: #fff; }
    .cont-wrap .s-tag { justify-content: center; }
    .cont-wrap .s-title { text-align: center; }

    .cont-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2rem; max-width: 860px; margin: 0 auto;
    }

    .cont-card { border: 1px solid rgba(200,133,31,0.28); padding: 2rem 2.2rem; }

    .cont-card-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.12em;
      color: var(--gold); margin-bottom: 1.3rem;
    }

    .cont-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px; font-weight: 700;
      color: #fff; text-transform: uppercase;
      letter-spacing: 0.03em; margin-bottom: 3px;
    }

    .cont-role {
      font-size: 10.5px; font-weight: 700; letter-spacing: 0.13em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .cont-row {
      display: flex; align-items: center; gap: 10px;
      font-size: 13.5px; font-weight: 300;
      color: rgba(255,255,255,0.72); margin-bottom: 0.6rem;
    }

    .cont-row a {
      color: rgba(255,255,255,0.72); text-decoration: none;
      transition: color 0.2s;
    }

    .cont-row a:hover { color: var(--gold); }
    .c-ico { color: var(--gold); font-size: 13px; flex-shrink: 0; }

    .addr-lbl {
      font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 5px; margin-top: 1.1rem;
    }

    .addr-lbl:first-child { margin-top: 0; }

    .addr-val {
      font-size: 13.5px; font-weight: 300;
      line-height: 1.7; color: rgba(255,255,255,0.62);
    }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer {
      background: #060E19;
      padding: 1.3rem 3rem;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 10px;
    }

    .f-logo {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14.5px; font-weight: 800;
      color: rgba(255,255,255,0.28);
      letter-spacing: 0.06em; text-transform: uppercase;
    }

    .f-logo em { color: rgba(200,133,31,0.55); font-style: normal; }

    .f-uen { font-size: 11px; color: rgba(255,255,255,0.18); font-weight: 300; }

    .f-copy { font-size: 11px; color: rgba(255,255,255,0.2); font-weight: 300; }

    /* ─── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 820px) {
      nav { padding: 0 1.5rem; }
      .nav-links { display: none; }
      .hero { padding: 4.5rem 1.5rem 4rem; }
      section { padding: 4rem 1.5rem; }
      .about-grid { grid-template-columns: 1fr; gap: 2rem; }
      .fac-grid { grid-template-columns: 1fr; }
      .fac-office { grid-template-columns: 1fr; }
      .cont-grid { grid-template-columns: 1fr; }
      .cert-strip { gap: 1.2rem; padding: 14px 1.5rem; }
      footer { padding: 1.2rem 1.5rem; }
    }


    .whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

.whatsapp-float::after {
  content: "Chat with us";
  position: absolute;
  right: 65px;
  background: #0b1b2e;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  transition: 0.3s;
  white-space: nowrap;
}

.whatsapp-float:hover::after {
  opacity: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* HERO SECTION */
.hero {
  height: 90vh;
  position: relative;
  overflow: hidden;

  background: url('img/banner.jpg') center/cover no-repeat;
}

/* DARK OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 46, 0.85);
  z-index: 1;
}

/* GRID OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
}

/* SLIDER */
.hero-slider {
  display: flex;
  height: 100%;
  transition: transform 0.7s ease;
  position: relative;
  z-index: 3;
}

.slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  padding: 0 8%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

/* CONTENT */
.content {
  max-width: 650px;
}

.tag {
  color: #f0a500;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 2px;
}

h1, h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 800;
}

h1 span, h2 span {
  color: #f0a500;
}

.desc {
  color: #d9e1ea;
  margin-bottom: 18px;
  line-height: 1.6;
}

.features {
  list-style: none;
  margin-bottom: 25px;
}

.features li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  color: #ffffff;
}

.features li::before {
  content: "•";
  color: #f0a500;
  position: absolute;
  left: 0;
}

/* BUTTONS */
.actions {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.primary {
  background: #f0a500;
  color: #000;
}

.primary:hover {
  background: #ffb733;
}

.outline {
  border: 1px solid #fff;
  color: #fff;
}

.outline:hover {
  background: #fff;
  color: #000;
}

/* NAV */
.nav {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 4;
}

.nav button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 14px;
  margin-left: 8px;
  cursor: pointer;
}

.nav button:hover {
  background: #f0a500;
  border-color: #f0a500;
  color: #000;
}