/* ============================================
   UDAAN INSTITUTE — MAIN STYLESHEET v2
   Fonts: Rajdhani (headings) + Poppins (body)
   Colors: White, Sky Blue, Defence Olive/Khaki
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Sky Blue */
  --sky: #0EA5E9;
  --sky-light: #E0F2FE;
  --sky-dark: #0369A1;
  --sky-mid: #38BDF8;

  /* Defence / Military Colors */
  --defence: #4A5C2F;       /* Olive Green */
  --defence-light: #8B9D4E; /* Lighter olive */
  --defence-dim: #EEF0E8;   /* Pale olive bg */
  --defence-gold: #C9A227;  /* Military gold */
  --khaki: #B5A642;

  /* Neutrals */
  --navy: #0F1E35;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --grey-soft: #F1F5F9;
  --grey-mid: #CBD5E1;
  --grey-text: #64748B;
  --dark-text: #1E293B;

  --shadow: 0 4px 20px rgba(14,165,233,0.10);
  --shadow-lg: 0 12px 40px rgba(15,30,53,0.14);
  --shadow-def: 0 4px 20px rgba(74,92,47,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}
h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: 0.3px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(14,165,233,0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--defence), var(--sky-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.logo-text h2 {
  font-size: 1.2rem; color: var(--navy);
  font-weight: 700; line-height: 1.1;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
}
.logo-text span {
  font-size: 0.62rem; color: var(--sky);
  font-family: 'Poppins', sans-serif; font-weight: 500;
}
.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links a {
  padding: 7px 13px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 0.88rem;
  color: var(--grey-text); transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.nav-links a:hover, .nav-links a.active { color: var(--sky); background: var(--sky-light); }
.nav-links .btn-nav {
  background: linear-gradient(135deg, var(--defence), var(--defence-light));
  color: var(--white) !important;
  padding: 8px 18px !important; border-radius: 6px !important;
  font-weight: 600 !important;
}
.nav-links .btn-nav:hover { background: linear-gradient(135deg, var(--sky-dark), var(--sky)) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px;
}
.nav-toggle span {
  display: block; width: 25px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer; transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--sky); color: var(--white); border-color: var(--sky); }
.btn-primary:hover { background: var(--sky-dark); border-color: var(--sky-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,165,233,0.30); }
.btn-defence { background: var(--defence); color: var(--white); border-color: var(--defence); }
.btn-defence:hover { background: #3a4824; border-color: #3a4824; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,92,47,0.30); }
.btn-outline { background: transparent; color: var(--sky); border-color: var(--sky); }
.btn-outline:hover { background: var(--sky); color: var(--white); transform: translateY(-2px); }
.btn-outline-def { background: transparent; color: var(--defence); border-color: var(--defence); }
.btn-outline-def:hover { background: var(--defence); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--sky-light); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.30); }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 80px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: var(--sky-light); color: var(--sky-dark);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px; margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}
.section-label.def { background: var(--defence-dim); color: var(--defence); }
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700; margin-bottom: 14px;
  font-family: 'Rajdhani', sans-serif;
}
.section-title span { color: var(--sky); }
.section-title span.def { color: var(--defence); }
.section-sub { font-size: 0.97rem; color: var(--grey-text); max-width: 580px; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--sky), var(--sky-light)); border-radius: 2px; margin: 12px 0 20px; }
.divider.def { background: linear-gradient(90deg, var(--defence), var(--defence-dim)); }
.divider.center { margin: 12px auto 20px; }

/* ============================================
   FULLSCREEN SLIDESHOW HERO
   ============================================ */
/* HERO SLIDER */

.hero-slider{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#000;
}

.slides{
  width:100%;
  height:100%;
  position:relative;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1s ease;
}

.slide.active{
  opacity:1;
  z-index:2;
}

.slide-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* ARROWS */

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;

  width:48px;
  height:48px;

  background:rgba(0,0,0,0.5);
  color:white;

  font-size:28px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  cursor:pointer;
}

.arrow.prev{ left:20px; }
.arrow.next{ right:20px; }

.arrow:hover{
  background:rgba(0,0,0,0.8);
}

/* DOTS */

.dots{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
}

.dot{
  width:10px;
  height:10px;
  background:rgba(255,255,255,0.6);
  border-radius:50%;
  cursor:pointer;
}

.dot.active{
  background:white;
  transform:scale(1.2);
}

/* MOBILE */

@media (max-width:768px){

.arrow{
  width:36px;
  height:36px;
  font-size:20px;
}

.dots{
  bottom:12px;
}

.dot{
  width:7px;
  height:7px;
}

}
/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: linear-gradient(90deg, var(--defence) 0%, var(--sky-dark) 100%);
  padding: 16px 5%;
}
.trust-strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: white;
  font-family: 'Poppins', sans-serif;
}
.trust-item .t-icon {
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

/* ============================================
   DEFENCE FORCES SECTION (Army / Air / Navy)
   ============================================ */
.defence-forces { background: var(--off-white); }

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

.force-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  box-shadow: var(--shadow-def);
  transition: var(--transition);
}

.force-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* ============================================
   ⬇ FORCE IMAGE SLOTS — INSERT YOUR IMAGES HERE
   ============================================ */

/* ARMY CARD IMAGE
   Replace background below with:
   background: url('YOUR_ARMY_IMAGE.jpg') center/cover no-repeat;
*/
.force-card.army {
  background: linear-gradient(135deg, #2D4A1E 0%, #4A5C2F 60%, #6B7C3A 100%);
  /* 👆 REPLACE WITH YOUR ARMY IMAGE */
}

/* AIR FORCE CARD IMAGE
   Replace background below with:
   background: url('YOUR_AIRFORCE_IMAGE.jpg') center/cover no-repeat;
*/
.force-card.airforce {
  background: linear-gradient(135deg, #0369A1 0%, #0EA5E9 60%, #38BDF8 100%);
  /* 👆 REPLACE WITH YOUR AIR FORCE IMAGE */
}

/* NAVY CARD IMAGE
   Replace background below with:
   background: url('YOUR_NAVY_IMAGE.jpg') center/cover no-repeat;
*/
.force-card.navy {
  background: linear-gradient(135deg, #0F1E35 0%, #1E3A5F 60%, #2563EB 100%);
  /* 👆 REPLACE WITH YOUR NAVY IMAGE */
}

.force-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.20) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: var(--transition);
}
.force-card:hover .force-overlay { background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 60%, transparent 100%); }

.force-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  color: white; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px; margin-bottom: 10px;
  align-self: flex-start;
}
.force-badge.army-b { background: rgba(74,92,47,0.60); border-color: rgba(201,162,39,0.50); color: #F0D882; }
.force-badge.air-b  { background: rgba(14,165,233,0.40); border-color: rgba(56,189,248,0.50); color: #BAE6FD; }
.force-badge.navy-b { background: rgba(15,30,53,0.60); border-color: rgba(37,99,235,0.50); color: #BFDBFE; }

.force-overlay h3 {
  color: white; font-size: 1.6rem; font-weight: 700;
  font-family: 'Rajdhani', sans-serif; letter-spacing: 1px;
  margin-bottom: 6px;
}
.force-overlay p {
  color: rgba(255,255,255,0.80); font-size: 0.82rem;
  margin-bottom: 14px; line-height: 1.5;
}
.force-overlay .force-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: white; font-size: 0.8rem; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: var(--transition);
  text-decoration: underline; text-underline-offset: 3px;
}
.force-card:hover .force-link { opacity: 1; transform: translateY(0); }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px;
  transition: var(--transition); border: 1.5px solid transparent;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--sky-light); }
.card-icon {
  width: 50px; height: 50px; background: var(--sky-light);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 14px;
}
.card-icon.def { background: var(--defence-dim); }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; font-family: 'Rajdhani', sans-serif; font-size: 1.15rem; }
.card p { color: var(--grey-text); font-size: 0.88rem; line-height: 1.65; }

/* ============================================
   GRIDS
   ============================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ============================================
   STATS STRIP
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--defence) 0%, var(--sky-dark) 100%);
  padding: 56px 5%;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.stat-box .num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem; font-weight: 700;
  color: white; line-height: 1;
}
.stat-box .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.78); margin-top: 6px; }

/* ============================================
   COURSE CARDS
   ============================================ */
.course-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: var(--transition); border: 1.5px solid transparent;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky); }
.course-card-header {
  background: linear-gradient(135deg, var(--navy), var(--sky-dark));
  padding: 22px;
}
.course-card-header.def-header { background: linear-gradient(135deg, var(--navy), var(--defence)); }
.course-tag {
  display: inline-block; background: rgba(255,255,255,0.18);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 3px 11px; border-radius: 4px; margin-bottom: 8px;
  color: white;
}
.course-card-header h3 { color: white; font-size: 1.15rem; font-weight: 700; font-family: 'Rajdhani', sans-serif; }
.course-card-body { padding: 22px; }
.course-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.course-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.87rem; color: var(--grey-text); }
.course-features li::before {
  content: '✓'; width: 20px; height: 20px;
  background: var(--sky-light); color: var(--sky);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--off-white); border-radius: var(--radius);
  padding: 26px; border-left: 4px solid var(--sky); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card.def-t { border-left-color: var(--defence); }
.testimonial-card .quote { font-size: 2.5rem; color: var(--sky); line-height: 1; margin-bottom: 8px; }
.testimonial-card.def-t .quote { color: var(--defence); }
.testimonial-card p { color: var(--grey-text); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.author-avatar.def { background: linear-gradient(135deg, var(--defence), var(--defence-light)); }
.author-name { font-weight: 600; font-size: 0.9rem; font-family: 'Rajdhani', sans-serif; font-size: 1rem; }
.author-role { font-size: 0.76rem; color: var(--grey-text); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--defence) 50%, var(--sky-dark) 100%);
  padding: 64px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '⭐';
  position: absolute; font-size: 200px; opacity: 0.04;
  left: 3%; top: 50%; transform: translateY(-50%);
}
.cta-banner::after {
  content: '✈';
  position: absolute; font-size: 200px; opacity: 0.04;
  right: 3%; top: 50%; transform: translateY(-50%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 12px; font-family: 'Rajdhani', sans-serif; }
.cta-banner p { color: rgba(255,255,255,0.78); font-size: 0.97rem; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT / CONTACT CARDS
   ============================================ */
.contact-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: var(--transition); border: 1.5px solid transparent;
}
.contact-card:hover { border-color: var(--sky-light); box-shadow: var(--shadow-lg); }
.contact-card-icon {
  width: 48px; height: 48px; background: var(--sky-light);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}
.contact-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 5px; font-family: 'Rajdhani', sans-serif; }
.contact-card p, .contact-card a { font-size: 0.88rem; color: var(--grey-text); display: block; }
.contact-card a:hover { color: var(--sky); }

/* ============================================
   FORM
   ============================================ */
.enquiry-form {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 36px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-weight: 500; font-size: 0.85rem;
  margin-bottom: 6px; color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem;
  color: var(--dark-text); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,0.10); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.success-msg {
  background: #DCFCE7; border: 1px solid #16A34A; color: #14532D;
  padding: 14px 18px; border-radius: var(--radius-sm);
  margin-top: 14px; display: none; font-size: 0.9rem; font-weight: 500;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--defence) 50%, var(--sky-dark) 100%);
  padding: 64px 5%; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 11px);
}
.page-hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 12px; font-family: 'Rajdhani', sans-serif; letter-spacing: 1px; }
.page-hero p { color: rgba(255,255,255,0.80); font-size: 0.97rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 14px; font-size: 0.82rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.40); }

/* ============================================
   ABOUT / VM CARDS
   ============================================ */
.vm-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
  border-top: 4px solid var(--sky); transition: var(--transition);
}
.vm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vm-card.def-card { border-top-color: var(--defence); }
.vm-card h3 { font-size: 1.3rem; color: var(--sky); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; font-family: 'Rajdhani', sans-serif; }
.vm-card.def-card h3 { color: var(--defence); }
.vm-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vm-card ul li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--grey-text); }
.vm-card ul li::before { content: '→'; color: var(--sky); font-weight: 700; flex-shrink: 0; }
.vm-card.def-card ul li::before { color: var(--defence); }

/* Journey */
.journey-item { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(14,165,233,0.10); }
.journey-item:last-child { border-bottom: none; }
.journey-dot { width: 13px; height: 13px; background: var(--sky); border-radius: 50%; margin-top: 5px; flex-shrink: 0; box-shadow: 0 0 0 4px var(--sky-light); }
.journey-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 3px; font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; }
.journey-content p { font-size: 0.88rem; color: var(--grey-text); }

/* Tags */
.subjects-grid { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.subject-tag { background: var(--sky-light); color: var(--sky-dark); font-size: 0.76rem; font-weight: 600; padding: 4px 12px; border-radius: 4px; }
.subject-tag.def { background: var(--defence-dim); color: var(--defence); }
.info-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--off-white); color: var(--navy); font-size: 0.8rem; font-weight: 500; padding: 5px 13px; border-radius: 6px; border: 1px solid var(--grey-mid); }

/* ============================================
   SCHOLARSHIP PAGE
   ============================================ */
.scholarship-hero-band {
  background: linear-gradient(120deg, var(--defence) 0%, #2D4A1E 40%, var(--navy) 100%);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: white;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.scholarship-hero-band::after {
  content: '🏅';
  position: absolute; right: 36px; top: 50%; transform: translateY(-50%);
  font-size: 100px; opacity: 0.12;
}
.scholarship-hero-band h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; font-family: 'Rajdhani', sans-serif; }
.scholarship-hero-band p { color: rgba(255,255,255,0.82); font-size: 0.95rem; }

.benefit-card {
  background: var(--white); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
  border-left: 4px solid var(--defence-gold);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.benefit-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; }
.benefit-card p { font-size: 0.88rem; color: var(--grey-text); }

.hook-box {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 2px solid var(--defence-gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
}
.hook-box h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 8px; font-family: 'Rajdhani', sans-serif; }
.hook-box p { color: #78350F; font-size: 0.95rem; }

.eligibility-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: var(--transition);
}
.eligibility-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.step-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--defence), var(--sky-dark));
  color: white; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Rajdhani', sans-serif;
}
.eligibility-step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.eligibility-step p { font-size: 0.84rem; color: var(--grey-text); }

/* ============================================
   GOOGLE MAP
   ============================================ */
.map-section {
  padding: 0;
  margin-bottom: 0;
}
.map-wrapper {
  width: 100%;
  position: relative;
}
.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}
.map-overlay-bar {
  background: linear-gradient(90deg, var(--navy), var(--defence));
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.map-overlay-bar .map-info {
  display: flex; align-items: center; gap: 14px;
  color: white;
}
.map-pin-icon {
  width: 40px; height: 40px; background: var(--sky);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.map-overlay-bar h4 { color: white; font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; margin-bottom: 2px; }
.map-overlay-bar p { color: rgba(255,255,255,0.72); font-size: 0.82rem; }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; }
.whatsapp-float a {
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition); animation: waPulse 2.5s infinite;
}
.whatsapp-float a:hover { transform: scale(1.12); background: #1da851; }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.70); }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 5% 0;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-brand h3 { color: white; font-size: 1.2rem; margin-bottom: 5px; font-family: 'Rajdhani', sans-serif; letter-spacing: 1px; }
.footer-brand .tagline { color: var(--sky); font-size: 0.85rem; margin-bottom: 12px; font-style: italic; }
.footer-brand p { font-size: 0.84rem; line-height: 1.75; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.72);
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.10);
}
.footer-socials a:hover { background: var(--sky); color: white; }
.footer-col h4 {
  color: white; font-size: 0.95rem; font-weight: 700;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.08);
  font-family: 'Rajdhani', sans-serif; letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.84rem; color: rgba(255,255,255,0.62);
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--sky); padding-left: 4px; }
.footer-col ul li a::before { content: '›'; font-size: 1rem; color: var(--sky); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap;
  max-width: 1280px; margin: 0 auto;
}
.footer-bottom p { font-size: 0.80rem; color: rgba(255,255,255,0.42); }

/* ============================================
   MISC
   ============================================ */
.badge-open {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,162,39,0.20); color: #F0D882;
  border: 1px solid rgba(201,162,39,0.40);
  font-size: 0.78rem; font-weight: 600; padding: 5px 14px; border-radius: 4px;
}
.badge-scholarship {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,162,39,0.20); color: #F0D882;
  border: 1px solid rgba(201,162,39,0.50);
  font-size: 0.78rem; font-weight: 700; padding: 6px 16px; border-radius: 4px;
  letter-spacing: 1px; text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .forces-grid { grid-template-columns: 1fr; }
  .force-card { height: 260px; }
}
@media (max-width: 768px) {
  section { padding: 56px 5%; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    background: white; flex-direction: column;
    padding: 18px; box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    gap: 4px; display: none; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 14px; border-radius: 8px; }
  .navbar { position: relative; }
  .slideshow-hero { height: 85vh; }
  .slide-content h1 { font-size: 2.2rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-strip-inner { gap: 16px; justify-content: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .enquiry-form { padding: 22px 18px; }
  .map-overlay-bar { flex-direction: column; }
}
@media (max-width: 480px) {
  .slideshow-hero { height: 75vh; }
  .slide-content h1 { font-size: 1.8rem; }
  .slide-btns { flex-direction: column; align-items: center; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
