@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Lato:wght@300;400;700;900&display=swap');

/* ─── DESIGN TOKENS ──────────────────────────── */
:root {
  --white: #ffffff;
  --off: #f5f6f8;
  --navy: #0a1628;
  --navy-mid: #102040;
  --navy-light: #1a3464;
  --green: #6CB785;
  --green-light: #8ad4a0;
  --body: #3a4a5c;
  --muted: #6b7c93;
  --border: #e3e8f0;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', system-ui, sans-serif;
  --nav-h: 88px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --t: 0.3s var(--ease);
  --shadow: 0 2px 24px rgba(10,22,40,0.09);
  --shadow-h: 0 10px 48px rgba(10,22,40,0.16);
  --glass-bg: rgba(8, 16, 32, 0.55);
  --glass-border: rgba(255, 255, 255, 0.09);
}

/* ─── RESET ──────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ─── FIX: body gets navy as the true fallback ── */
/* Only one body block — the transparent override below was causing the grey flash */
body {
  background: var(--navy);
  color: var(--body);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { display: block; max-width: 100%; }
button { font-family: var(--font-sans); cursor: pointer; }

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 12px;
}
.eyebrow.light { color: rgba(255,255,255,0.55); }

.section-title {
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.display-headline {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.06;
}
.display-headline em { font-style: italic; color: var(--green); }
.display-headline.light { color: var(--white); }

.section-head { margin-bottom: 56px; }

.gold-bar {
  width: 48px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 28px 0;
}

/* ─── BUTTONS ────────────────────────────────── */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.cta-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,22,40,0.25);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.38);
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.cta-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  padding: 13px 32px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t), color var(--t), transform var(--t);
}
.cta-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.cta-outline.small { padding: 10px 24px; font-size: 11px; }

.cta-white {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--navy);
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t), transform var(--t);
  margin-top: 32px;
}
.cta-white:hover { background: var(--off); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════
   DYNAMIC ISLAND NAVBAR
   ─────────────────────────────────────────────────────
   STATE 1 — .navbar             : full-width, transparent (page top)
   STATE 2 — .navbar.island      : small centred pill (on scroll)
   STATE 3 — .navbar.island.open : expanded pill (clicked)
   Back to island: user scrolls OR clicks outside
═══════════════════════════════════════════════════════ */

/* ── BASE — page top, full-width ── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: transparent;
  border-radius: 0;
  /* All morphing props listed explicitly — no shorthand */
  transition:
    background      0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius   0.5s cubic-bezier(0.4, 0, 0.2, 1),
    height          0.5s cubic-bezier(0.4, 0, 0.2, 1),
    max-width       0.5s cubic-bezier(0.4, 0, 0.2, 1),
    top             0.5s cubic-bezier(0.4, 0, 0.2, 1),
    left            0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform       0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow      0.5s cubic-bezier(0.4, 0, 0.2, 1),
    width           0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding         0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, border-radius, height, background, width;
}


/* ── STATE 2: ISLAND — compact pill, centred ── */
.navbar.island {
  background: rgba(10, 20, 40, 0.85);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: 100px;
  height: 52px;
  width: 260px;              /* island is narrow — just the logo */
  max-width: 260px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  top: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0) inset,
    0 12px 40px rgba(0, 0, 0, 0),
    0 0 0 0.5px rgba(108, 183, 133, 0);
  overflow: hidden;
  cursor: pointer;
}

/* Island inner — centre logo only */
.navbar.island .nav-inner {
  padding: 0 20px;
  gap: 0;
  height: 52px;
  justify-content: center;
}

/* Hide links + lang in island state */
.navbar.island .nav-links,
.navbar.island .lang-toggle,
.navbar.island .hamburger { display: none; }

/* Shrink logo in island */
.navbar.island .logo-gif { width: 140px; }

/* Subtle green pulse ring on island to hint it's interactive */
.navbar.island::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid rgba(108, 183, 133, 0);
  transition: border-color 0.4s ease;
}
.navbar.island:hover::before {
  border-color: rgba(108,183,133,0.3);
}

/* ── STATE 3: ISLAND.OPEN — expanded pill ── */
.navbar.island.open {
  width: auto;
  max-width: 860px;
  height: 64px;
  border-radius: 100px;
  cursor: default;
  background: rgba(8, 16, 32, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0) inset,
    0 20px 60px rgba(0, 0, 0, 0),
    0 0 0 1px rgba(108, 183, 133, 0);
  overflow: visible; /* allow dropdowns to escape */
}

.navbar.island.open .nav-inner {
  padding: 0 28px;
  gap: 24px;
  height: 64px;
  justify-content: space-between;
}

/* Show links and lang in open state */
.navbar.island.open .nav-links {
  display: flex;
  gap: 24px;
  opacity: 0;
  animation: fadeInLinks 0.3s ease 0.15s forwards;
}

.navbar.island.open .lang-toggle {
  display: flex;
  opacity: 0;
  animation: fadeInLinks 0.3s ease 0.2s forwards;
}

@media (max-width: 768px) {
  .nav-inner {
    position: relative;
    justify-content: center;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* Force island (compact pill) to center the logo naturally */
  .navbar.island .nav-inner {
    justify-content: center;
  }

  /* Remove absolute positioning from the logo when in island mode */
  /* Ensure the logo container fills the pill height and centers the image */
.navbar.island .nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200%;
}

/* Constrain the logo image to fit within the pill */
.navbar.island .logo-gif {
  max-height: 120px;      /* adjust as needed, but keep smaller than pill height (52px) */
  width: auto;
  margin: 0;             /* remove any default margins */
}
.navbar.island .logo-gif {
  transform: translateY(1px);   /* shift down by 1px (use negative to move up) */
}

  /* Optionally hide the hamburger and enquire button on the compact pill */
  .navbar.island .nav-right {
    display: none;
  }

 .navbar.island.open {
    max-width: 260px !important;
    width: 260px !important;
    height: 52px !important;
  }

  .navbar.island.open .nav-inner {
    justify-content: center !important;
    gap: 0 !important;
    padding: 0 20px !important;
  }

  /* Hide all expanded content */
  .navbar.island.open .nav-links,
  .navbar.island.open .lang-toggle,
  .navbar.island.open .enquire-btn {
    display: none !important;
  }

  /* Keep the logo centered */
  .navbar.island.open .logo-gif {
    width: 140px !important;
  }
.navbar.island.open .logo-gif { width: 160px; }

/* Stagger the links fading in */
@keyframes fadeInLinks {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── INNER CONTAINER base ── */
.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  transition: padding 0.45s ease, gap 0.45s ease, height 0.45s ease;
}

/* ── LOGO ── */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-gif {
  width: 200px; height: auto; object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(108,183,133,0.15));
  transition: width 0.45s ease, filter 0.3s ease;
}
.nav-logo:hover .logo-gif { filter: drop-shadow(0 0 18px rgba(108,183,133,0.35)); }

/* ── NAV LINKS ── */
.nav-links {
  display: flex; align-items: center; gap: 32px;
  flex: 1; justify-content: center;
  transition: gap 0.4s ease;

}
.enquire-btn {
  pointer-events: auto;  /* already true, but safe */
  position: relative;
  z-index: 10;           /* ensure it's above any overlay */
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.82);
  display: flex; align-items: center; gap: 4px;
  padding: 6px 0; position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--green); border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links > li > a:hover::after { width: 100%; }
.nav-links > li > a:hover { color: var(--green-light); }

/* ── CHEVRON ── */
.chevron { transition: transform 0.3s ease; flex-shrink: 0; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }
/* Remove divider lines between dropdown items */
.drop-simple a + a {
  border-top: none !important;
}

/* Remove any focus outline (dashed ring) from dropdown links */
.drop-simple a:focus,
.mega-drop a:focus,
.drop-simple a:active,
.mega-drop a:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Optional: also remove borders from the dropdown container itself */
.drop-simple,
.mega-drop {
  border: 1px solid rgba(255, 255, 255, 0.15); /* keep a subtle border, or set to none */
}

/* If you want no border at all on the dropdown panel */
.drop-simple,

.mega-drop {
  border: none !important;
}
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Create a transparent bridge that extends from the nav link to the dropdown */
/* Base dropdown container */
.has-dropdown {
  position: relative;
}

/* Shared hidden state for simple dropdown & mega menu */
.drop-simple,
.mega-drop {
  position: absolute;
  top: 100%;
  left: 50%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  /* Start slightly lower and invisible */
  transform: translateX(-50%) translateY(12px);
  transition: visibility 0.2s ease, opacity 0.2s ease, transform 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  
  /* Optional: add subtle backdrop or shadow */
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.08));
}

/* Hover state – reveal with elegant upward movement */
.has-dropdown:hover .drop-simple,
.has-dropdown:hover .mega-drop,
.has-dropdown:focus-within .drop-simple,
.has-dropdown:focus-within .mega-drop {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(8px); /* final position (adjust to your liking) */
}

/* Optional: micro‑adjust for right‑aligned mega menus (if needed) */
.mega-drop {
  width: max-content;
  max-width: 90vw;
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
}

/* Small screen fallback – disable complex transforms */
@media (max-width: 768px) {
  .drop-simple,
  .mega-drop {
    left: 0;
    transform: translateX(0) translateY(12px);
    width: 100%;
  }
  .has-dropdown:hover .drop-simple,
  .has-dropdown:hover .mega-drop {
    transform: translateX(0) translateY(8px);
  }
}

/* The bridge – invisible area that fills the gap */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 30px;        /* covers the gap between link and dropdown */
  background: transparent;
  z-index: 9;
}

/* Ensure the dropdown can overlap the bridge */
.drop-simple, .mega-drop {
  position: absolute;
  top: calc(100% + 30px);  /* match the bridge height */
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

/* On hover over the nav link OR the bridge OR the dropdown, show dropdown */
.has-dropdown:hover .drop-simple,
.has-dropdown:hover .mega-drop,
.has-dropdown:hover::after + .drop-simple {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Also make sure the dropdown itself doesn't disappear when hovered */
.drop-simple:hover,
.mega-drop:hover {
  opacity: 1;
  pointer-events: all;
}

/* ── DROPDOWNS — frosted glass white (not blue) ──
   Both .drop-simple and .mega-drop get the same glass treatment
── */
.drop-simple,
.mega-drop {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);

  /* FROSTED GLASS — white tinted, not dark blue */
  background: 
  rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.1);

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow:
    0 0 0 0.5px rgba(255,255,255,0.1) inset,
    0 24px 64px rgba(0,0,0,0.35),
    0 1px 0 rgba(255,255,255,0.12) inset;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 1000;
}

.has-dropdown:hover .drop-simple,
.has-dropdown:hover .mega-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Only show dropdowns when island is open */
.navbar.island:not(.open) .drop-simple,
.navbar.island:not(.open) .mega-drop {
  display: none;
}

/* Dropdown links */
.drop-simple { padding: 10px 0; min-width: 220px; }
.drop-simple a {
  display: block; padding: 11px 22px;
  font-size: 13px; font-weight: 600;
  color: rgba(255, 255, 255, 0.88);    /* white text on glass */
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
  cursor: pointer;
}
.drop-simple a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  padding-left: 28px;
}

/* Divider between items */
.drop-simple a + a {
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* Mega dropdown */
.mega-drop { padding: 24px 0; min-width: 560px; }
.mega-inner { display: grid; grid-template-columns: repeat(2,1fr); padding: 0 8px; }
.mega-col { padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.mega-col:last-child { border-right: none; }
.mega-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-bottom: 12px; }
.mega-link { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-radius: 10px; margin-bottom: 4px; transition: background 0.2s ease; cursor: pointer; }
.mega-link:hover { background: rgba(255,255,255,0.1); }
.mega-icon { font-size: 16px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.mega-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); display: block; }
.mega-sub   { font-size: 11px; color: rgba(255,255,255,0.5); display: block; margin-top: 1px; }

/* ── LANG TOGGLE ── */
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  border: 1px solid rgba(255,255,255,0.2); padding: 5px 12px; border-radius: 100px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.lang-toggle:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }
.lang { color: rgba(255,255,255,0.4); cursor: pointer; transition: color 0.2s ease; }
.lang.active { color: var(--white); }
.lang:hover { color: var(--white); }
.lang-sep { color: rgba(255,255,255,0.2); }

/* ── HAMBURGER (mobile only) ── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s ease; }

/* ── AUTO-HIDE on scroll-down ── */
.navbar.hide-up {
  transform: translateY(-120%);
  pointer-events: none;
}
/* Don't hide the island version — it should stay */
.navbar.island.hide-up {
  transform: translateX(-50%) translateY(-120%);
}
/* Enquire button – always visible, no conflict with lang toggle */
.enquire-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.enquire-btn:hover {
  background: rgba(108, 183, 133, 0.2);
  border-color: #6CB785;
  transform: translateY(-2px);
}

.enquiry-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.enquiry-modal-content {
  background: #0A0C10;
  max-width: 600px;
  width: 90%;
  margin: 40px auto;
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  border: 1px solid rgba(108, 183, 133, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.enquiry-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  font-weight: 300;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.2s;
}
.enquiry-close:hover {
  color: #fff;
}

.enquiry-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.enquiry-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.enquiry-form .form-group {
  margin-bottom: 20px;
}

.enquiry-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6CB785;
  margin-bottom: 6px;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  transition: border-color 0.2s;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: #6CB785;
}

.enquiry-submit {
  background: #6CB785;
  color: #0A0C10;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  margin-top: 8px;
}

.enquiry-submit:hover {
  background: #5aa36d;
  transform: translateY(-2px);
}

.enquiry-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 24px;
}

.enquiry-note a {
  color: #6CB785;
  text-decoration: none;
}

@media (max-width: 768px) {
  .enquiry-modal-content {
    padding: 32px 24px;
    width: 95%;
    margin: 20px auto;
  }
  .enquiry-title {
    font-size: 28px;
  }
}

/* When navbar is scrolled (pill), keep button visible */
.navbar.scrolled .enquire-btn {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}
.navbar.scrolled .enquire-btn:hover {
  border-color: #6CB785;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  @media (max-width: 768px) {
  /* When the navbar becomes a pill (island), center the logo */
  .navbar.island .nav-inner {
    justify-content: center;
  }

  /* Remove absolute positioning that pushes the logo off‑center */
  .navbar.island .nav-logo {
    position: static !important;
    left: auto !important;
    transform: none !important;
    margin: 0;
  }

  /* Hide right‑side elements (hamburger, enquire) inside the pill */
  .navbar.island .nav-right {
    display: none !important;
  }

  /* Ensure the logo image is vertically centered */
  .navbar.island .logo-gif {
    max-height: 120px;
    width: auto;
    display: block;
    margin: 0 auto;
  }
}
  .nav-links, .lang-toggle { display: none; }
  .hamburger { display: flex; }

  @media (max-width: 768px) {
  .nav-right .enquire-btn {
    display: none;
  }
  /* your other mobile rules ... */
}

  /* Island on mobile — slimmer */
  .navbar.island { width: 200px; }
  .navbar.island .logo-gif { width: 120px; }

  /* Open pill on mobile — full width */
  .navbar.island.open {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    left: 50%;
  }
  .navbar.island.open .hamburger { display: flex; }
}

/* ── Mega dropdown — frosted glass ── */
.mega-drop {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  background: rgba(8, 18, 36, 0.72);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(108,183,133,0.08) inset,
    0 20px 60px rgba(0,0,0,0.45),
    0 1px 0 rgba(255,255,255,0.06) inset;
  padding: 28px 0;
  min-width: 640px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.has-dropdown:hover .mega-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 8px;
}

.mega-col {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.mega-col:last-child { border-right: none; }

.mega-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 16px;
}

.mega-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 4px;
  transition: background var(--t);
}
.mega-link:hover { background: rgba(255,255,255,0.07); }

.mega-title { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); }
.mega-sub { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── Simple dropdown ── */
.drop-simple {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  background: rgba(8, 18, 36, 0.72);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(108,183,133,0.08) inset,
    0 20px 60px rgba(0,0,0,0.45);
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.has-dropdown:hover .drop-simple {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.drop-simple a {
  display: block;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: color var(--t), background var(--t);
}
.drop-simple a:hover { color: var(--green-light); background: rgba(255,255,255,0.06); }

/* ── Right side ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}


.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  transition: border-color var(--t), background var(--t);
}
.lang-toggle:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

.lang { color: rgba(255,255,255,0.38); cursor: pointer; transition: color var(--t); }
.lang.active { color: var(--white); }
.lang:hover { color: var(--white); }
.lang-sep { color: rgba(255,255,255,0.18); }

.navbar.scrolled .lang { color: rgba(255,255,255,0.45); }
.navbar.scrolled .lang.active { color: var(--white); }
.navbar.scrolled .lang-sep { color: rgba(255,255,255,0.15); }
.navbar.scrolled .lang-toggle { border-color: rgba(255,255,255,0.15); }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}

/* ─── MOBILE DRAWER ──────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.65);
  z-index: 1800;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
  backdrop-filter: blur(4px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  max-width: 100vw;
  height: 100vh;
  background: rgba(8, 18, 36, 0.97);
  backdrop-filter: blur(24px);
  z-index: 1900;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }



.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.drawer-logo-text { font-size: 20px; font-weight: 700; color: var(--white); }
.drawer-logo-text em { color: var(--green); font-style: normal; }

.drawer-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  line-height: 0;
  transition: color var(--t);
  cursor: pointer;
}
.drawer-close:hover { color: var(--white); }

.drawer-nav { flex: 1; overflow-y: auto; padding: 8px 0; }

.drawer-nav > a,
.drawer-group > summary {
  display: block;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: color var(--t);
  list-style: none;
}
.drawer-nav > a:hover,
.drawer-group > summary:hover { color: var(--white); }
.drawer-group details[open] > summary { color: var(--green); }

.drawer-sub { padding: 8px 0; background: rgba(0,0,0,0.2); }
.drawer-sub a {
  display: block;
  padding: 10px 36px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--t);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.drawer-sub a:hover { color: var(--white); }

.drawer-foot {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.drawer-foot .lang { color: rgba(255,255,255,0.35); cursor: pointer; transition: color var(--t); }
.drawer-foot .lang.active { color: var(--white); }
.drawer-foot .lang-sep { color: rgba(255,255,255,0.15); }

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: left;
  overflow: hidden;
  /* Navy = same as body, video pause shows no colour difference — no blue flash */
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

/* Overlay — keeps video cinematic, unchanged */
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(9, 21, 39, 0.9) 0%,
    rgba(3, 16, 36, 0.6) 55%,
    rgba(2, 10, 22, 0.8) 100%
  );
}
.hero-veil::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, transparent 30%, rgba(2, 8, 18, 0.678) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 820px;
  padding-left: 10%;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.04);
}

/* ── Hero slide panels ── */
.hero-panels {
  position: relative;
  min-height: 220px;
  margin-bottom: 16px;
}

.hero-panel {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.hero-panel.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0);
}

.hero-h1 {
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(8,14,28,0.5);
}
.hero-h1 em { font-style: normal; color: var(--green-light); }

.hero-subline {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--green-light);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 0 40px rgba(108,183,133,0.3);
}

.hero-lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  text-shadow: 0 1px 10px rgba(8,14,28,0.45);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* ── Hero dots ── */
.hero-dots {
  display: flex;
  gap: 10px;
  margin: 24px 0 32px;
  justify-content: flex-start;
  align-items: center;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, width 0.35s var(--ease);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-dots .dot.active {
  background: var(--green-light);
  width: 28px;
  border-radius: 4px;
  border-color: transparent;
  box-shadow: 0 0 12px rgba(138,212,160,0.5);
}

.hero-dots .dot:hover:not(.active) {
  background: rgba(255,255,255,0.5);
  transform: scale(1.15);
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  animation: scrollPulse 2.4s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.scroll-bar {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
}

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ─── TICKER ─────────────────────────────────── */
.ticker-wrap {
  background: #F5F6F8;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid #F5F6F8;
  border-bottom: 1px solid #F5F6F8;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 64px;               /* more space between logos */
  white-space: nowrap;
  width: max-content;
  animation: ticker 32s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.25s ease, transform 0.25s ease;
  filter: none;            /* keep logo original colours */
}

.ticker-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.ticker-item img {
  height: 36px;            /* all logos same height */
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── STATS ──────────────────────────────────── */
.stats-section { background: var(--navy); padding: 72px 0; }

.stats-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 72px;
}

.stat-n {
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.stat-rule { width: 1px; height: 72px; background: rgba(255,255,255,0.08); }

/* ─── ABOUT SECTION (fully responsive) ──────────────────────────── */
.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 200px 0;                /* was 200px – reduced for better spacing */
  overflow-x: hidden;
  width: 100%;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Two columns on tablet/desktop */
@media (min-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding: 0 40px;
  }
}

.about-headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 32px;
}

.about-quote {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  border-left: 4px solid var(--green);
  padding-left: 28px;
  color: var(--navy-light);
  margin: 24px 0;
}

.about-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--body);
  word-wrap: break-word;
}

/* ─── TYPING ANIMATION (mobile safe) ───────────────────────────── */
.about-headline {
  min-height: 180px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.typed-wrapper {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.2;
  max-width: 100%;
}

.typed-text {
  color: var(--navy);
  white-space: normal;           /* allows wrapping on mobile – prevents overflow */
  word-break: break-word;
  display: inline;
}

/* For larger screens, keep one line if desired */
@media (min-width: 769px) {
  .typed-text {
    white-space: nowrap;
  }
}

.typed-cursor {
  font-weight: 300;
  color: var(--navy);
  animation: blink 0.7s step-end infinite;
  margin-left: 4px;
  display: inline-block;
}

/* coloured verbs */
.typed-text .verb-blue {
  color: #1d4ed8;
}
.typed-text .verb-red {
  color: #dc2626;
}
.typed-text .verb-green {
  color: var(--green);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ─── PILLS (fully responsive) ───────────────────────────────── */
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid rgba(108, 183, 133, 0.35);
  background: rgba(108, 183, 133, 0.06);
  color: #3a5a4a;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
}

.about-pill::after {
  content: '→';
  font-size: 12px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.about-pill:hover {
  background: rgba(108, 183, 133, 0.14);
  border-color: rgba(108, 183, 133, 0.7);
  color: #1a3a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(108, 183, 133, 0.15);
}

.about-pill:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Button spacing */
.about-right .cta-outline {
  margin-top: 20px;
}

/* ─── LOGO (left column) ─────────────────────────────────────── */
.about-left-logo {
  margin-top: 40px;
  text-align: left;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 32px;
}

.about-left-logo-img {
  max-width: 300px;
  height: 1000px;
  height: auto;
  transition: opacity 0.2s;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  .about-layout {
    gap: 40px;
  }
  .about-quote {
    font-size: 18px;
    padding-left: 20px;
  }
  .about-description {
    font-size: 16px;
  }
  .about-left-logo-img {
    max-width: 160px;
  }
}
/* ─── SERVICES ───────────────────────────────── */
.services-section { background: var(--off); padding: 120px 0 0; }
.services-section .container { margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.svc-card {
  background: var(--white);
  padding: 52px 44px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
.svc-card:nth-child(3n) { border-right: none; }

.svc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover { background: #fafbfd; }
.svc-card:hover::before { transform: scaleY(1); }

.svc-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  transition: color var(--t);
}
.svc-card:hover .svc-num { color: var(--green); }

.svc-body h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.svc-body p { font-size: 14px; color: var(--body); line-height: 1.75; margin-bottom: 28px; }

.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap var(--t), color var(--t);
  margin-top: auto;
}
.svc-arrow:hover { color: var(--green); gap: 10px; }
.svc-arrow svg { transition: transform var(--t); }
.svc-arrow:hover svg { transform: translateX(3px); }

/* ─── VENTURE BANNER ─────────────────────────── */
.venture-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0d2756 100%);
  padding: 120px 0;
}

.venture-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.venture-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.v-stat {
  padding: 36px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.v-stat:last-child { border-bottom: none; }

.v-num { font-size: 52px; font-weight: 800; color: var(--white); line-height: 1; }
.v-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.38); }

/* ─── CLIENTS ────────────────────────────────── */
.clients-section { background: var(--white); padding: 120px 0; border-top: 1px solid var(--border); }

.clients-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.client-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 116px;
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--t), color var(--t);
}
.client-cell:nth-child(4n) { border-right: none; }
.client-cell:nth-last-child(-n+4) { border-bottom: none; }
.client-cell:hover { background: var(--off); color: var(--navy); }

/* ─── NEWS ───────────────────────────────────── */
.news-section {
  background: var(--off);
  padding: 200px 0;
  position: relative;
  overflow: hidden;
  /* CSS vars updated by JS for mouse tracking */
  --blob-x: 0px;
  --blob-y: 0px;
}

/* Dark foggy blob — top right */
.news-section::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 115, 230, 0.61) 0%, transparent 68%);
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
  transform: translate(var(--blob-x), var(--blob-y));
  transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: newsBlob1 14s ease-in-out infinite;
}

/* Light green foggy blob — bottom right */
.news-section::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 5px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 52, 199, 0.466) 0%, transparent 68%);
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
  /* Green blob moves opposite to dark one */
  transform: translate(calc(var(--blob-x) * -0.5), calc(var(--blob-y) * -0.5));
  transition: transform 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: newsBlob2 11s ease-in-out infinite;
}

/* Blobs slowly drift toward each other */
@keyframes newsBlob1 {
  0%   { translate: 0 0; }
  40%  { translate: -100px 80px; }
  100% { translate: 0 0; }
}
@keyframes newsBlob2 {
  0%   { translate: 0 0; }
  45%  { translate: -80px -60px; }
  100% { translate: 0 0; }
}

/* Everything inside sits above blobs */
.news-section .container,
.news-section .news-head,
.news-section .news-grid {
  position: relative;
  z-index: 1;
}

.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.news-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--t), transform var(--t);
}
.news-card:hover {
  box-shadow: var(--shadow-h);
  transform: translateY(-4px);
}

/* ─── IMAGE STYLES ─── */
.news-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.news-img.sm {
  height: 120px;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-card.small .news-body {
  padding: 20px 24px;
}

.news-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.news-date {
  font-size: 11px;
  color: var(--muted);
}
.news-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: 4px 0 12px;
}
.news-card.small .news-body h3 {
  font-size: 16px;
}

.news-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: gap 0.2s;
}
.news-arrow:hover {
  gap: 10px;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--navy);
}

/* Newsletter / CTA band */
.footer-cta-band {
  background: var(--navy-mid);
  padding: 72px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-cta-inner h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-cta-inner p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

.nl-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.nl-form input {
  padding: 13px 20px;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: 40px 0 0 40px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s;
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.28);
  font-weight: 400;
}

.nl-form input:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

.nl-form button {
  padding: 13px 28px;
  background: var(--green);
  color: var(--navy);
  border: none;
  border-radius: 0 40px 40px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
  cursor: pointer;
}

.nl-form button:hover {
  background: var(--green-light);
}

/* Main footer content */
.footer-main {
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
}

/* Brand column with large logo */
.f-brand {
  max-width: 400px;
}

.footer-nav-logo {
  display: block;
  margin-bottom: 24px;
}

.footer-nav-logo .logo-gif {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(108,183,133,0.14));
}

.f-brand > p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin: 16px 0 24px;
}

.f-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.f-socials a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
}

.f-socials a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer columns */
.f-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
}

.f-col a,
.f-col p {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
  line-height: 1.6;
  transition: color 0.2s;
  text-decoration: none;
}

.f-col a:hover {
  color: var(--white);
}

.f-offices {
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.06em;
  margin-top: 12px;
  color: var(--green) !important;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
}

/* Registration number line */
.registration-number {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 8px;
}

.f-legal {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.f-legal a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
  text-decoration: none;
}

.f-legal a:hover {
  color: var(--white);
}

/* ─── RESPONSIVE (mobile centering, larger gaps) ─── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }
  .nl-form {
    width: 100%;
    flex-direction: column;
  }
  .nl-form input {
    min-width: unset;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    margin-bottom: 12px;
  }
  .nl-form button {
    border-radius: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .f-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-nav-logo {
    display: flex;
    justify-content: center;
  }

  .footer-nav-logo .logo-gif {
    max-width: 240px;
    margin: 0 auto;
  }

  .f-socials {
    justify-content: center;
  }

  .f-col {
    text-align: center;
  }

  .f-col h4 {
    text-align: center;
  }

  .f-col a,
  .f-col p {
    text-align: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .f-legal {
    justify-content: center;
  }
}
/* ═══════════════════════════════════════════════
   DANGOTE-STYLE SCROLL REVEAL SYSTEM
   ─ GPU-only: opacity + transform (compositor)
   ─ No layout thrash, no backdrop-filter on scroll
   ═══════════════════════════════════════════════ */

/* Base hidden state — elements start below + invisible */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  /* Hint to browser: these two props are all we animate */
  will-change: opacity, transform;
}

/* Fired by IntersectionObserver in JS */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto; /* release after animation */
}

/* ── Stagger delays ── */
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
.delay-5 { transition-delay: 0.60s; }

/* ── Slide from left (for images / left-column content) ── */
.reveal-left {
  opacity: 0;
  transform: translateX(-56px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
  will-change: auto;
}

/* ── Slide from right ── */
.reveal-right {
  opacity: 0;
  transform: translateX(56px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  will-change: auto;
}

/* ── Scale-up reveal (for stat numbers, big cards) ── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.94) translateY(32px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  will-change: auto;
}

/* ── Line wipe (Dangote-style heading underline reveal) ── */
.reveal-line {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.reveal-line::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.9s var(--ease-out);
  transition-delay: 0.35s;
}
.reveal-line.visible::after { width: 100%; }

/* ── Clip-path wipe for section title words ── */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.85s var(--ease-out);
  will-change: clip-path;
}
.reveal-clip.visible {
  clip-path: inset(0 0% 0 0);
  will-change: auto;
}

/* ── Number counter flash ── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-n.visible {
  animation: countUp 0.6s var(--ease-out) both;
}

/* ─── LOAD ANIMATION (once, on page enter) ──── */
@keyframes fadeSlideUp {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Used only on about section or hero body */
.animate-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
  .nav-inner { padding: 0 32px; }
  .hero-body { padding-left: 32px; }

  .mega-drop { min-width: 480px; }
  .mega-inner { grid-template-columns: 1fr 1fr; }
  .mega-col:last-child { display: none; }

  .about-layout { grid-template-columns: 1fr; gap: 56px; }
  .venture-inner { grid-template-columns: 1fr; gap: 56px; }
  .venture-stats {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-direction: row;
    flex-wrap: wrap;
  }
  .v-stat { border-right: 1px solid rgba(255,255,255,0.07); border-bottom: none; padding: 28px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat { padding: 0 40px; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .svc-card:nth-child(2n) { border-right: none; }
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links,
  .lang-toggle { display: none; }
  .hamburger { display: flex; }

  /* On mobile, pill is full-width minus margins */
  .navbar.scrolled {
    left: 50%;
    right: auto;
    max-width: calc(100% - 24px);
    
  }

  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-body { padding-left: 20px; }
  .hero-h1 { font-size: clamp(36px, 10vw, 56px); }

  .stats-wrap { padding: 0 20px; }
  .stat { padding: 20px 28px; width: 50%; }
  .stat-rule { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none !important; }

  .clients-rail { grid-template-columns: repeat(2, 1fr); }
  .client-cell:nth-child(4n) { border-right: 1px solid var(--border); }
  .client-cell:nth-child(2n) { border-right: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .nl-form { width: 100%; flex-direction: column; }
  .nl-form input { min-width: unset; border-right: 1px solid rgba(255,255,255,0.12); border-radius: 40px; }
  .nl-form button { border-radius: 40px; margin-top: 8px; }
  .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-layout, .venture-inner { gap: 40px; }
  .venture-stats { flex-direction: column; }
  .v-stat { border-right: none; padding: 24px 0; }
  .news-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .clients-rail { grid-template-columns: 1fr; }
  .stat { width: 100%; }
}

/* ─── REDUCED MOTION — respect user preferences ─ */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-clip,
  .animate-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none;
    transition: none;
  }
  .navbar,
  .navbar.scrolled {
    transition: none;
  }
  .ticker-track {
    animation: none;
  }
  .hero-scroll {
    animation: none;
  }
}




/* ═══════════════════════════════════════════
   INDUSTRIES SECTION
   ═══════════════════════════════════════════ */

.industries-section {
  background: url('gif/landing-DUkGcDcw.gif') center / cover no-repeat;
  position: relative;
  padding: 200px 0;
  isolation: isolate;
}

.industries-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.45);
  z-index: -1;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.ind-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px 40px 64px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  will-change: transform;
  transform: translateZ(0); /* GPU acceleration */
}

.ind-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-color: rgba(108, 183, 133, 0.5);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.ind-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ind-card:hover::after {
  opacity: 1;
}

.ind-icon {
  margin-bottom: 28px;
  color: var(--green);
  width: 36px;
  height: 36px;
}

.ind-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.ind-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.ind-num {
  position: absolute;
  bottom: 18px;
  right: 24px;
  font-size: 52px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  pointer-events: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.ind-card:hover .ind-num {
  color: rgba(108, 183, 133, 0.3);
  transform: scale(1.08) translateY(-2px);
}

.industries-section .section-title {
  color: var(--white);
}

@media (max-width: 1024px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
  .industries-section {
    padding: 60px 0;
  }
}
/* ─── INDUSTRY CARD EXPAND ─────────────────────────────────── */

.ind-grid {
  position: relative;
}

.ind-card {
  cursor: pointer;
}

/* ── Overlay shell ── */
.ind-expanded-overlay {
  position: absolute;
  display: none;
  background: linear-gradient(140deg, rgba(12, 34, 22, 0.98) 0%, rgba(8, 18, 36, 0.98) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(108, 183, 133, 0.4);
  border-radius: 24px;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
               background: rgba(255, 255, 255, 0.08);    /* light translucent white */
  backdrop-filter: blur(8px);               /* frosted glass blur */
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px 40px 64px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Top accent bar */
.ind-expanded-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.8;
}

/* ── Inner content wrapper ── */
.ind-exp-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 60px 64px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  grid-template-columns: 1fr;
  gap: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  box-sizing: border-box;
}

.ind-exp-inner.visible {
  opacity: 1;
}

/* ── Icon ── */
.ind-exp-icon {
  color: var(--green);
  margin-bottom: 20px;
  line-height: 0;
}
.ind-exp-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--green);
}

/* ── Name ── */
.ind-exp-name {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 26px;
  letter-spacing: -0.02em;
}

/* ── Tags row ── */
.ind-exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.ind-exp-tag {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(108, 183, 133, 0.1);
  border: 1px solid rgba(108, 183, 133, 0.32);
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

/* ── Detail paragraph ── */
.ind-exp-detail {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
  max-width: 700px;
  margin: 0 0 40px;
}

/* ── CTA link ── */
.ind-exp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(108, 183, 133, 0);
  transition: border-color 0.2s ease, gap 0.2s ease;
  align-self: end;
}
.ind-exp-cta:hover {
  border-color: var(--green);
  gap: 13px;
}
.ind-exp-cta svg {
  flex-shrink: 0;
}

/* ── Ghost number (decorative) ── */
.ind-exp-bg-num {
  position: absolute;
  bottom: -10px;
  right: 40px;
  font-size: clamp(100px, 14vw, 160px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* ── Close button ── */
.ind-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 12;
  transition: background 0.2s ease,
              border-color 0.2s ease,
              color 0.2s ease,
              transform 0.25s ease;
  flex-shrink: 0;
}
.ind-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  transform: rotate(90deg);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ind-exp-inner {
    padding: 48px 44px;
  }
  .ind-exp-detail {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .ind-exp-inner {
    padding: 52px 28px 36px;
    gap: 0;
  }
  .ind-exp-name {
    font-size: 26px;
    margin-bottom: 18px;
  }
  .ind-exp-tags {
    gap: 8px;
    margin-bottom: 20px;
  }
  .ind-exp-tag {
    font-size: 12px;
    padding: 5px 14px;
  }
  .ind-exp-detail {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 28px;
  }
  .ind-exp-bg-num {
    font-size: 90px;
    right: 20px;
  }
  .ind-close-btn {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }
}

/* ═══════════════════════════════════════════
   PORTFOLIO SECTION  (shared)
═══════════════════════════════════════════ */

.portfolio-section {
  padding: 100px 0;
  background: #F5F6F8;
}

.portfolio-section .section-title {
  color: var(--dark);
}

.portfolio-section .eyebrow {
  color: var(--green);
}


/* ─────────────────────────────────────────
   OPTION A  —  Directory list
───────────────────────────────────────── */

.pf-list {
  margin-top: 56px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.pf-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, padding-left 0.2s ease;
  border-radius: 4px;
}

.pf-row:hover {
  padding-left: 12px;
  background: rgba(108, 183, 133, 0.04);
}

.pf-favicon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  background: #f0f0f0;
}

.pf-row-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pf-domain {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.pf-desc {
  font-size: 13px;
  color: rgba(0,0,0,0.45);
}

.pf-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(108, 183, 133, 0.1);
  border: 1px solid rgba(108, 183, 133, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}

.pf-arrow {
  color: rgba(0,0,0,0.2);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.pf-row:hover .pf-arrow {
  color: var(--green);
  transform: translate(2px, -2px);
}


/* ─────────────────────────────────────────
   OPTION C  —  Card grid
───────────────────────────────────────── */

.pf-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.pf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: border-color 0.22s ease,
              box-shadow 0.22s ease,
              transform 0.22s ease;
  overflow: hidden;
}

.pf-card:hover {
  border-color: rgba(108, 183, 133, 0.5);
  box-shadow: 0 8px 32px rgba(108, 183, 133, 0.1);
  transform: translateY(-3px);
}

/* Top colored bar on hover */
.pf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.pf-card:hover::before {
  transform: scaleX(1);
}

.pf-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Category colour dot */
.pf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Dot colours by category */
.pf-card[data-cat="cyber"]      .pf-dot { background: #6cb785; }
.pf-card[data-cat="compliance"] .pf-dot { background: #4a9eca; }
.pf-card[data-cat="fintech"]    .pf-dot { background: #5b7fe8; }
.pf-card[data-cat="agri"]       .pf-dot { background: #7dc45e; }
.pf-card[data-cat="energy"]     .pf-dot { background: #e8a83a; }
.pf-card[data-cat="consulting"] .pf-dot { background: #b06fdf; }
.pf-card[data-cat="realestate"] .pf-dot { background: #e07a5f; }
.pf-card[data-cat="education"]  .pf-dot { background: #f4a261; }

.pf-cat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

.pf-card-domain {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 4px 0 0;
  line-height: 1.2;
}

.pf-card-desc {
  font-size: 13px;
  color: rgba(0,0,0,0.45);
  line-height: 1.5;
  flex: 1;
}

.pf-card-arrow {
  color: rgba(0,0,0,0.15);
  align-self: flex-end;
  transition: color 0.2s ease, transform 0.2s ease;
}
.pf-card:hover .pf-card-arrow {
  color: var(--green);
  transform: translate(2px, -2px);
}


/* ── Responsive ── */
@media (max-width: 1024px) {
  .pf-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pf-cards {
    grid-template-columns: 1fr;
  }
  .pf-tag {
    display: none;
  }
}

/* ─── FIND US SECTION (Address Cards + Map) ───────────────── */
.find-us-section {
  padding: 80px 0;
  background: #F5F6F8; /* changed to light grey */
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6CB785;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #0A1628; /* dark navy for contrast on light bg */
  line-height: 1.1;
}

/* Map wrapper – reduced image size */
.map-wrapper {
  margin-bottom: 60px;
  border-radius: 24px;
  overflow: hidden;
  max-width: 80%;        /* reduces image width */
  margin-left: auto;
  margin-right: auto;
  /* no shadow */
}

.map-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Address cards grid */
.address-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.address-card {
  background: #FFFFFF;   /* solid white – fully visible on light bg */
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  /* no backdrop-filter, no shadow */
  box-shadow: none;
}

.address-card:hover {
  transform: translateY(-6px);
  background: #FFFFFF;
  border-color: #6CB785;
  box-shadow: none;
}

.card-icon {
  margin-bottom: 24px;
  color: #6CB785;
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.card-city {
  font-size: 24px;
  font-weight: 700;
  color: #0A1628;       /* dark navy text */
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.card-address {
  font-size: 14px;
  line-height: 1.6;
  color: #3a4a5c;       /* dark grey for readability */
  margin-bottom: 20px;
}

.card-country {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6CB785;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
  width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
  .address-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-wrapper {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .find-us-section {
    padding: 60px 0;
  }
  .address-grid {
    grid-template-columns: 1fr;
  }
  .map-wrapper {
    max-width: 100%;
    margin-bottom: 40px;
  }
}
/* Energy page specific styles */
    .energy-hero {
      background: url('img/energy img 1.jpg') center / cover no-repeat;
      background-color: #0A1929;
      position: relative;
      padding: 140px 0 80px;
      overflow: hidden;
    }
    .energy-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(10, 25, 41, 0.65);
      z-index: 1;
    }
    .energy-hero .container {
      position: relative;
      z-index: 2;
    }

    /* Fade-up animation for hero elements */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }

    .energy-badge {
      display: inline-block;
      background: rgba(108, 183, 133, 0.15);
      backdrop-filter: blur(8px);
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #6CB785;
      margin-bottom: 24px;
      border: 1px solid rgba(108, 183, 133, 0.3);
    }
    .energy-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(48px, 7vw, 80px);
      font-weight: 700;
      color: #FFFFFF;
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .energy-lead {
      font-size: 18px;
      line-height: 1.6;
      color: rgba(255,255,255,0.75);
      max-width: 700px;
      margin-bottom: 48px;
    }
    .energy-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 32px;
    }
    .energy-stat {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(8px);
      border-radius: 20px;
      padding: 20px 28px;
      min-width: 160px;
      border: 1px solid rgba(255,255,255,0.1);
      text-align: center;
    }
    .energy-stat-number {
      font-size: 42px;
      font-weight: 800;
      color: #6CB785;
      line-height: 1;
      margin-bottom: 8px;
    }
    .energy-stat-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }
    .energy-detail-section {
      background: var(--white);
      padding: 100px 0;
    }
    .energy-detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .energy-detail-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 24px;
    }
    .energy-detail-left p {
      font-size: 18px;
      line-height: 1.7;
      color: var(--body);
      margin-bottom: 32px;
    }
    .energy-pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 40px;
    }
    .energy-pill {
      background: rgba(108, 183, 133, 0.08);
      border: 1px solid rgba(108, 183, 133, 0.3);
      border-radius: 40px;
      padding: 8px 20px;
      font-size: 14px;
      font-weight: 600;
      color: #2a5a3a;
      transition: all 0.2s;
    }
    .energy-pill:hover {
      background: rgba(108, 183, 133, 0.15);
      border-color: #6CB785;
    }
    .energy-detail-right {
      background: #F5F6F8;
      border-radius: 32px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.05);
    }
    .energy-detail-right .stat-number {
      font-size: 72px;
      font-weight: 800;
      color: rgba(108, 183, 133, 0.15);
      line-height: 1;
      position: absolute;
      bottom: 20px;
      right: 30px;
      pointer-events: none;
    }
    .energy-detail-right h3 {
      font-size: 28px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
    }
    .energy-detail-right p {
      color: var(--body);
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .cta-energy {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--navy);
      color: white;
      padding: 12px 32px;
      border-radius: 40px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
    }
    .cta-energy:hover {
      background: var(--navy-light);
      transform: translateY(-2px);
    }
    @media (max-width: 768px) {
      .energy-detail-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .energy-hero {
        padding: 100px 0 60px;
      }
    }
    .nav-logo {
      position: relative;
      z-index: 20;
      pointer-events: auto !important;
    }
    .navbar {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, opacity 0.3s ease;
  will-change: transform;
}

.navbar.hidden {
  transform: translateY(-110%);
  opacity: 0;
}


/* Cybersecurity page specific styles */
    .cyber-hero {
      background: url('img/cyber img 2.jpg') center / cover no-repeat;
      background-color: #0A1929;
      position: relative;
      padding: 140px 0 80px;
      overflow: hidden;
    }
    .cyber-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(10, 25, 41, 0.65);
      z-index: 1;
    }
    .cyber-hero .container {
      position: relative;
      z-index: 2;
    }

    /* Fade-up animation */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }

    .cyber-badge {
      display: inline-block;
      background: rgba(108, 183, 133, 0.15);
      backdrop-filter: blur(8px);
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #6CB785;
      margin-bottom: 24px;
      border: 1px solid rgba(108, 183, 133, 0.3);
    }
    .cyber-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(48px, 7vw, 80px);
      font-weight: 700;
      color: #FFFFFF;
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .cyber-lead {
      font-size: 18px;
      line-height: 1.6;
      color: rgba(255,255,255,0.75);
      max-width: 700px;
      margin-bottom: 48px;
    }
    .cyber-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 32px;
    }
    .cyber-stat {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(8px);
      border-radius: 20px;
      padding: 20px 28px;
      min-width: 160px;
      border: 1px solid rgba(255,255,255,0.1);
      text-align: center;
    }
    .cyber-stat-number {
      font-size: 42px;
      font-weight: 800;
      color: #6CB785;
      line-height: 1;
      margin-bottom: 8px;
    }
    .cyber-stat-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }
    .cyber-detail-section {
      background: var(--white);
      padding: 100px 0;
    }
    .cyber-detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .cyber-detail-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 24px;
    }
    .cyber-detail-left p {
      font-size: 18px;
      line-height: 1.7;
      color: var(--body);
      margin-bottom: 32px;
    }
    .cyber-pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 40px;
    }
    .cyber-pill {
      background: rgba(108, 183, 133, 0.08);
      border: 1px solid rgba(108, 183, 133, 0.3);
      border-radius: 40px;
      padding: 8px 20px;
      font-size: 14px;
      font-weight: 600;
      color: #2a5a3a;
      transition: all 0.2s;
    }
    .cyber-pill:hover {
      background: rgba(108, 183, 133, 0.15);
      border-color: #6CB785;
    }
    .cyber-detail-right {
      background: #F5F6F8;
      border-radius: 32px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.05);
    }
    .cyber-detail-right .stat-number {
      font-size: 72px;
      font-weight: 800;
      color: rgba(108, 183, 133, 0.15);
      line-height: 1;
      position: absolute;
      bottom: 20px;
      right: 30px;
      pointer-events: none;
    }
    .cyber-detail-right h3 {
      font-size: 28px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
    }
    .cyber-detail-right p {
      color: var(--body);
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .cta-cyber {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--navy);
      color: white;
      padding: 12px 32px;
      border-radius: 40px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
    }
    .cta-cyber:hover {
      background: var(--navy-light);
      transform: translateY(-2px);
    }
    @media (max-width: 768px) {
      .cyber-detail-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .cyber-hero {
        padding: 100px 0 60px;
      }
    }
    .nav-logo {
      position: relative;
      z-index: 20;
      pointer-events: auto !important;
    }
    .navbar {
      transition: transform 0.3s ease, background 0.3s ease;
    }
    .navbar.hidden {
      transform: translateY(-110%);
    }


/* ─── CUSTOM SCROLLBAR ───────────────────────── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0a1628; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #6CB785; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #8ad4a0; }

* { scrollbar-width: thin; scrollbar-color: #6CB785 #0a1628; }


