* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0A1628;
  --royal: #1B3A8C;
  --gold: #F5A623;
  --teal: #3A8A85;
  --green: #1DB07A;
  --offwhite: #F8F9FC;
  --charcoal: #0D0D0D;
  --gray: #6B7280;
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html,body {
  scroll-behavior: smooth;
  
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.7s var(--ease),
      transform 0.7s var(--ease);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .d1 {
    transition-delay: 0.1s;
  }
  .d2 {
    transition-delay: 0.2s;
  }
  .d3 {
    transition-delay: 0.3s;
  }
  .d4 {
    transition-delay: 0.4s;
  }
  .d5 {
    transition-delay: 0.5s;
  }
  a{
    text-decoration: none;
  }


/* =============================================
   NAVIGATION
============================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 2vw, 48px);
  transition: background 0.4s, box-shadow 0.4s;
  background-color: transparent;
}

#nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  border-bottom: 1px solid white;
}

#nav.scrolled .hamburger span { background: #ffffff; }

.hamburger span {
  width: 24px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-logo-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-logo-wrap img { height: 44px; width: auto; }

.nav-logo-wrap .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 7px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.btn-apply {
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 7px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-apply:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(245,166,35,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* DRAWER */
#drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1100;
  padding: 20px 0 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s ease-in-out;
  will-change: transform;
}

#drawer.open { transform: translateX(0); }

#drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 12px 28px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}

.drawer-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

.drawer-cta { margin: 24px 28px 0; }

.drawer-cta a {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: 8px;
}
.nav-logo-pill{
  /* background:#ffffff; */
  border-radius:10px;
  padding:6px 16px;
  display:flex;
  align-items:center;
  /*box-shadow:0 2px 12px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.6);*/
}
.nav-logo-pill img{height:70px;width:auto;display:block;}
.scrolled > .nav-logo-pill img{height:60px;}
.scrolled > .nav-logo-pill.logo {
    height: 50px;
}

footer{background:var(--navy);padding:60px 40px 32px;color:rgba(255,255,255,.65);}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 2fr;gap:40px;margin-bottom:40px;}
.footer-brand .nav-logo{margin-bottom:16px;}
.footer-brand p{font-size:14px;line-height:1.7;max-width:280px;}
.footer-col h4{font-size:13px;font-weight:700;color:#fff;letter-spacing:.08em;text-transform:uppercase;margin-bottom:16px;}
.footer-col a{display:block;font-size:14px;color:rgba(255,255,255,.55);margin-bottom:10px;transition:color .2s;}
.footer-col a:hover{color:#fff;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;font-size:13px;}
.footer-bottom a{color:rgba(255,255,255,.4);transition:color .2s;}
.footer-bottom a:hover{color:#fff;}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:580px){
  .footer-grid{grid-template-columns:1fr;}
  footer{padding:48px 20px 24px;}
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-apply { padding: 9px 14px !important; }
}
   @media (max-width: 600px) {
    .btn-apply {
      display: none !important;
    }
    .nav-logo-wrap img {
      height: 36px !important;
    }
  }
/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  color: #fff;
  text-align: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero p {
  font-family: var(--font-heading);
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 500;
  color: rgba(255,255,255,.85);
  max-width: 600px;
}

/* ── SECTION HEADINGS ── */
section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--navy);
}
section > p.section-sub {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 600px;
}

/* ── STATS ── */
.stats-section {
  background: var(--charcoal);
  color: #fff;
  padding: 60px 20px;
}
.stat-card { text-align: center; padding: 12px; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 54px);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 600;
  color: rgba(255,255,255,.75);
}

/* ── RECRUITERS ── */
.recruiters-section { padding: 70px 20px; }
.recruiters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.recruiter-pill {
  /*background: linear-gradient(135deg, var(--navy), var(--royal));*/
  color: #fff;
  padding: 14px 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  cursor: default;
}
.recruiter-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(245,166,35,.25);
}

/* ── SECTOR CHART ── */
.sector-section {
  background: var(--offwhite);
  padding: 70px 20px;
}
.chart-row { margin-bottom: 28px; }
.chart-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  flex-wrap: wrap;
  gap: 4px;
}
.chart-bar-bg {
  background: #e2e8f0;
  border-radius: 8px;
  height: 28px;
  overflow: hidden;
}
.chart-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.chart-bar.animated { width: var(--target-width); }

/* ── SUCCESS STORIES ── */
.stories-section { padding: 70px 20px; }
.story-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .3s ease, transform .3s ease;
  height: 100%;
}
.story-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  transform: translateY(-6px);
}
.story-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}
.story-meta {
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 14px;
}
.story-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.story-role { font-size: 13px; color: var(--gray); }

/* ── DOWNLOAD CTA ── */
.download-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.download-cta h2 { color: #fff; margin-bottom: 16px; }
.download-cta p {
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

/* ── APPLY CTA ── */
.apply-cta {
  background: linear-gradient(135deg, var(--navy), var(--royal));
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.apply-cta h2 { color: #fff; margin-bottom: 14px; }
.apply-cta p {
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  font-size: 16px;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  font-family: var(--font-heading);
  text-decoration: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,.35);
  color: var(--navy);
}

/* ── WHATSAPP FAB ── */
.fab-chat {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fab-chat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 576px) {
  .hero { padding: 80px 16px 50px; }
  .recruiters-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .recruiter-pill { padding: 10px 8px; font-size: 11px; }
  .fab-chat { padding: 11px 15px; font-size: 12px; bottom: 18px; right: 18px; }
  .stats-section { padding: 40px 16px; }
}
@media (max-width: 360px) {
  .recruiters-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ≤ 480px: auto-fit grids force single column */
@media (max-width: 480px) {
  div[style*="minmax(320px"],
  div[style*="minmax(280px"],
  div[style*="minmax(240px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ≤ 360px: WhatsApp floating button shrinks */
@media (max-width: 360px) {
  div[onclick*="wa.me"] {
    padding: 10px 14px !important;
    font-size: 12px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
}
/* --- ≤ 768px: footer grid collapses, footer padding shrinks --- */
  @media (max-width: 768px) {
    footer {
      padding: 40px 20px 24px !important;
    }
    footer > div[style*="2fr 1fr 1fr 1fr"] {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
    }
  }

  /* --- ≤ 600px: hero, section padding, tab buttons, specialisations, footer bar --- */
  @media (max-width: 600px) {
    /* Specialisations grid: force 2 columns on mobile */
    div[style*="minmax(180px,1fr)"] {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    /* Footer bottom bar: stack items vertically */
    footer > div[style*="justify-content:space-between"] {
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
    }
  
  }

  /*****************Footer Social Links*******************/

.footer-social h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #fff;
    color: #000;
}

/**************************************Employer section***************************************************/
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.benefit-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.benefit-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.recruiter-form {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(27, 58, 140, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, var(--gold), #ff9e42);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s var(--ease);
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

@media (max-width: 900px) {  

  .recruiter-form {
    padding: 28px;
  }
}