/* Roohi public website — extracted from index.html's inline <style>
   on 2026-07-25 so nine pages share one cached stylesheet.
   Tokens live in :root; edit here, never in a generated .html. */

:root {
  --navy: #0F2D5E;
  --navy-mid: #1A4080;
  --blue: #2874BB;
  --blue-light: #3B8FD4;
  --sky: #4AAEE0;
  --sky-light: #7DCAEE;
  --sky-pale: #D6EEF9;
  --white: #FFFFFF;
  --off-white: #F7FAFC;
  --light: #EEF4FA;
  --light-mid: #E0ECF8;
  --text-dark: #0F2D5E;
  --text-mid: #2C4A6E;
  --text-muted: #5A7494;   /* 4.6:1 on white — #6B84A3 was 3.85:1, a WCAG AA fail */
  --text-light: #9DB4CC;
  --border: #D6E4F0;
  --serif: 'Playfair Display', Georgia, serif;
  --display: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; font-size: 16px; }

/* <picture> is only a wrapper for choosing a WebP source — it must not become a
   layout box, or the <img> inside stops being the flex/grid item and rules like
   flex-shrink:0 on the MEA badge silently stop applying. */
picture { display: contents; }

/* Tap feedback. The site had 46 :hover rules and NOT ONE :active rule — and a
   touchscreen has no hover, so every button gave a phone user zero response on
   press. That is why the registration form needs a double-submit guard: people
   tap again because nothing happened. One rule covers every control. */
.btn, .nav-register, .nav-cta, .nav-links li a, .filter-btn, .job-apply-btn,
.pf-btn, .pag-btn, .hcc-btn, .rm-chip, .nav-burger, .social-btn {
  -webkit-tap-highlight-color: transparent;
}
.btn:active, .nav-register:active, .nav-cta:active, .nav-links li a:active,
.filter-btn:active, .job-apply-btn:active, .pf-btn:active, .pag-btn:active,
.hcc-btn:active, .rm-chip:active, .nav-burger:active, .social-btn:active {
  transform: scale(0.97);
  filter: brightness(0.93);
}
@media (prefers-reduced-motion: reduce) {
  .btn:active, .nav-register:active, .nav-cta:active, .nav-links li a:active,
  .filter-btn:active, .job-apply-btn:active, .pf-btn:active, .pag-btn:active,
  .hcc-btn:active, .rm-chip:active, .nav-burger:active, .social-btn:active {
    transform: none;
  }
}

/* ─── PAGE SYSTEM ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--navy);
  padding: 9px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}
.topbar-left { display: flex; align-items: center; gap: 6px; }
.topbar-left::before { content: ''; width: 6px; height: 6px; background: var(--sky); border-radius: 50%; }
.topbar-right { display: flex; gap: 28px; align-items: center; }
.topbar-right a { color: rgba(255,255,255,0.75); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar-right a:hover { color: var(--sky-light); }
.topbar-right span { color: rgba(255,255,255,0.25); }

/* ─── NAV ─── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; }
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--sky) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
}
.logo-text { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); line-height: 1.15; }
.logo-text span { display: block; font-size: 11px; font-weight: 400; font-family: var(--sans); color: var(--text-muted); letter-spacing: 0.05em; margin-top: 1px; }
.nav-links { display: flex; gap: 4px; align-items: center; list-style: none; margin-left: auto; }
.nav-links li a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-links li a:hover { background: var(--light); color: var(--blue); }
.nav-links li a.active { color: var(--blue); background: var(--light); }
.nav-cta { background: var(--navy) !important; color: white !important; border-radius: 6px !important; padding: 10px 20px !important; }
.nav-cta:hover { background: var(--blue) !important; }
/* Register is no longer inside .nav-links, so it carries its own base styles
   rather than inheriting them — and no longer needs !important to win. */
.nav-register {
  background: var(--sky); color: #fff; border-radius: 6px; padding: 10px 18px;
  font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap;
  flex-shrink: 0; transition: background .2s, transform .2s;
}
.nav-register:hover { background: var(--blue); transform: translateY(-1px); }
.nav-register:focus-visible, .nav-burger:focus-visible,
.nav-links li a:focus-visible, .logo-wrap:focus-visible {
  outline: 3px solid var(--sky); outline-offset: 2px;
}

/* Hamburger — hidden until the row stops fitting (see the 900px block below). */
.nav-burger {
  display: none; width: 44px; height: 44px; flex-shrink: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; padding: 0;
}
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── HEADER ON SMALL SCREENS ───
   The nav row needs 1243px to lay out: 9 links, a Get in Touch button and
   Register, flex-nowrap. Below 900px the links move into a panel behind the
   hamburger and Register stays in the bar, so the conversion path survives.
   Breakpoint is 900 rather than 760 because at 768px and even 1024px the
   Register button was still off-screen. */
@media (max-width: 900px) {
  nav { padding: 0 16px; gap: 10px; height: 64px; }
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; margin-left: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white); padding: 8px 10px 12px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15,45,94,.14);
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  /* 48px rows — the 33px desktop links were below the 44px touch minimum. */
  .nav-links li a { display: block; padding: 13px 14px; font-size: 15px; border-radius: 8px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .nav-register { font-size: 12px; padding: 10px 14px; }
  .topbar { padding: 8px 16px; }
  .topbar-left { display: none; }          /* marketing tagline — the contact links earn the space */
  .topbar-right { width: 100%; justify-content: center; gap: 14px; flex-wrap: wrap; }
}

/* ─── FOOTER ─── */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 72px 48px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-icon { background: rgba(255,255,255,0.1); margin-bottom: 16px; }
.footer-brand .logo-text { color: white; font-size: 20px; }
.footer-brand .logo-text span { color: var(--sky-light); }
.footer-desc { font-size: 13px; line-height: 1.85; color: rgba(255,255,255,0.5); margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sky); margin-bottom: 20px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; cursor: pointer; }
.footer-col ul li a:hover { color: var(--sky-light); }
.footer-col ul li span { font-size: 13px; color: rgba(255,255,255,0.55); display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 13px; transition: all 0.2s; cursor: pointer; }
.social-btn:hover { border-color: var(--sky); color: var(--sky); }

/* ─── UTILITIES ─── */
.section { padding: 46px 48px; }
.section-sm { padding: 72px 48px; }
.container { max-width: 1200px; margin: 0 auto; }
.eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 14px; display: block; }
.section-title { font-family: var(--serif); font-size: clamp(26px, 2.8vw, 40px); font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--blue); }
.section-title.light { color: white; }
.section-title.light em { color: var(--sky-light); }
.section-body { font-size: 16px; color: var(--text-mid); max-width: 580px; line-height: 1.85; }
.section-body.light { color: rgba(255,255,255,0.65); }
.divider { width: 40px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--sky)); margin: 20px 0 28px; border-radius: 2px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; font-size: 13px; font-weight: 600; font-family: var(--sans); text-decoration: none; border-radius: 8px; cursor: pointer; transition: all 0.25s; border: none; letter-spacing: 0.02em; }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: var(--navy); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-sky { background: var(--sky); color: white; }
.btn-sky:hover { background: var(--blue-light); }
.tag { display: inline-flex; align-items: center; gap: 6px; background: var(--light); color: var(--blue); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; padding: 6px 14px; border-radius: 20px; text-transform: uppercase; }
.tag::before { content: ''; width: 5px; height: 5px; background: var(--sky); border-radius: 50%; }

/* ─── PAGE HERO ─── */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%); padding: 34px 48px 30px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; right: -120px; top: -120px; width: 480px; height: 480px; border: 80px solid rgba(74,174,224,0.07); border-radius: 50%; }
.page-hero::after { content: ''; position: absolute; right: 80px; bottom: -60px; width: 240px; height: 240px; border: 40px solid rgba(74,174,224,0.05); border-radius: 50%; }
.page-hero-inner { max-width: 800px; position: relative; z-index: 2; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 20px; letter-spacing: 0.05em; }
.breadcrumb span { color: var(--sky-light); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 46px); font-weight: 600; color: white; line-height: 1.1; margin-bottom: 20px; }
.page-hero h1 em { font-style: italic; color: var(--sky-light); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.8; max-width: 600px; margin-bottom: 36px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.fade-up { animation: fadeUp 0.7s ease both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.35s; }
.d4 { animation-delay: 0.5s; }
.d5 { animation-delay: 0.65s; }

/* ══════════════════
   HOME PAGE
══════════════════ */

/* Hero */
.hero {
  background: var(--navy);
  min-height: auto;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-circle-1 { position: absolute; right: -60px; top: -80px; width: 520px; height: 520px; border: 70px solid rgba(74,174,224,0.06); border-radius: 50%; }
.hero-circle-2 { position: absolute; right: 120px; bottom: -100px; width: 320px; height: 320px; border: 40px solid rgba(40,116,187,0.08); border-radius: 50%; }
.hero-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.04); }
.hero-content { padding: 40px 64px 40px 48px; position: relative; z-index: 2; }
.hero-right { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: center; padding: 48px; }
.hero-visual {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 26px 30px;
  backdrop-filter: blur(8px);
}
.hero-visual-title { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sky); margin-bottom: 14px; font-weight: 600; }
.hero-stat-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hero-stat-row:last-child { border-bottom: none; }
.hsr-label { font-size: 13px; color: rgba(255,255,255,0.55); }
.hsr-val { font-family: var(--serif); font-size: 28px; font-weight: 600; color: white; }
.hsr-val span { font-size: 16px; color: var(--sky); }
.hero-cta-card { background: linear-gradient(135deg, var(--blue), var(--sky)); border-radius: 12px; padding: 18px 20px; margin-top: 16px; }
.hcc-label { font-size: 12px; color: rgba(255,255,255,0.75); margin-bottom: 8px; letter-spacing: 0.05em; }
.hcc-number { font-family: var(--serif); font-size: 22px; font-weight: 600; color: white; margin-bottom: 14px; }
.hcc-btn { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: white; padding: 10px 20px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; transition: background 0.2s; display: inline-block; }
.hcc-btn:hover { background: rgba(255,255,255,0.25); }
.hero-title { font-family: var(--serif); font-size: clamp(40px, 4.5vw, 66px); font-weight: 700; color: white; line-height: 1.08; margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--sky-light); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.85; max-width: 480px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust { display: flex; align-items: center; gap: 16px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.ht-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px 16px; font-size: 11px; color: rgba(255,255,255,0.6); text-align: center; }
.ht-badge strong { display: block; font-size: 13px; color: white; margin-bottom: 2px; }
.ht-badge span { display: block; font-size: 11px; color: rgba(255,255,255,0.55); }

/* ─── HERO ON SMALL SCREENS ───
   Must sit AFTER the .hero rules above: a media query adds no specificity, so
   an earlier @media block loses to a later plain rule. (It did — the first
   attempt at this was placed with the nav overrides and silently did nothing.)

   The hero is a 1fr 1fr grid and .hero is overflow:hidden, so on a phone the
   right column was CLIPPED rather than wrapped: "15,000+ Professionals Placed",
   the strongest proof on the page, was sliced off mid-number. Stack it instead. */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 28px 20px 8px; }
  .hero-right { padding: 8px 20px 32px; height: auto; }
  .hero-visual { max-width: 100%; }
  .hero-sub { margin-bottom: 26px; max-width: none; }
  .hero-actions { margin-bottom: 32px; gap: 10px; }
  .hero-actions .btn { flex: 1 1 100%; text-align: center; }   /* full-width taps */
  .hero-trust { padding-top: 26px; gap: 12px; flex-wrap: wrap; }
}

/* Marquee */
.marquee-wrap { background: linear-gradient(90deg, var(--blue), var(--sky), var(--blue)); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; animation: marquee 28s linear infinite; width: max-content; }
.marquee-item { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: white; font-weight: 600; padding: 0 36px; display: flex; align-items: center; gap: 36px; white-space: nowrap; }
.marquee-item::after { content: '∞'; font-size: 14px; opacity: 0.5; }

/* About preview */
.about-preview { background: var(--off-white); }
.ap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ap-img-stack { position: relative; height: 520px; }
.ap-img-main {
  width: 76%;
  height: 400px;
  background: linear-gradient(135deg, var(--navy-mid), var(--blue));
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-img-accent {
  width: 54%;
  height: 240px;
  background: linear-gradient(135deg, var(--sky), var(--blue-light));
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 12px;
  border: 6px solid var(--off-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder-text { font-family: var(--serif); font-size: 14px; color: rgba(255,255,255,0.6); text-align: center; padding: 20px; }
.ap-badge { position: absolute; top: 36px; right: 0; background: var(--navy); color: white; padding: 20px 24px; border-radius: 10px; text-align: center; box-shadow: 0 8px 32px rgba(15,45,94,0.3); }
.ap-badge-num { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--sky-light); line-height: 1; }
.ap-badge-label { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.05em; }
.checklist { list-style: none; margin: 24px 0 32px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-mid); margin-bottom: 12px; }
.check-icon { width: 20px; height: 20px; min-width: 20px; background: linear-gradient(135deg, var(--blue), var(--sky)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.check-icon::after { content: '✓'; font-size: 10px; color: white; font-weight: 700; }

/* Trust strip */
.trust-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item { padding: 36px 32px; border-right: 1px solid var(--border); text-align: center; }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.trust-title { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.trust-body { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Services preview */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.svc-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 40px 32px; position: relative; overflow: hidden; transition: all 0.3s; cursor: pointer; }
.svc-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--sky)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.svc-card:hover { background: var(--white); border-color: var(--sky-pale); box-shadow: 0 8px 40px rgba(40,116,187,0.1); transform: translateY(-4px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num { font-size: 11px; letter-spacing: 0.15em; color: var(--sky); font-weight: 600; margin-bottom: 16px; display: block; }
.svc-icon { width: 52px; height: 52px; background: var(--light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.svc-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.svc-body { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.svc-last { background: linear-gradient(135deg, var(--navy), var(--blue)); border: none; }
.svc-last .svc-title { color: white; font-size: 24px; margin-top: 40px; }
.svc-last .svc-body { color: rgba(255,255,255,0.6); }
.svc-last::before { display: none; }
.svc-last:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(15,45,94,0.25); }

/* Destinations */
.destinations { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.dest-card { border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 28px 20px; text-align: center; transition: all 0.3s; cursor: pointer; background: rgba(255,255,255,0.03); }
.dest-card:hover { border-color: var(--sky); background: rgba(74,174,224,0.08); transform: translateY(-3px); }
.dest-flag { font-size: 32px; margin-bottom: 10px; }
.dest-name { font-family: var(--serif); font-size: 17px; color: white; margin-bottom: 6px; font-weight: 500; }
.dest-roles { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.03em; }

/* Process */
.process-section { background: var(--off-white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px; }
.ps-step { text-align: center; position: relative; }
.ps-step:not(:last-child)::after { content: '→'; position: absolute; right: -20px; top: 22px; color: var(--text-light); font-size: 18px; }
.ps-num { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--sky)); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; color: white; font-weight: 600; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(40,116,187,0.3); }
.ps-title { font-family: var(--serif); font-size: 17px; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.ps-body { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* AI Chat section */
.ai-section { background: var(--white); }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ai-visual { background: var(--off-white); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.ai-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.ai-dot { width: 10px; height: 10px; background: var(--sky); border-radius: 50%; }
.ai-title { font-size: 13px; font-weight: 600; color: var(--navy); }
.ai-tag { background: var(--light); color: var(--blue); font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-left: auto; }
.chat-msg { margin-bottom: 14px; }
.chat-msg.bot .bubble { background: var(--light); border-radius: 0 12px 12px 12px; }
.chat-msg.user { text-align: right; }
.chat-msg.user .bubble { background: linear-gradient(135deg, var(--blue), var(--sky)); color: white; border-radius: 12px 0 12px 12px; display: inline-block; }
.bubble { padding: 12px 16px; font-size: 13px; color: var(--text-mid); line-height: 1.6; max-width: 85%; display: inline-block; text-align: left; }
.bubble.user { color: white; }
.chat-label { font-size: 10px; color: var(--text-muted); margin-bottom: 4px; letter-spacing: 0.05em; }
.ai-features { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.ai-feat { display: flex; gap: 14px; align-items: flex-start; }
.af-icon { width: 38px; height: 38px; min-width: 38px; background: var(--light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.af-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.af-body { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Testimonials */
.testimonials { background: var(--off-white); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.test-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 36px 32px; border-top: 3px solid var(--blue); }
.test-stars { color: var(--sky); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.test-body { font-family: var(--serif); font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--sky)); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 15px; font-weight: 600; color: white; }
.test-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.test-role { font-size: 12px; color: var(--text-muted); }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 42px 48px; display: flex; align-items: center; justify-content: space-between; gap: 48px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; border: 60px solid rgba(255,255,255,0.04); border-radius: 50%; }
.cta-text { position: relative; z-index: 2; }
.cta-text h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); color: white; font-weight: 600; line-height: 1.2; margin-bottom: 12px; }
.cta-text h2 em { font-style: italic; color: var(--sky-light); }
.cta-text p { color: rgba(255,255,255,0.6); font-size: 15px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 2; flex-wrap: wrap; }

/* Clients section */
.clients-section { background: var(--white); }
.client-highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin: 48px 0 56px; }
.ch-card { padding: 40px 36px; }
.ch-card:nth-child(1) { background: var(--navy); }
.ch-card:nth-child(2) { background: var(--blue); }
.ch-card:nth-child(3) { background: var(--sky); }
.ch-client { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 10px; font-weight: 500; }
.ch-label { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; margin-bottom: 4px; }
.ch-num { font-family: var(--serif); font-size: 56px; font-weight: 700; color: white; line-height: 1; }
.ch-sub { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; }
.client-logos { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.client-logo-pill { background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 10px 20px; font-size: 12px; font-weight: 600; color: var(--text-mid); white-space: nowrap; transition: all 0.2s; }
.client-logo-pill:hover { border-color: var(--sky); color: var(--blue); background: var(--light); }
/* Google Reviews badge */
.grev-wrap { display: flex; justify-content: center; margin-top: 44px; }
/* colour declared so any text added straight into the badge inherits navy
   instead of the browser's default link blue. Today every child sets its own. */
.grev-badge { display: inline-flex; align-items: center; gap: 18px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 16px 26px; text-decoration: none; color: var(--navy); box-shadow: 0 4px 20px rgba(15,40,80,0.06); transition: transform 0.2s, box-shadow 0.2s; max-width: 100%; }
.grev-badge:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(15,40,80,0.13); }
.grev-g { width: 38px; height: 38px; flex: none; }
.grev-mid { display: flex; flex-direction: column; text-align: left; }
.grev-title { font-size: 15px; font-weight: 600; color: var(--navy); }
.grev-stars { color: #fbbc05; letter-spacing: 3px; font-size: 15px; line-height: 1.4; }
.grev-sub { font-size: 12px; color: var(--text-muted); }
.grev-cta { font-size: 13px; font-weight: 600; color: var(--blue); white-space: nowrap; border-left: 1px solid var(--border); padding-left: 18px; }
.grev-social { font-size: 15px; }
@media (max-width: 620px) { .grev-badge { flex-wrap: wrap; justify-content: center; text-align: center; } .grev-mid { text-align: center; align-items: center; } .grev-cta { border-left: none; padding-left: 0; padding-top: 10px; border-top: 1px solid var(--border); width: 100%; } }
.client-country-group { margin-bottom: 36px; }
.ccg-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 13px; font-weight: 600; color: var(--navy); }
.ccg-flag { font-size: 20px; }

/* ══════════════════
   ABOUT PAGE
══════════════════ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.story-img-wrap { position: relative; }
.story-main-img { width: 100%; height: 460px; background: linear-gradient(135deg, var(--navy), var(--blue-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.story-quote-box { background: var(--navy); border-left: 4px solid var(--sky); padding: 24px 28px; border-radius: 0 8px 8px 0; margin-top: 24px; }
.sqb-text { font-family: var(--serif); font-size: 16px; color: white; line-height: 1.7; font-style: italic; }
.sqb-attr { font-size: 12px; color: var(--sky-light); margin-top: 12px; font-weight: 500; }
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.sb-item { background: var(--navy); padding: 36px 28px; text-align: center; }
.sb-item:nth-child(2) { background: var(--navy-mid); }
.sb-item:nth-child(3) { background: var(--blue); }
.sb-item:nth-child(4) { background: var(--sky); }
.sb-num { font-family: var(--serif); font-size: 44px; font-weight: 700; color: white; line-height: 1; }
.sb-num sup { font-size: 22px; }
.sb-label { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.val-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 36px 28px; transition: all 0.3s; }
.val-card:hover { border-color: var(--sky-pale); box-shadow: 0 4px 24px rgba(40,116,187,0.08); }
.val-icon { font-size: 26px; margin-bottom: 16px; }
.val-title { font-family: var(--serif); font-size: 18px; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.val-body { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.mv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.mv-card { padding: 52px 48px; }
.mv-card:first-child { background: var(--navy); }
.mv-card:last-child { background: var(--off-white); }
.mv-eyebrow { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sky); margin-bottom: 20px; display: block; font-weight: 600; }
.mv-title { font-family: var(--serif); font-size: 26px; font-weight: 600; margin-bottom: 16px; }
.mv-card:first-child .mv-title { color: white; }
.mv-card:last-child .mv-title { color: var(--navy); }
.mv-body { font-size: 15px; line-height: 1.85; }
.mv-card:first-child .mv-body { color: rgba(255,255,255,0.6); }
.mv-card:last-child .mv-body { color: var(--text-mid); }
.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.office-card { border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 32px 28px; }
.office-city { font-family: var(--serif); font-size: 20px; color: white; margin-bottom: 16px; font-weight: 600; }
.office-badge { font-size: 10px; background: rgba(74,174,224,0.2); color: var(--sky-light); padding: 3px 10px; border-radius: 20px; letter-spacing: 0.08em; margin-left: 8px; }
.office-row { display: flex; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 10px; line-height: 1.5; }
.office-row svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; fill: var(--sky); opacity: 0.7; }

/* ══════════════════
   SERVICES PAGE
══════════════════ */
.sector-list { margin-top: 4px; }
.sector-item { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 4px; overflow: hidden; border-radius: 0; }
.sector-item:nth-child(even) .sector-content { order: -1; }
.sector-img-panel { background: linear-gradient(135deg, var(--navy-mid), var(--blue)); min-height: 340px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.sector-img-panel::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,45,94,0.8), rgba(40,116,187,0.4)); }
.sector-img-panel.light-bg { background: linear-gradient(135deg, var(--blue), var(--sky)); }
.sector-img-number { position: absolute; bottom: 24px; right: 24px; font-family: var(--serif); font-size: 80px; font-weight: 700; color: rgba(255,255,255,0.08); line-height: 1; }
.sector-icon-big { font-size: 64px; position: relative; z-index: 2; }
.sector-content { background: var(--off-white); padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.sector-item:nth-child(even) .sector-content { background: var(--navy); }
.sector-item:nth-child(even) .sector-content .sector-title { color: white; }
.sector-item:nth-child(even) .sector-content .sector-body { color: rgba(255,255,255,0.6); }
.sector-item:nth-child(even) .sector-content .sector-tags span { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.12); }
.sector-item:nth-child(even) .sector-content .eyebrow { color: var(--sky-light); }
.sector-num-label { font-size: 11px; letter-spacing: 0.15em; color: var(--sky); font-weight: 600; margin-bottom: 12px; }
.sector-title { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 14px; }
.sector-body { font-size: 14px; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }
.sector-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.sector-tags span { font-size: 11px; padding: 5px 14px; border: 1px solid var(--border); border-radius: 20px; color: var(--text-muted); }
.approval-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.approval-card { background: var(--white); border: 1px solid var(--border); border-bottom: 3px solid var(--blue); border-radius: 10px; padding: 36px 24px; text-align: center; }
.approval-icon { font-size: 30px; margin-bottom: 14px; }
.approval-title { font-family: var(--serif); font-size: 16px; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.approval-body { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.process-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 56px; }
.p5-step { padding: 0 12px; text-align: center; position: relative; }
.p5-step:not(:last-child)::after { content: '→'; position: absolute; right: -10px; top: 22px; color: rgba(255,255,255,0.2); font-size: 16px; }
.p5-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(74,174,224,0.35); display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 18px; }
.p5-title { font-family: var(--serif); font-size: 14px; color: white; margin-bottom: 8px; font-weight: 600; }
.p5-body { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ══════════════════
   EMPLOYER PAGE
══════════════════ */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.diff-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; border-top: 3px solid transparent; transition: all 0.3s; }
.diff-card:hover { border-top-color: var(--blue); box-shadow: 0 4px 24px rgba(40,116,187,0.08); }
.diff-icon { font-size: 28px; margin-bottom: 16px; }
.diff-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.diff-body { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.employer-process { counter-reset: step; }
.ep-step { display: grid; grid-template-columns: 72px 1fr; gap: 24px; align-items: start; padding: 36px 0; border-bottom: 1px solid var(--border); }
.ep-step:last-child { border-bottom: none; }
.ep-num { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--blue)); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; color: white; font-weight: 600; flex-shrink: 0; box-shadow: 0 4px 16px rgba(40,116,187,0.25); }
.ep-content h4 { font-family: var(--serif); font-size: 19px; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.ep-content p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.ep-warning { background: var(--light); border: 1px solid var(--sky-pale); border-left: 4px solid var(--sky); border-radius: 0 8px 8px 0; padding: 20px 24px; margin-top: 16px; }
.ep-warning p { font-size: 13px; color: var(--text-mid); line-height: 1.75; }
.ep-warning strong { color: var(--navy); }
.success-stories { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.ss-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: grid; grid-template-columns: 220px 1fr; }
.ss-left { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 36px 28px; display: flex; flex-direction: column; justify-content: center; }
.ss-client { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.ss-country { font-size: 12px; color: var(--sky-light); margin-bottom: 24px; }
.ss-metric { font-family: var(--serif); font-size: 48px; font-weight: 700; color: white; line-height: 1; }
.ss-metric span { font-size: 24px; color: var(--sky-light); }
.ss-metric-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.ss-right { padding: 36px 32px; }
.ss-right h4 { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 12px; font-weight: 600; }
.ss-right p { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.ss-result { display: flex; gap: 8px; flex-wrap: wrap; }
.ss-tag { background: var(--light); color: var(--blue); font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 20px; }
.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.cred-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 36px 28px; text-align: center; transition: all 0.3s; }
.cred-card:hover { border-color: var(--blue); box-shadow: 0 4px 24px rgba(40,116,187,0.08); }
.cred-img { width: 80px; height: 80px; background: var(--light); border-radius: 10px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.cred-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.cred-issuer { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.cred-num { font-size: 11px; color: var(--sky); font-weight: 500; }
.view-cert-btn { display: inline-block; margin-top: 14px; font-size: 11px; color: var(--blue); font-weight: 600; cursor: pointer; text-decoration: underline; }
.appreciation-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.appr-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; cursor: pointer; transition: all 0.3s; }
.appr-card:hover { box-shadow: 0 4px 24px rgba(40,116,187,0.1); border-color: var(--sky-pale); }
.appr-preview { height: 180px; background: linear-gradient(135deg, var(--navy), var(--blue-light)); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.appr-info { padding: 16px 20px; }
.appr-org { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.appr-country { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.appr-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.appr-view { font-size: 11px; color: var(--blue); font-weight: 600; margin-top: 8px; cursor: pointer; }

/* ══════════════════
   CANDIDATE PAGE
══════════════════ */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.who-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 36px 28px; }
.who-card-title { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 20px; font-weight: 600; }
.who-card-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--blue), var(--sky)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.prof-list { display: flex; flex-wrap: wrap; gap: 8px; }
.prof-tag { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 6px 12px; font-size: 12px; color: var(--text-mid); }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.support-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; display: flex; gap: 16px; align-items: flex-start; transition: all 0.3s; }
.support-card:hover { border-color: var(--sky-pale); box-shadow: 0 4px 20px rgba(40,116,187,0.08); }
.support-icon { width: 44px; height: 44px; min-width: 44px; background: var(--light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.support-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.support-body { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.journey-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; background: var(--off-white); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.js-step { padding: 32px 24px; border-right: 1px solid var(--border); text-align: center; }
.js-step:last-child { border-right: none; }
.js-num { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--sky)); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; color: white; font-weight: 600; margin: 0 auto 16px; }
.js-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.js-body { font-size: 12px; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════
   BROWSE JOBS PAGE
══════════════════ */
.job-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 8px 18px; font-size: 12px; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: white; border-color: var(--navy); }
.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.job-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: all 0.3s; cursor: pointer; }
.job-card:hover { border-color: var(--sky-pale); box-shadow: 0 4px 20px rgba(40,116,187,0.1); transform: translateY(-2px); }
.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.job-title { font-family: var(--serif); font-size: 18px; color: var(--navy); font-weight: 600; }
.job-badge { background: var(--light); color: var(--blue); font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
.job-badge.urgent { background: #FFF0EC; color: #D95A2B; }
/* Employer name + how many seats one card represents */
.job-client { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13px; font-weight: 600; color: var(--blue); margin: -4px 0 10px; }
.job-seats { font-size: 10px; font-weight: 700; letter-spacing: .03em; color: var(--navy); background: var(--light); border: 1px solid var(--border); border-radius: 20px; padding: 2px 9px; }
.job-meta { display: flex; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.jm-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.jm-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sky); }
.job-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.job-tag { background: var(--off-white); border: 1px solid var(--border); border-radius: 4px; padding: 3px 10px; font-size: 11px; color: var(--text-muted); }
.job-apply-btn { background: linear-gradient(135deg, var(--navy), var(--blue)); color: white; border: none; border-radius: 8px; padding: 10px 20px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; width: 100%; font-family: var(--sans); }
.job-apply-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.register-section { background: var(--light); border: 1px solid var(--border); border-radius: 16px; padding: 48px; margin-top: 48px; text-align: center; }
.register-section h3 { font-family: var(--serif); font-size: 28px; color: var(--navy); margin-bottom: 12px; font-weight: 600; }
.register-section p { font-size: 15px; color: var(--text-mid); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.update-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.uc-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; text-align: center; }
.uc-icon { font-size: 32px; margin-bottom: 14px; }
.uc-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.uc-body { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

/* ══════════════════
   CONTACT PAGE
══════════════════ */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px; }
.contact-path { background: var(--off-white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.contact-path.employer { border-top: 4px solid var(--navy); }
.contact-path.candidate { border-top: 4px solid var(--sky); }
.cp-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; display: block; font-weight: 600; }
.cp-label.candidate { color: var(--sky); }
.cp-label.employer { color: var(--navy); }
.cp-title { font-family: var(--serif); font-size: 22px; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.cp-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.contact-detail { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; font-size: 14px; color: var(--text-mid); }
.cd-icon { width: 34px; height: 34px; min-width: 34px; background: var(--light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.contact-form { background: var(--off-white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; margin-top: 48px; }
.cf-title { font-family: var(--serif); font-size: 24px; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.cf-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-note { background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 16px 20px; font-size: 13px; color: var(--text-mid); line-height: 1.6; font-style: italic; }
.channels-table { width: 100%; border-collapse: collapse; margin-top: 28px; }
.channels-table th { text-align: left; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); padding: 10px 16px; border-bottom: 2px solid var(--border); }
.channels-table td { padding: 14px 16px; font-size: 13px; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.channels-table tr:last-child td { border-bottom: none; }
.channels-table .val { color: var(--navy); font-weight: 500; }
.fraud-warning { background: #FFF8EC; border: 1px solid #F5DCA0; border-left: 4px solid #D4960A; border-radius: 0 8px 8px 0; padding: 20px 24px; margin-top: 32px; }
.fw-title { font-size: 13px; font-weight: 700; color: #8B6210; margin-bottom: 6px; }
.fw-body { font-size: 13px; color: #7A6030; line-height: 1.7; }
.map-placeholder { background: var(--light); border: 1px solid var(--border); border-radius: 12px; height: 280px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; margin-top: 20px; }

/* ══════════════════
   FAQ SECTIONS
══════════════════ */
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 12px; }
.faq-q::before { content: 'Q'; width: 24px; height: 24px; min-width: 24px; background: var(--navy); color: white; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; font-family: var(--sans); margin-top: 1px; }
.faq-a { font-size: 14px; color: var(--text-mid); line-height: 1.8; padding-left: 36px; }

/* ══════════════════
   ARABIC SECTION
══════════════════ */
.rooh-meaning { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 64px 48px; text-align: center; }
.arabic-text { font-size: 72px; color: white; line-height: 1; margin-bottom: 12px; font-weight: 300; direction: rtl; }
.arabic-transliteration { font-size: 16px; color: var(--sky-light); letter-spacing: 0.1em; margin-bottom: 8px; font-family: var(--serif); font-style: italic; }
.arabic-meaning { font-size: 14px; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }

/* Page indicator bar */
/* Page switcher bar — removed */

/* ══════════════════════════════
   TEAM & ORG CHART SECTIONS
══════════════════════════════ */

/* --- Org Chart --- */
.org-chart-wrap { margin-top: 56px; overflow-x: auto; padding-bottom: 16px; }
.org-level { display: flex; justify-content: center; gap: 0; position: relative; margin-bottom: 0; }
.org-level + .org-level { margin-top: 0; }

/* Connector lines */
.org-connector-down {
  display: flex; justify-content: center; height: 32px;
}
.org-connector-down::after {
  content: ''; width: 2px; background: var(--border); display: block;
}
.org-connector-spread {
  display: flex; justify-content: center; position: relative;
  height: 32px; margin: 0 auto;
}
.org-connector-spread::before {
  content: ''; position: absolute; top: 0; left: 50%; right: 50%;
  height: 2px; background: var(--border);
  transition: left 0.3s, right 0.3s;
}
.org-connector-spread.cols-3::before { left: 16.7%; right: 16.7%; }
.org-connector-spread.cols-4::before { left: 12.5%; right: 12.5%; }
.org-connector-spread.cols-5::before { left: 10%; right: 10%; }
.org-connector-spread.cols-6::before { left: 8.3%; right: 8.3%; }
.org-connector-spread.cols-7::before { left: 7.1%; right: 7.1%; }

.org-node-wrap { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 0; }
.org-node-wrap .org-vert-line {
  width: 2px; height: 32px; background: var(--border);
}

.org-node {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  width: 140px;
  transition: all 0.25s;
  position: relative;
}
.org-node:hover { border-color: var(--blue); box-shadow: 0 4px 18px rgba(40,116,187,0.12); transform: translateY(-2px); }
.org-node.ceo-node {
  background: var(--navy);
  border-color: var(--navy);
  width: 180px;
  padding: 22px 20px;
}
.org-node.head-node {
  background: linear-gradient(135deg, var(--navy-mid), var(--blue));
  border: none;
  color: white;
  width: 160px;
}
.org-node.senior-node {
  border-top: 3px solid var(--blue);
  background: var(--off-white);
}
.org-node.support-node {
  border-top: 3px solid var(--sky);
  background: var(--white);
}
.org-node.admin-node {
  border-top: 3px solid var(--sky-light);
  background: var(--white);
}
.org-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto 10px;
  overflow: hidden;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; font-family: var(--serif);
  color: var(--blue);
  border: 2px solid var(--border);
}
.ceo-node .org-avatar {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: white; font-size: 22px;
  margin-bottom: 14px;
}
.head-node .org-avatar {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: white;
}
.org-avatar img { width: 100%; height: 100%; object-fit: cover; }
.org-name { font-family: var(--serif); font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 3px; line-height: 1.3; }
.ceo-node .org-name { color: white; font-size: 16px; margin-bottom: 4px; }
.head-node .org-name { color: white; font-size: 14px; }
.org-role { font-size: 10px; color: var(--text-muted); letter-spacing: 0.04em; line-height: 1.4; }
.ceo-node .org-role { color: var(--sky-light); font-size: 11px; }
.head-node .org-role { color: rgba(255,255,255,0.65); font-size: 11px; }
.senior-node .org-role, .support-node .org-role { color: var(--text-muted); }
.org-dept-label {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(74,174,224,0.12); color: var(--blue);
  padding: 2px 7px; border-radius: 10px;
  margin-top: 6px; display: inline-block; font-weight: 600;
}
.ceo-node .org-dept-label { background: rgba(255,255,255,0.12); color: var(--sky-light); }

/* Photo placeholder with upload hint */
.photo-placeholder {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--light), var(--light-mid));
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 11px;
  text-align: center; gap: 4px;
  border: 2px dashed var(--border);
}
.photo-placeholder span { font-size: 22px; }

/* --- Team Grid --- */
.team-section { background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
}
.team-card:hover { box-shadow: 0 6px 28px rgba(40,116,187,0.1); transform: translateY(-3px); border-color: var(--sky-pale); }
.team-photo {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--light), var(--light-mid));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 13px; gap: 8px;
  position: relative; overflow: hidden;
}
.team-photo::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(transparent, var(--white));
}
.team-photo-icon { font-size: 36px; opacity: 0.4; }
.team-photo-hint { font-size: 11px; color: var(--text-light); font-style: italic; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-info { padding: 20px 18px 24px; }
.team-name { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--blue); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 10px; }
.team-dept { display: inline-block; font-size: 10px; background: var(--light); color: var(--text-muted); padding: 3px 10px; border-radius: 20px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.team-bio { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.team-social { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.ts-link { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--text-muted); transition: all 0.2s; cursor: pointer; }
.ts-link:hover { border-color: var(--blue); color: var(--blue); background: var(--light); }

/* Founder card — special treatment */
.team-card.founder {
  grid-column: span 1;
  border-top: 3px solid var(--navy);
}
.team-card.founder .team-photo { height: 240px; background: linear-gradient(135deg, var(--navy), var(--blue)); }
.team-card.founder .team-name { font-size: 20px; }
.team-card.founder .team-role { color: var(--navy); font-size: 13px; }

/* --- Video / Photo Placements (Content Strategy Annotations) --- */
.media-zone {
  border: 2px dashed var(--sky);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(74,174,224,0.04), rgba(40,116,187,0.06));
  padding: 28px 24px;
  margin: 24px 0;
  position: relative;
}
.media-zone-badge {
  position: absolute; top: -11px; left: 20px;
  background: var(--blue); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  padding: 3px 12px; border-radius: 20px;
  text-transform: uppercase;
}
.media-zone-title { font-family: var(--serif); font-size: 18px; color: var(--navy); margin-bottom: 6px; font-weight: 600; }
.media-zone-body { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.media-zone-thumb {
  background: var(--light); border-radius: 10px; height: 180px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--text-muted); font-size: 13px; cursor: pointer;
  border: 1px solid var(--border); transition: all 0.2s;
}
.media-zone-thumb:hover { border-color: var(--sky); background: var(--sky-pale); }
.media-zone-thumb .play-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; box-shadow: 0 4px 16px rgba(40,116,187,0.3);
}
.media-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.testimonial-video-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  transition: all 0.25s; cursor: pointer;
}
.testimonial-video-card:hover { box-shadow: 0 4px 20px rgba(40,116,187,0.1); transform: translateY(-2px); }
.tvc-thumb {
  height: 130px; background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center; position: relative;
}
.tvc-thumb .play-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: white;
}
.tvc-tag { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.4); color: white; font-size: 9px; font-weight: 600; padding: 2px 8px; border-radius: 10px; letter-spacing: 0.06em; }
.tvc-info { padding: 14px; }
.tvc-name { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.tvc-role { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.tvc-quote { font-size: 12px; color: var(--text-mid); line-height: 1.6; font-style: italic; }
.photo-evidence-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px;
}
.pes-item {
  border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, var(--light), var(--light-mid));
  aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 11px; gap: 6px;
  border: 1px solid var(--border); cursor: pointer; transition: all 0.2s;
}
.pes-item:hover { border-color: var(--sky); }
.pes-item span { font-size: 24px; }


/* ══════════════════════════════════════
   OUR PLACEMENTS PAGE
══════════════════════════════════════ */
.placement-filters { display:flex; gap:8px; flex-wrap:wrap; margin:32px 0 24px; }
.pf-btn { background:var(--white); border:1.5px solid var(--border); border-radius:20px; padding:7px 18px; font-size:12px; font-weight:600; color:var(--text-muted); cursor:pointer; transition:all 0.2s; white-space:nowrap; font-family:var(--sans); }
.pf-btn:hover, .pf-btn.active { background:var(--navy); color:white; border-color:var(--navy); }
.placement-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:8px; }
.placement-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  transition:all 0.28s;
  position:relative;
}
.placement-card:hover { box-shadow:0 6px 28px rgba(40,116,187,0.12); transform:translateY(-3px); border-color:var(--sky-pale); }
.pc-photo {
  width:100%; height:210px;
  background:linear-gradient(135deg,var(--light),var(--light-mid));
  position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.pc-photo img { width:100%; height:100%; object-fit:cover; object-position:top; }
.pc-photo-placeholder { 
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px; color:var(--text-muted); font-size:12px; width:100%; height:100%;
  background:linear-gradient(135deg,var(--off-white),var(--light));
}
.pc-photo-placeholder span { font-size:40px; opacity:0.3; }
.pc-country-flag { 
  position:absolute; top:10px; right:10px;
  background:rgba(15,45,94,0.85); backdrop-filter:blur(4px);
  border-radius:20px; padding:4px 10px;
  font-size:12px; color:white; font-weight:600;
  display:flex; align-items:center; gap:5px;
}
.pc-dept-tag {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(transparent,rgba(15,45,94,0.85));
  padding:24px 12px 10px;
  font-size:10px; font-weight:700; letter-spacing:0.08em;
  color:var(--sky-light); text-transform:uppercase;
}
.pc-info { padding:16px 14px 18px; }
.pc-name { font-family:var(--serif); font-size:15px; font-weight:600; color:var(--navy); margin-bottom:3px; }
.pc-role { font-size:12px; color:var(--blue); font-weight:600; margin-bottom:5px; }
.pc-company { font-size:12px; color:var(--text-muted); margin-bottom:10px; display:flex; align-items:center; gap:5px; }
.pc-company::before { content:''; width:4px; height:4px; background:var(--sky); border-radius:50%; flex-shrink:0; }
.pc-meta { display:flex; gap:6px; flex-wrap:wrap; }
.pc-tag { font-size:10px; background:var(--light); color:var(--text-muted); padding:3px 8px; border-radius:10px; font-weight:500; }
.pc-tag.highlight { background:rgba(74,174,224,0.12); color:var(--blue); font-weight:600; }
/* Add new card button */
.placement-card.add-new {
  border:2px dashed var(--border);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  min-height:320px; cursor:pointer; gap:12px;
  background:var(--off-white);
}
.placement-card.add-new:hover { border-color:var(--blue); background:var(--light); }
.add-new-icon { width:52px; height:52px; border-radius:50%; background:var(--light); border:2px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:22px; transition:all 0.2s; }
.placement-card.add-new:hover .add-new-icon { background:var(--blue); border-color:var(--blue); filter:brightness(5); }
.add-new-label { font-size:13px; font-weight:600; color:var(--text-muted); }
.add-new-sub { font-size:11px; color:var(--text-light); }
/* Stats bar */
.placement-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:3px; margin-bottom:48px; }
.pstat { padding:24px; text-align:center; }
.pstat:nth-child(1) { background:var(--navy); }
.pstat:nth-child(2) { background:var(--navy-mid); }
.pstat:nth-child(3) { background:var(--blue); }
.pstat:nth-child(4) { background:var(--sky); }
.pstat-num { font-family:var(--serif); font-size:36px; font-weight:700; color:white; line-height:1; }
.pstat-label { font-size:11px; color:rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:0.08em; margin-top:5px; }
/* Pagination */
.pagination { display:flex; justify-content:center; gap:6px; margin-top:40px; }
.pag-btn { width:36px; height:36px; border-radius:8px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:600; color:var(--text-muted); cursor:pointer; transition:all 0.2s; font-family:var(--sans); background:var(--white); }
.pag-btn:hover, .pag-btn.active { background:var(--navy); color:white; border-color:var(--navy); }
/* Developer instructions panel */
.dev-note { background:#FFFBEC; border:1px solid #F5DCA0; border-left:4px solid #D4960A; border-radius:0 8px 8px 0; padding:18px 22px; margin-bottom:32px; }
.dev-note-title { font-size:12px; font-weight:700; color:#8B6210; margin-bottom:8px; letter-spacing:0.04em; text-transform:uppercase; }
.dev-note ul { margin:0; padding-left:16px; }
.dev-note li { font-size:13px; color:#7A6030; line-height:1.8; }
.dev-note code { background:#F0DFA0; padding:1px 5px; border-radius:3px; font-family:monospace; font-size:12px; }


/* ══════════════════════════════
   VIDEO SECTIONS
══════════════════════════════ */
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 8px 40px rgba(15,45,94,0.25);
}
.video-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
/* Placeholder for when YouTube URL not yet set */
.video-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.video-placeholder:hover { opacity: 0.9; }
.vp-play {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 3px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: all 0.25s;
}
.video-placeholder:hover .vp-play {
  background: rgba(255,255,255,0.25);
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(0,0,0,0.4);
}
.vp-label { font-family: var(--serif); font-size: 16px; color: rgba(255,255,255,0.85); text-align: center; max-width: 280px; line-height: 1.5; }
.vp-sub { font-size: 12px; color: rgba(255,255,255,0.45); text-align: center; }
.vp-tag { background: rgba(74,174,224,0.25); border: 1px solid rgba(74,174,224,0.4); color: var(--sky-light); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; }

/* Opening video on Home hero */
.intro-video-section { background: var(--navy); padding: 80px 48px; }
.intro-video-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; }
.ivg-text {}
.ivg-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky-light); font-weight: 600; margin-bottom: 14px; display: block; }
.ivg-title { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 600; color: white; line-height: 1.2; margin-bottom: 16px; }
.ivg-title em { font-style: italic; color: var(--sky-light); }
.ivg-body { font-size: 15px; color: rgba(255,255,255,0.58); line-height: 1.85; margin-bottom: 28px; }
.ivg-stat-row { display: flex; gap: 28px; }
.ivg-stat { text-align: center; }
.ivg-stat-num { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--sky-light); line-height: 1; }
.ivg-stat-label { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; letter-spacing: 0.05em; }

/* Candidate testimonial videos row */
.candidate-videos-section { background: var(--off-white); }
.cv-videos-note { text-align: center; max-width: 640px; margin: 22px auto 0; font-size: 15px; color: var(--text-mid); background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 14px 20px; }
.cv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.cv-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all 0.28s; }
.cv-card:hover { box-shadow: 0 6px 28px rgba(40,116,187,0.1); transform: translateY(-3px); }
.cv-video { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; background: var(--navy); }
.cv-video iframe, .cv-video .video-placeholder { position: absolute; top:0; left:0; width:100%; height:100%; border:none; border-radius:0; }
.cv-info { padding: 18px 16px 20px; }
.cv-name { font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.cv-role { font-size: 12px; color: var(--blue); font-weight: 600; margin-bottom: 4px; }
.cv-company { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.cv-quote { font-size: 13px; color: var(--text-mid); line-height: 1.7; font-style: italic; border-left: 2px solid var(--sky-pale); padding-left: 10px; }
.cv-country { display: inline-flex; align-items: center; gap: 4px; background: var(--light); color: var(--text-muted); font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 12px; margin-top: 10px; letter-spacing: 0.04em; }


    /* ─── Real Placements gallery ─── */
    .pg-head { margin-bottom: 6px; }
    .pg-privacy { max-width: 760px; margin: 16px auto 0; text-align: center; font-size: 13px; line-height: 1.6; color: var(--text-mid); background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 12px 18px; }
    .pg-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 30px 0 26px; }
    .pg-fbtn { border: 1px solid var(--border); background: #fff; border-radius: 99px; padding: 7px 16px; font: inherit; font-size: 12.5px; font-weight: 600; color: var(--text-mid); cursor: pointer; transition: all .18s; }
    .pg-fbtn:hover { border-color: var(--sky); color: var(--blue); }
    .pg-fbtn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
    .pg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
    .pg-item { margin: 0; border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: 0 2px 12px rgba(15,45,94,.08); background: #fff; transition: transform .2s, box-shadow .2s; }
    .pg-item:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(15,45,94,.16); }
    .pg-item img { width: 100%; height: auto; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
    .pg-count { font-size: 12px; color: var(--text-muted); margin-top: 14px; }
    .pg-lightbox { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(10,25,55,.92); align-items: center; justify-content: center; padding: 24px; }
    .pg-lightbox.open { display: flex; }
    .pg-lightbox img { max-width: min(92vw, 560px); max-height: 90vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
    .pg-lb-close { position: absolute; top: 16px; right: 24px; color: #fff; font-size: 34px; cursor: pointer; line-height: 1; }
    @media (max-width: 600px) { .pg-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; } }

    /* ─── Media gallery (videos) ─── */
    .mg-video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
    .mg-item { margin: 0; cursor: pointer; }
    .mg-thumb { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(15,45,94,.1); background: var(--navy); aspect-ratio: 16 / 9; }
    .mg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
    .mg-item:hover .mg-thumb img, .mg-item:focus-visible .mg-thumb img { transform: scale(1.05); }
    .mg-play { position: absolute; inset: 0; margin: auto; width: 54px; height: 54px; border-radius: 50%; background: rgba(214,32,32,.94); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; padding-left: 4px; box-shadow: 0 4px 20px rgba(0,0,0,.4); transition: transform .2s, background .2s; }
    .mg-item:hover .mg-play, .mg-item:focus-visible .mg-play { transform: scale(1.12); background: #ff0000; }
    .mg-item:focus { outline: none; }
    .mg-item:focus-visible .mg-thumb { outline: 3px solid var(--sky); outline-offset: 2px; }
    .mg-cap { font-size: 13px; color: var(--text-mid); line-height: 1.5; margin-top: 10px; font-weight: 500; }
    .mg-lightbox { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(10,25,55,.94); align-items: center; justify-content: center; padding: 24px; }
    .mg-lightbox.open { display: flex; }
    .mg-lb-inner { position: relative; width: min(92vw, 960px); }
    .mg-lb-frame { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5); background: #000; }
    .mg-lb-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
    .mg-lb-close { position: absolute; top: -42px; right: 0; color: #fff; font-size: 34px; cursor: pointer; line-height: 1; }
    @media (max-width: 600px) { .mg-video-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .mg-cap { font-size: 11px; } .mg-play { width: 42px; height: 42px; font-size: 15px; } }

    /* ─── Credentials (MEA licence) + appreciation letter ─── */
    .cred-mea { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 36px; box-shadow: 0 6px 30px rgba(15,45,94,.07); margin-top: 12px; }
    .cred-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); background: var(--light); border: 1px solid var(--border); border-radius: 20px; padding: 6px 14px; }
    .cred-mea-info h3 { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 28px); color: var(--navy); margin: 14px 0 12px; line-height: 1.25; }
    .cred-mea-info p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
    .cred-facts { list-style: none; padding: 0; margin: 18px 0 0; border-top: 1px solid var(--border); }
    .cred-facts li { display: flex; justify-content: space-between; gap: 16px; font-size: 13.5px; color: var(--navy); font-weight: 600; padding: 11px 0; border-bottom: 1px solid var(--border); }
    .cred-facts li span { color: var(--text-muted); font-weight: 500; flex: none; }
    .cred-docs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .cred-docs figure { margin: 0; cursor: zoom-in; }
    .cred-docs img { width: 100%; height: auto; display: block; border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 4px 18px rgba(15,45,94,.12); transition: transform .2s, box-shadow .2s; }
    .cred-docs figure:hover img { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(15,45,94,.2); }
    .cred-docs figcaption { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 8px; font-weight: 600; }
    .appr-doc-wrap { display: flex; justify-content: center; margin-top: 28px; }
    .appr-doc { margin: 0; max-width: 520px; cursor: zoom-in; background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 16px; box-shadow: 0 6px 30px rgba(15,45,94,.08); transition: transform .2s, box-shadow .2s; }
    .appr-doc:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(15,45,94,.16); }
    .appr-doc img { width: 100%; height: auto; display: block; border-radius: 8px; border: 1px solid var(--border); }
    .appr-doc figcaption { font-size: 13px; color: var(--text-mid); text-align: center; margin-top: 12px; line-height: 1.5; }
    .appr-doc figcaption span { color: var(--text-muted); font-size: 12px; }
    #doc-lightbox { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(10,25,55,.93); align-items: center; justify-content: center; padding: 24px; overflow: auto; }
    #doc-lightbox.open { display: flex; }
    #doc-lightbox img { max-width: min(96vw, 1100px); max-height: 92vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
    #doc-lightbox .doc-lb-close { position: fixed; top: 16px; right: 24px; color: #fff; font-size: 36px; cursor: pointer; line-height: 1; z-index: 1; }
    @media (max-width: 760px) { .cred-mea { grid-template-columns: 1fr; gap: 26px; padding: 24px; } }

    /* ─── Mobile rescue for inline grids ───
       221 inline style="" attributes bypass the stylesheet, and several set
       grid-template-columns:repeat(3,1fr) or 1fr 1fr with no breakpoint — at
       360px that renders three ~90px columns. These overrides win because
       !important beats an inline declaration. Remove each rule as the
       corresponding inline style is migrated to a class. */
    @media (max-width: 760px) {
      #page-contact div[style*="repeat(3,1fr)"],
      #page-contact div[style*="repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }
      #page-candidate div[style*="1fr 1fr"],
      #page-employer div[style*="1fr 1fr"],
      #page-about div[style*="1fr 1fr"] { grid-template-columns: 1fr !important; gap: 24px !important; }
      .cred-docs { grid-template-columns: 1fr 1fr; }
    }

    /* ─── Wider team roster ─── */
    .team-roster { margin-top: 40px; }
    .team-roster-title { font-family: var(--serif); font-size: 20px; color: var(--navy); text-align: center; margin-bottom: 22px; }
    .team-roster-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
    .tr-item { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--sky); border-radius: 8px; padding: 12px 16px; }
    .tr-name { font-size: 14px; font-weight: 600; color: var(--navy); }
    .tr-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
