/* ================================================================
   EDUCATIONPASSAGE — Complete Stylesheet
   Fonts : Inter (body) · Poppins (headings)
   Palette: --navy #1A2E6C · --orange #E8500A · --teal #2E9AC4
   ================================================================ */

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

:root {
  --navy:     #1A2E6C;
  --orange:   #E8500A;
  --teal:     #2E9AC4;
  --light-bg: #F5F8FF;
  --white:    #ffffff;
  --text:     #2D3748;
  --muted:    #6B7280;
  --border:   #E5E7EB;
  --radius:   14px;
  --shadow:   0 4px 24px rgba(26,46,108,0.09);
  --shadow-lg:0 8px 40px rgba(26,46,108,0.14);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Scrollbar ────────────────────────────────── */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }

/* ================================================================
   NAVIGATION
   ================================================================ */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
#main-nav.scrolled { box-shadow: 0 2px 20px rgba(26,46,108,0.13); }

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  gap: 1.5rem;
}

/* Logo */
.nav-logo img { height: auto; width: 130px; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--navy);
  background: var(--light-bg);
}
.nav-links > li > a.active {
  font-weight: 600;
  border-bottom: 2px solid var(--orange);
  border-radius: 8px 8px 0 0;
}

/* Dropdown chevron */
.drop-arrow {
  font-size: 0.6rem;
  transition: transform 0.25s;
  margin-left: 2px;
}
.has-drop:hover .drop-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 50;
}
.has-drop:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.845rem;
  color: var(--muted);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.dropdown li a:hover {
  background: var(--light-bg);
  color: var(--navy);
  padding-left: 18px;
}

/* Right side */
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.865rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #c73e00; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.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); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 800;
  backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* ================================================================
   PAGE HERO BANNER (inner pages)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243680 100%);
  padding: 80px 2rem 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.05);
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 40px solid rgba(232,80,10,0.1);
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb .sep   { color: rgba(255,255,255,0.3); }
.breadcrumb .cur   { color: var(--orange); }
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ================================================================
   SECTION BASE
   ================================================================ */
.section { padding: 80px 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.bg-light { background: #F5FFFD; }

.section-tag {
  display: inline-block;
  background: #F5FFFD;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.section-sub {
  color: #000;
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--navy);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: #0f1d4a;
  border-color: #0f1d4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,46,108,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: 2px solid var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--orange);
  transition: background 0.2s, transform 0.15s;
}
.btn-orange:hover { background: #c73e00; border-color: #c73e00; transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

/* ================================================================
   HOME HERO SLIDER
   ================================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #EEF3FF;
}

/* Track */
.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

/* Individual slide */
.slide {
  min-width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Slide backgrounds */
.slide-1 { background: linear-gradient(135deg, #EEF3FF 0%, #F5F8FF 60%, #FFF4EE 100%); }
.slide-2 { background: #F5FFFD; }
.slide-3 { background: linear-gradient(135deg, #FFF4EE 0%, #FFF9F5 60%, #FFFEF5 100%); }

/* Decorative radial glow per slide */
.slide::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 55%; height: 100%;
  pointer-events: none;
}
.slide-1::after { background: radial-gradient(ellipse at 80% 50%, rgba(232,80,10,0.07) 0%, transparent 70%); }
.slide-2::after { background: radial-gradient(ellipse at 80% 50%, rgba(46,154,196,0.09) 0%, transparent 70%); }
.slide-3::after { background: radial-gradient(ellipse at 80% 50%, rgba(232,80,10,0.06) 0%, transparent 70%); }

.slide-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Slide text */
.slide-text { flex: 1; }
.slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.slide-kicker::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.slide-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.slide-text h1 span { color: var(--orange); }
.slide-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.slide-text h2 span { color: var(--teal); }
.slide-text p {
  font-size: 1.1rem;
  color: #000;
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slide image area */
.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* PLACEHOLDER — replace with <img> tag */
.img-placeholder {
  width: 660px;
  max-width: 100%;
  height: 400px;
  background: linear-gradient(145deg, #dce8ff 0%, #ccdaf7 50%, #d5c9f0 100%);
  border-radius: 50% 40% 60% 35% / 55% 45% 65% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,46,108,0.15);
}
.img-placeholder--rect {
  border-radius: 20px;
  height: 280px;
}
.img-placeholder--oval {
  border-radius: 50%;
  height: 380px;
  width: 380px;
}
.img-placeholder-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 1;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

/* Slide stats row */
.slide-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(26,46,108,0.1);
}
.slide-stat-n {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.slide-stat-l { font-size: 0.75rem; color: var(--muted); margin-top: 3px; }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(26,46,108,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, width 0.3s;
  padding: 0;
}
.slider-dot.active {
  background: var(--orange);
  width: 26px;
  border-radius: 4px;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.slider-arrow:hover { background: var(--orange); color: var(--white); transform: translateY(-50%) scale(1.08); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--orange);
  z-index: 20;
  width: 0%;
  transition: width linear;
}

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.services-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.22s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.service-card p { font-size: .9rem; color: #000; }

/* ================================================================
   JOURNEY STEPS
   ================================================================ */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  z-index: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  max-width: 200px;
}
.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover .step-circle {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(26,46,108,0.18);
}
.step-circle svg { width: 32px; height: 32px; }
.step-num { font-size: 0.7rem; font-weight: 700; color: var(--orange); letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.step h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.step p  { font-size: .9rem; color: #000; }

/* ================================================================
   WHY US
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.22s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon {
  width: 52px; height: 52px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.why-card p  { font-size: .9rem; color: #000; }

/* ================================================================
   MISSION SECTION
   ================================================================ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mission-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.mission-divider {
  width: 48px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.mission-text > p { color: #000; margin-bottom: 1.5rem; line-height: 1.7; }
.mission-values { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.mission-values li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; color: #000; }
.check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-icon svg { width: 11px; height: 11px; }
/* Mission image placeholder */
.mission-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  background: linear-gradient(145deg, #c5daf5 0%, #d9c9f5 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.mission-img-wrap .img-ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(26,46,108,0.4);
  pointer-events: none;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #243680 100%);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  left: -40px; bottom: -80px;
  width: 180px; height: 180px;
  background: rgba(232,80,10,0.1);
  border-radius: 50%;
}
.cta-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 460px; }

/* ================================================================
   SPLIT LAYOUT (services detail / about / etc.)
   ================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-img {
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
  background: linear-gradient(145deg, #dce8ff 0%, #c5daf5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .img-ph-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(26,46,108,0.4);
}

.split-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin: 10px 0 14px;
  line-height: 1.25;
}
.split-text p { #000; margin-bottom: 1.25rem; line-height: 1.75; font-size: 1rem; }
.split-sub { color: var(--orange); font-weight: 600; font-size: 0.9rem; margin-bottom: 14px !important; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.75rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem; color: #000;
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(232,80,10,0.1);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%23E8500A' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  margin-top: 2px;
}

/* ================================================================
   STATS ROW
   ================================================================ */
.stats-band {
  background: var(--navy);
  padding: 48px 2rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.stat-item {
  background: var(--navy);
  padding: 32px 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ================================================================
   CARDS GRID (generic)
   ================================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.22s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-thumb {
  height: 160px;
  background: linear-gradient(135deg, #dce8ff 0%, #c5daf5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(26,46,108,0.4);
}
.card-body { padding: 1.25rem; }
.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(232,80,10,0.1);
  color: var(--orange);
  padding: 2px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 8px;
}
.card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.card p  { font-size: 0.82rem; color: var(--muted); margin-bottom: 12px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--muted); }
.card-read-more { color: var(--orange); font-weight: 600; transition: gap 0.2s; display: inline-flex; align-items: center; gap: 4px; }
.card-read-more:hover { gap: 7px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item.open { box-shadow: var(--shadow); border-color: rgba(26,46,108,0.15); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 14px;
  user-select: none;
}
.faq-q h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.3s;
  font-size: 0.85rem;
  color: var(--navy);
}
.faq-item.open .faq-toggle { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body-inner { padding: 0 22px 18px; font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  background: var(--navy);
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info > p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-detail:first-of-type { border-top: 1px solid rgba(255,255,255,0.08); }
.cd-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.cd-icon i { font-size: 0.9rem; }
.cd-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }
.cd-val { font-size: 0.88rem; font-weight: 500; color: var(--white); margin-top: 2px; }
.cd-val a { color: var(--white); transition: color 0.2s; }
.cd-val a:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-wrap > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,46,108,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #EF4444; }
.form-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* ================================================================
   COUNTRY CARDS
   ================================================================ */
.country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.country-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.22s;
}
.country-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.country-header {
  padding: 24px 20px;
  text-align: center;
}
.country-flag { font-size: 2.8rem; margin-bottom: 8px; }
.country-name { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--white); }
.country-body { padding: 16px 20px; }
.country-row { display: flex; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--light-bg); font-size: 0.82rem; }
.country-row:last-child { border: none; }
.country-key { font-weight: 700; color: var(--orange); min-width: 36px; flex-shrink: 0; }
.country-val { color: var(--muted); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: box-shadow 0.25s, transform 0.22s;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-stars { color: var(--orange); font-size: 0.85rem; margin-bottom: 12px; }
.testi-quote { font-size: 0.9rem; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  flex-shrink: 0;
}
.testi-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 0.75rem; color: var(--muted); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--white);
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}
.footer-container { width: min(1200px, 92%); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { width:130px; margin-bottom: 16px; }
.footer-about-col p {
  color: #000;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 260px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-icon:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 1rem;
  color: #000);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.contact-list i { color: var(--orange); margin-top: 4px; min-width: 16px; font-size: 0.85rem; }
.contact-list span,
.contact-list a { font-size: 1rem; color: #000; transition: color 0.2s; }
.contact-list a:hover { color: var(--orange); }

.footer-bottom {
  background: var(--navy);
  padding: 18px;
  text-align: center;
  margin-top: 0;
}
.footer-bottom p { color: var(--white); font-size: 0.875rem; font-weight: 500; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal      { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-l    { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-r    { opacity: 0; transform: translateX(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in, .reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; }
.d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.35s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .mission-grid, .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-img { height: 260px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .slide-inner { flex-direction: column; text-align: center; }
  .slide-text p { margin-left: auto; margin-right: auto; }
  .slide-btns { justify-content: center; }
  .slide-stats { justify-content: center; }
  .slide-image { display: none; }
  .steps-row { flex-direction: column; align-items: center; }
  .steps-row::before { display: none; }
  .step { max-width: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-about-col p { max-width: 100%; }
  .cta-banner { flex-direction: column; text-align: center; padding: 2rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .slide-text h1 { font-size: 2rem; }
}

/* Mobile nav slide-in */
@media (max-width: 768px) {
  #nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 80px; right: -300px;
    width: 280px;
    height: calc(100dvh - 80px);
    background: var(--white);
    padding: 20px 16px;
    box-shadow: var(--shadow-lg);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    z-index: 850;
    border-left: 1px solid var(--border);
  }
  #nav-links.open { right: 0; }
  #nav-links > li { width: 100%; }
  #nav-links > li > a {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 14px;
    border-radius: 8px;
    justify-content: space-between;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--light-bg);
    border-radius: 8px;
    margin-top: 4px;
    display: none;
  }
  .has-drop.mob-open .dropdown { display: block; }
  .nav-cta {
    display: block;
    margin-top: 14px;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
  #nav-links.open + .nav-right .nav-cta { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
