/* =====================================================
   WEPS Aviation – Main Stylesheet
   assets/css/style.css
   Color: Navy #052550 | Blue #159FE3 | Gold #C89B3C
   Font: Rajdhani (headings) + Inter (body)
   ===================================================== */

/* ── GOOGLE FONTS ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Rajdhani:wght@500;600;700;800&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────── */
:root {
  --navy:        #052550;
  --navy-dark:   #03173a;
  --navy-light:  #0a3570;
  --blue:        #159FE3;
  --blue-dark:   #0d7ab8;
  --blue-light:  #e8f6fd;
  --gold:        #C89B3C;
  --gold-dark:   #a07a28;
  --gold-light:  #fdf3e0;
  --white:       #FFFFFF;
  --light:       #F8FAFC;
  --charcoal:    #0f172a;
  --gray-400:    #334155;
  --gray-200:    #e2e8f0;
  --success:     #10b981;
  --error:       #ef4444;
  --shadow-sm:   0 2px 8px rgba(5,37,80,0.08);
  --shadow-md:   0 10px 30px rgba(5,37,80,0.09);
  --shadow-lg:   0 20px 50px rgba(5,37,80,0.14);
  --shadow-gold: 0 8px 32px rgba(200,155,60,0.30);
  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   24px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative !important;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── UTILITY ───────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ── PRELOADER ─────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-logo svg { width: 48px; height: 48px; fill: var(--gold); }
.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px; overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  border-radius: 99px;
  animation: preloaderLoad 1.8s ease forwards;
}
@keyframes preloaderPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
@keyframes preloaderLoad  { 0%{width:0} 100%{width:100%} }
.preloader-text { color: var(--gold); font-family:'Rajdhani',sans-serif; font-size:1.1rem; letter-spacing:2px; }

/* ── TOP BAR (PREMIUM) ─────────────────────────────── */
.top-bar {
  background: linear-gradient(90deg, #021226 0%, #052550 50%, #031b3e 100%);
  border-bottom: 1px solid rgba(200, 155, 60, 0.35);
  font-size: 0.8rem;
  padding: 6px 0;
  position: relative;
  z-index: 1001;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all var(--transition);
}
.top-contact-item:hover {
  color: var(--gold);
}
.top-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(200, 155, 60, 0.15);
  border: 1px solid rgba(200, 155, 60, 0.35);
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--transition);
}
.top-contact-item:hover .top-icon-badge {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(200, 155, 60, 0.4);
}
.top-icon-badge svg {
  width: 13px;
  height: 13px;
}
.top-text-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.top-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.top-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.2px;
}
.top-sep {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}
.top-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(200, 155, 60, 0.12);
  border: 1px solid rgba(200, 155, 60, 0.3);
  color: #e5b95a;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: topPulse 1.8s infinite;
}
@keyframes topPulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-social-label {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition);
}
.top-social-link svg {
  width: 13px;
  height: 13px;
}
.top-social-link:hover {
  transform: translateY(-2px);
}
.top-social-link.fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(24, 119, 242, 0.4);
}
.top-social-link.ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(214, 36, 159, 0.4);
}
.top-social-link.yt:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(255, 0, 0, 0.4);
}
.top-social-link.wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
}
.top-apply-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--gold), #a57e28);
  color: #03173a !important;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px rgba(200, 155, 60, 0.3);
  transition: all var(--transition);
}
.top-apply-link:hover {
  background: linear-gradient(135deg, #e5b95a, var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200, 155, 60, 0.5);
  color: #000 !important;
}

@media (max-width: 992px) {
  .top-pill-badge { display: none; }
}
@media (max-width: 768px) {
  .top-bar { padding: 6px 0; }
  .top-bar-inner { justify-content: space-between; gap: 8px; }
  .top-social-label { display: none; }
  .top-apply-link { display: none; }
  .top-contact { gap: 10px; }
  .top-sep { display: none; }
  .top-label { display: none; }
}
@media (max-width: 480px) {
  .top-contact-item.mail-item { display: none; }
  .top-contact { gap: 8px; }
  .top-contact-item { font-size: 0.74rem; }
  .top-value { font-size: 0.76rem; }
  .top-socials { gap: 6px; }
  .top-social-link { width: 26px; height: 26px; }
  .top-social-link svg { width: 12px; height: 12px; }
}

/* ── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #ffffff;
  padding: 0;
  box-shadow: 0 2px 16px rgba(5,37,80,0.10);
  border-bottom: 2px solid var(--gold);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(5,37,80,0.15);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 72px; gap: 20px;
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 52px; width: auto; max-width: 260px; object-fit: contain; display: block; }
.logo-text { display: none !important; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  border-radius: 99px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--blue); font-weight: 700; }
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(200,155,60,0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,155,60,0.45); background: linear-gradient(135deg, #d4a843, var(--gold)); }
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(5,37,80,0.08); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 99px;
  transition: all var(--transition);
}
.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); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
/* Hero Video — always on top, covers full area */
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1; /* Above fallback */
  opacity: 1;
}
/* Gradient fallback — shown behind video */
.hero-video-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #03173a 0%, #052550 40%, #0a3570 70%, #159FE3 100%);
  z-index: 0;
}
/* Dark directional overlay on top of video for text readability without obscuring airplane */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(2, 18, 38, 0.84) 0%,
      rgba(3, 23, 58, 0.70) 38%,
      rgba(5, 37, 80, 0.35) 68%,
      rgba(2, 18, 38, 0.12) 100%
    ),
    linear-gradient(
      to top,
      rgba(2, 18, 38, 0.85) 0%,
      rgba(2, 18, 38, 0.20) 14%,
      transparent 25%
    );
}
.hero-particles {
  position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--gold); border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0.4;
}
@keyframes floatParticle {
  0%  { transform: translateY(100vh) translateX(0);  opacity: 0;   }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100%{ transform: translateY(-10vh) translateX(30px); opacity: 0; }
}
.hero {
  position: relative;
  min-height: 100vh;
  min-height: max(680px, 100vh);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-inner {
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: clamp(75px, 11vh, 110px) 0 clamp(25px, 5vh, 50px);
  width: 100%; max-width: 840px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px;
  background: rgba(3, 23, 58, 0.65);
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: 50px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.84rem; font-weight: 600;
  color: #FFE082; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease both;
}
.hero-badge::before { content:'✈'; font-size: 0.92rem; }
.hero-title {
  font-family: 'Rajdhani', 'Outfit', sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  font-weight: 700; line-height: 1.14;
  letter-spacing: 0.5px;
  color: #ffffff; margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(2, 18, 38, 0.6);
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-title .accent {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFD54F 35%, #FFB300 70%, #FFA000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: none !important;
  filter: drop-shadow(0 2px 10px rgba(255, 179, 0, 0.35));
}
.hero-title .typed-wrap { display: inline-block; }
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  color: rgba(255,255,255,0.95);
  max-width: 580px; margin-bottom: 28px; line-height: 1.7;
  text-shadow: 0 1px 4px rgba(2, 18, 38, 0.6);
  animation: fadeInUp 0.8s 0.35s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: center;
  animation: fadeInUp 0.8s 0.5s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 34px; border-radius: 50px;
  background: linear-gradient(135deg, #FFB300 0%, #E5A93C 50%, #C89B3C 100%);
  color: #ffffff;
  font-family: 'Rajdhani', 'Outfit', sans-serif;
  font-weight: 700; font-size: 1.02rem;
  letter-spacing: 1.2px; text-transform: uppercase;
  box-shadow: 0 6px 22px rgba(229, 169, 60, 0.4), inset 0 1px 1px rgba(255,255,255,0.45);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 223, 121, 0.6);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 179, 0, 0.6), inset 0 1px 2px rgba(255,255,255,0.6);
  color: #ffffff;
  border-color: #ffe082;
}
.btn-primary .btn-icon-png {
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}
.btn-primary:hover .btn-icon-png {
  transform: rotate(-15deg) translateY(-2px);
}

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 34px; border-radius: 50px;
  border: 2px solid #C89B3C;
  background: linear-gradient(135deg, #021226 0%, #052550 50%, #083268 100%);
  color: #ffffff;
  font-family: 'Rajdhani', 'Outfit', sans-serif;
  font-weight: 700; font-size: 1.02rem;
  letter-spacing: 1.2px; text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 6px 22px rgba(5, 37, 80, 0.25), 0 2px 6px rgba(200, 155, 60, 0.2);
  text-decoration: none;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.btn-outline:hover {
  border-color: #FFD54F;
  background: linear-gradient(135deg, #FFB300 0%, #E5A93C 50%, #C89B3C 100%);
  color: #021226;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(200, 155, 60, 0.5);
  text-shadow: none;
}
.btn-outline .btn-icon-png {
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}
.btn-outline:hover .btn-icon-png {
  transform: translateX(5px);
  filter: brightness(0);
}

.hero-right {
  position: relative; display: flex; justify-content: center;
  animation: fadeInRight 1s 0.3s ease both;
}
.hero-crew-img {
  height: 560px; width: auto; max-width: 100%;
  object-fit: contain; object-position: bottom;
  filter: drop-shadow(0 20px 60px rgba(21,159,227,0.3));
  animation: floatCrew 4s ease-in-out infinite;
}
@keyframes floatCrew { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-crew-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 280px; height: 60px;
  background: radial-gradient(ellipse, rgba(21,159,227,0.35) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:0.5} 50%{opacity:1} }
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 4; text-align: center; cursor: pointer;
  animation: fadeIn 1s 1.5s ease both;
  transition: all 0.3s ease;
  user-select: none;
}
.hero-scroll:hover {
  transform: translateX(-50%) translateY(-3px);
}
.hero-scroll span {
  display: block;
  font-family: 'Rajdhani', 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  transition: color 0.3s ease;
}
.hero-scroll:hover span {
  color: #FFE082;
}
.scroll-arrow {
  width: 2px; height: 36px;
  background: linear-gradient(to bottom, #FFE082 0%, rgba(255,255,255,0.2) 100%);
  margin: 0 auto;
  border-radius: 2px;
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1)} 100%{transform:scaleY(0);transform-origin:bottom} }

@media (max-height: 720px), (max-width: 768px) {
  .hero-scroll {
    display: none !important;
  }
  .hero-inner {
    padding: 100px 0 50px;
  }
}

/* ── STATS BAR ─────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #021226 0%, #052550 50%, #083268 100%);
  padding: 42px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(200,155,60,0.35);
  border-bottom: 1px solid rgba(200,155,60,0.35);
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(21,159,227,0.1) 0%, transparent 80%);
}
.stats-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center; padding: 22px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,155,60,0.25);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.stat-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(200,155,60,0.25);
}
.stat-num {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.2rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 25px rgba(200,155,60,0.4);
}
.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ── SECTION BASE ──────────────────────────────────── */
.section { padding: 90px 0; }
.section-alt { background: var(--light); }
.section-navy { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: var(--blue-light);
  color: var(--blue-dark);
  border: 1px solid rgba(21,159,227,0.2);
  border-radius: 50px; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag-gold { background: var(--gold-light); color: var(--gold-dark); border-color: rgba(200,155,60,0.3); }
.section-tag-white { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.2); }
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.15; margin-bottom: 14px;
}
.section-title-white { color: var(--white); }
.section-title span { color: var(--gold); }
.section-desc { font-size: 1.02rem; color: #475569; max-width: 580px; margin: 0 auto; line-height: 1.7; }
.section-desc-white { color: rgba(255,255,255,0.85); }

/* ── ABOUT ─────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 16px 40px rgba(5,37,80,0.14);
  border: 2px solid rgba(200,155,60,0.25);
}
.about-img { width: 100%; height: 440px; object-fit: cover; display: block; }
.about-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: linear-gradient(135deg, var(--gold), #996515);
  color: var(--white);
  padding: 14px 22px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(200,155,60,0.4);
  border: 1px solid rgba(255,255,255,0.25);
}
.about-img-badge .badge-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem; font-weight: 700; line-height: 1;
}
.about-img-badge .badge-text { font-size: 0.78rem; line-height: 1.3; font-weight: 600; }
.about-content .section-title { text-align: left; }
.about-content .section-tag { margin-left: 0; }
.about-desc { font-size: 1.02rem; color: #334155; line-height: 1.8; margin-bottom: 24px; }
.about-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.about-point {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(5,37,80,0.08);
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 10px rgba(5,37,80,0.04);
  transition: all var(--transition);
}
.about-point:hover { background: #ffffff; box-shadow: 0 6px 20px rgba(5,37,80,0.08); transform: translateX(6px); border-color: rgba(200,155,60,0.3); }
.about-point-icon {
  width: 32px; height: 32px;
  background: rgba(200,155,60,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 1.1rem; flex-shrink: 0;
}
.about-point strong { display: block; font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 3px; }
.about-point span { font-size: 0.86rem; color: #475569; line-height: 1.5; }

/* ── SERVICES ──────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(5,37,80,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(5,37,80,0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex; flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(5,37,80,0.12);
  border-color: rgba(200,155,60,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-badge-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  background: rgba(200,155,60,0.12);
  border: 1px solid rgba(200,155,60,0.3);
  border-radius: 50px;
  padding: 3px 12px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.service-icon-wrap {
  width: 64px; height: 64px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
  border: 1px solid rgba(21,159,227,0.2);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(5,37,80,0.2);
}
.service-icon-wrap svg { width: 30px; height: 30px; stroke: var(--blue-dark); transition: stroke var(--transition); }
.service-card:hover .service-icon-wrap svg { stroke: var(--gold); }
.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.service-card p { font-size: 0.92rem; color: #475569; line-height: 1.7; flex-grow: 1; }
.service-features {
  display: flex; flex-direction: column; gap: 6px;
  margin: 16px 0 18px; padding: 14px 0;
  border-top: 1px dashed rgba(5,37,80,0.12);
  border-bottom: 1px dashed rgba(5,37,80,0.12);
}
.service-features span {
  font-size: 0.84rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 6px;
}
.service-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 700; color: var(--gold-dark);
  text-decoration: none; transition: all var(--transition);
  margin-top: auto;
}
.service-cta span { transition: transform var(--transition); }
.service-card:hover .service-cta { color: var(--navy); }
.service-card:hover .service-cta span { transform: translateX(5px); }
.service-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem; font-weight: 700;
  color: rgba(5,37,80,0.06);
  line-height: 1; transition: color var(--transition);
}
.service-card:hover .service-num { color: rgba(200,155,60,0.2); }

/* ── TEAM ──────────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(5,37,80,0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(5,37,80,0.08);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(5,37,80,0.14);
  border-color: rgba(200,155,60,0.3);
}
.team-img-wrap { position: relative; overflow: hidden; height: 290px; background: var(--light); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.team-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transform: scale(1.06); transform-origin: center top; transition: transform 0.5s ease; }
.team-card:hover .team-img { transform: scale(1.10); }
.team-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, #0a3c7a 0%, #03173a 100%);
}
.exec-avatar-circle {
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 25px rgba(200,155,60,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
}
.exec-wings { font-size: 1.4rem; color: var(--gold); line-height: 1; }
.exec-letters {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem; font-weight: 700;
  color: #ffffff; line-height: 1.1;
  letter-spacing: 1px;
}
.exec-stars { font-size: 0.65rem; color: var(--gold); letter-spacing: 2px; }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,37,80,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold), #996515);
  color: var(--white);
  border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(200,155,60,0.35);
}
.team-body { padding: 24px; }
.team-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.team-role { font-size: 0.85rem; color: var(--blue-dark); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 10px; display: block; }
.team-body p { font-size: 0.9rem; color: #475569; line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   OUR LEGACY — AVIATION RUNWAY & FLIGHT TRAJECTORY
   ═══════════════════════════════════════════════════ */
.legacy-section {
  position: relative;
  background: radial-gradient(circle at 50% 10%, #08295a 0%, #03173a 50%, #020f26 100%);
  padding: 100px 0;
  overflow: hidden;
}
.legacy-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(200,155,60,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,155,60,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Legacy Flight Stats Board */
.legacy-stats-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 70px;
  position: relative; z-index: 1;
}
.legacy-stat-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 155, 60, 0.35);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
}
.legacy-stat-card:hover {
  transform: translateY(-4px);
  border-color: #C89B3C;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 35px rgba(200, 155, 60, 0.25);
}
.legacy-stat-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200,155,60,0.2), rgba(21,159,227,0.2));
  border: 1px solid rgba(200,155,60,0.5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.legacy-stat-icon-png {
  width: 24px; height: 24px; object-fit: contain;
}
.legacy-stat-info { display: flex; flex-direction: column; }
.legacy-stat-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.85rem; font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #FFE082 0%, #C89B3C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3px;
}
.legacy-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Runway Timeline Architecture */
.legacy-runway-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 0;
  z-index: 1;
}
.runway-center-track {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #FFE082 0%, #C89B3C 30%, #159FE3 70%, #C89B3C 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(200, 155, 60, 0.5);
}
.runway-takeoff-plane {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFDF79, #C89B3C);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 25px rgba(200, 155, 60, 0.8);
  animation: planeFloat 3s ease-in-out infinite;
}
.runway-takeoff-plane img {
  width: 22px; height: 22px; object-fit: contain;
  transform: rotate(-45deg);
}
@keyframes planeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* Milestone Items */
.runway-milestone {
  display: grid;
  grid-template-columns: 1fr 68px 1fr;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}
.runway-left .milestone-card {
  margin-right: 15px;
  text-align: right;
}
.runway-right .milestone-card {
  margin-left: 15px;
  text-align: left;
}

/* Milestone Card Surface */
.milestone-card {
  background: rgba(3, 23, 58, 0.65);
  border: 1.5px solid rgba(200, 155, 60, 0.35);
  border-radius: 20px;
  padding: 26px 30px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.milestone-card:hover {
  transform: translateY(-5px);
  border-color: #C89B3C;
  background: rgba(5, 37, 80, 0.85);
  box-shadow: 0 16px 45px rgba(21, 159, 227, 0.25), 0 0 30px rgba(200, 155, 60, 0.2);
}
.milestone-current {
  border-color: #FFE082;
  background: linear-gradient(135deg, rgba(8, 50, 104, 0.8) 0%, rgba(3, 23, 58, 0.85) 100%);
  box-shadow: 0 12px 35px rgba(200, 155, 60, 0.35);
}

.milestone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.runway-left .milestone-top {
  flex-direction: row-reverse;
}
.milestone-gate {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #159FE3;
  background: rgba(21, 159, 227, 0.12);
  border: 1px solid rgba(21, 159, 227, 0.35);
  padding: 4px 12px;
  border-radius: 50px;
}
.milestone-gate-gold {
  color: #FFE082;
  background: rgba(200, 155, 60, 0.2);
  border-color: rgba(200, 155, 60, 0.55);
}
.milestone-year {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #FFE082 0%, #C89B3C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.milestone-year-gold {
  font-size: 1.7rem;
}
.milestone-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
}
.milestone-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.68;
  margin-bottom: 16px;
}
.milestone-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.runway-left .milestone-tags {
  justify-content: flex-end;
}
.mtag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
}
.mtag-icon {
  width: 13px; height: 13px; object-fit: contain;
}
.mtag-gold {
  color: #FFE082;
  background: rgba(200, 155, 60, 0.15);
  border-color: rgba(200, 155, 60, 0.4);
}

/* Runway Node & Beacon Pulse */
.runway-node {
  position: relative;
  width: 58px; height: 58px;
  margin: 0 auto;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.runway-beacon-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(200, 155, 60, 0.6);
  animation: beaconPulse 2.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  pointer-events: none;
}
@keyframes beaconPulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 0.3; }
  100% { transform: scale(1.6); opacity: 0; }
}
.runway-node-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #052550 0%, #03173a 100%);
  border: 2px solid #C89B3C;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(200, 155, 60, 0.4);
  transition: all 0.3s ease;
}
.runway-milestone:hover .runway-node-icon {
  background: linear-gradient(135deg, #e5a93c 0%, #C89B3C 100%);
  transform: scale(1.12);
  box-shadow: 0 0 28px rgba(200, 155, 60, 0.8);
}
.runway-node-icon img {
  width: 24px; height: 24px; object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.runway-milestone:hover .runway-node-icon img {
  transform: scale(1.1);
}

/* Legacy Bottom CTA Box */
.legacy-cta-box {
  margin-top: 50px;
  padding: 36px 44px;
  background: linear-gradient(135deg, rgba(5, 37, 80, 0.75) 0%, rgba(8, 50, 104, 0.65) 100%);
  border: 1.5px solid rgba(200, 155, 60, 0.45);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.legacy-cta-badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #FFE082;
  margin-bottom: 8px;
}
.legacy-cta-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.legacy-cta-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.6;
}
.legacy-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Mobile & Tablet Responsiveness for Legacy Section */
@media (max-width: 991px) {
  .legacy-stats-board {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .legacy-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }
  .legacy-cta-actions {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .legacy-section {
    padding: 70px 0;
  }
  .legacy-stats-board {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 45px;
  }
  .runway-center-track {
    left: 28px;
    transform: none;
  }
  .runway-takeoff-plane {
    left: 28px;
    transform: none;
  }
  .runway-milestone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 68px;
    margin-bottom: 40px;
  }
  .runway-node {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
  .runway-spacer {
    display: none;
  }
  .runway-left .milestone-card,
  .runway-right .milestone-card {
    margin: 0;
    text-align: left;
    width: 100%;
    padding: 22px 20px;
  }
  .runway-left .milestone-top,
  .runway-right .milestone-top {
    flex-direction: row;
  }
  .runway-left .milestone-tags,
  .runway-right .milestone-tags {
    justify-content: flex-start;
  }
}

/* ── AIRLINE PARTNERS ──────────────────────────────── */
.partners-marquee {
  overflow: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative !important;
  padding: 32px 0;
  background: #ffffff;
  border-top: 1px solid rgba(5,37,80,0.06);
  border-bottom: 1px solid rgba(5,37,80,0.06);
}
.partners-track {
  display: flex; gap: 28px; align-items: center;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.partners-marquee:hover .partners-track { animation-play-state: paused; }
.partner-item {
  flex-shrink: 0;
  padding: 10px 22px;
  background: #ffffff;
  border: 1px solid rgba(5,37,80,0.12);
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(5,37,80,0.04);
  transition: all var(--transition);
  display: flex; align-items: center; gap: 10px;
}
.partner-pill-code {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--navy);
  font-size: 0.76rem; font-weight: 800;
  border: 1px solid rgba(21,159,227,0.3);
}
.partner-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(200,155,60,0.25);
}
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── PLACEMENTS / GALLERY & ALUMNI ─────────────────── */
.placements-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.placement-card {
  border-radius: var(--radius);
  overflow: hidden; position: relative;
  aspect-ratio: 3/4; background: var(--light);
  transition: all var(--transition);
}
.placement-card:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.placement-card img { width: 100%; height: 100%; object-fit: cover; }
.placement-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,37,80,0.85) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
}
.placement-card:hover .placement-overlay { opacity: 1; }
.placement-overlay p { font-size: 0.85rem; color: var(--white); font-weight: 600; }
.placements-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--gold); font-size: 2.5rem;
}

/* ── Placement Alumni Cards ── */
.placement-alumni-card {
  background: #ffffff;
  border: 1px solid rgba(5,37,80,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: 0 4px 18px rgba(5,37,80,0.06);
  transition: all var(--transition);
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.placement-alumni-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(5,37,80,0.12);
  border-color: rgba(200,155,60,0.35);
}
.alum-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.alum-avatar-box {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #0a3c7a);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 1.3rem;
  box-shadow: 0 3px 12px rgba(5,37,80,0.2);
  border: 2px solid var(--gold);
  flex-shrink: 0;
  overflow: visible;
}
.alum-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.alum-char {
  display: none !important;
  width: 100%; height: 100%;
  border-radius: 50%;
  align-items: center; justify-content: center;
}
.alum-avatar-box.has-fallback .alum-char {
  display: flex !important;
}
.alum-avatar-box.has-fallback .alum-img {
  display: none !important;
}
.alum-verified-badge {
  position: absolute; bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #10b981; color: #ffffff;
  font-size: 0.65rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #ffffff;
}
.alum-airline-badge {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--navy);
  background: #f8fafc;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(5,37,80,0.08);
}
.alum-student-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.alum-designation {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 6px;
}
.alum-rating {
  color: #f59e0b;
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.alum-badge-center {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 500;
}

/* ── APPLICATION FORM ──────────────────────────────── */
.form-section { background: var(--navy); position: relative; overflow: hidden; }
.form-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(21,159,227,0.08) 0%, transparent 70%);
}
.form-section::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,155,60,0.06) 0%, transparent 70%);
}
.form-wrapper {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(10px);
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.form-group label {
  font-size: 0.88rem; font-weight: 700;
  color: #052550; letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 4px;
}
.form-group .req { color: #e11d48; font-weight: 800; font-size: 1rem; }
.form-section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.08rem; font-weight: 700;
  color: #052550; letter-spacing: 1px;
  text-transform: uppercase;
  margin: 22px 0 10px; padding-bottom: 8px;
  border-bottom: 2px solid #C89B3C;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  color: #0f172a; font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  -webkit-appearance: none;
  appearance: none;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.03);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; opacity: 1; }
.form-group select option { background: #ffffff; color: #0f172a; padding: 6px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C89B3C;
  background: #ffffff;
  color: #052550;
  box-shadow: 0 0 0 4px rgba(200,155,60,0.20);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #ef4444; background: #fff5f5; }
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.5; }

/* Scoped dark form wrapper on dark sections (.form-section, .section-dark, .section-navy) */
.form-section .form-wrapper label,
.form-section label,
.section-dark .form-wrapper label,
.section-navy .form-wrapper label {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}
.form-section .form-wrapper .form-section-label,
.form-section .form-section-label,
.section-dark .form-wrapper .form-section-label,
.section-navy .form-wrapper .form-section-label {
  color: #FFD54F !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  border-bottom-color: #C89B3C !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}
.form-section .form-wrapper input,
.form-section .form-wrapper select,
.form-section .form-wrapper textarea,
.section-dark .form-wrapper input,
.section-dark .form-wrapper select,
.section-dark .form-wrapper textarea {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #052550 !important;
  font-weight: 600 !important;
}
.form-section .form-wrapper input::placeholder,
.form-section .form-wrapper textarea::placeholder,
.section-dark .form-wrapper input::placeholder,
.section-dark .form-wrapper textarea::placeholder {
  color: #64748b !important;
  opacity: 1 !important;
  font-weight: 400 !important;
}
.form-section .form-wrapper select option,
.section-dark .form-wrapper select option {
  background: #ffffff !important;
  color: #052550 !important;
  font-weight: 500 !important;
}
.section-dark .form-wrapper input:focus,
.section-dark .form-wrapper select:focus,
.section-dark .form-wrapper textarea:focus {
  background: rgba(255,255,255,0.14);
  border-color: #C89B3C;
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(200,155,60,0.25);
}
.form-msg {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500;
  margin-top: 8px; display: none;
}
.form-msg.success { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; display: block; }
.form-msg.error   { background: rgba(239,68,68,0.15);  border: 1px solid rgba(239,68,68,0.3);  color: #fca5a5; display: block; }
.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); font-weight: 700; font-size: 1rem;
  border-radius: 50px; letter-spacing: 0.5px;
  margin-top: 24px;
  box-shadow: 0 6px 24px rgba(200,155,60,0.4);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(200,155,60,0.55); }
.btn-submit:hover::before { opacity: 1; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.trust-pill svg { stroke: var(--gold); }

/* ── CONTACT ───────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--white);
  border: 1px solid rgba(5,37,80,0.09);
  border-radius: var(--radius);
  padding: 30px 22px; text-align: center;
  box-shadow: 0 4px 16px rgba(5,37,80,0.05);
  transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(5,37,80,0.12); border-color: rgba(200,155,60,0.35); }
.contact-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  border: 1px solid rgba(21,159,227,0.25);
}
.contact-card:hover .contact-icon { background: var(--navy); border-color: var(--gold); }
.contact-icon svg { width: 22px; height: 22px; stroke: var(--blue-dark); transition: stroke var(--transition); }
.contact-card:hover .contact-icon svg { stroke: var(--gold); }
.contact-card h3 { font-family:'Rajdhani',sans-serif; font-size:1.25rem; font-weight:700; color:var(--navy); margin-bottom:6px; }
.contact-card a, .contact-card p { font-size:0.92rem; color:#475569; line-height:1.6; transition:color var(--transition); }
.contact-card a:hover { color:var(--blue-dark); }

/* ── FOOTER ────────────────────────────────────────── */
.footer { background: var(--navy-dark); padding: 60px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 40px;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials .social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(200,155,60,0.35);
  color: #ffffff;
  transition: all var(--transition);
}
.footer-socials .social-icon:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(200,155,60,0.45);
}
.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,155,60,0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: all var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1.1rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: rgba(255,255,255,0.55); }
.footer-contact-list svg { width: 15px; height: 15px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0; text-align: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold); }

/* ── WHATSAPP FLOAT ────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 24px; z-index: 999;
  width: 54px; height: 54px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: waBounce 2s 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,0.55); animation-play-state: paused; }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }
.whatsapp-float .wa-tooltip {
  position: absolute; right: 64px;
  background: var(--charcoal); color: var(--white);
  font-size: 0.78rem; font-weight: 600;
  padding: 6px 12px; border-radius: var(--radius-sm);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transform: translateX(8px);
  transition: all var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── BACK TO TOP ───────────────────────────────────── */
.back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #03173a 0%, #052550 100%);
  border: 2px solid #C89B3C;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 18px rgba(5,37,80,0.35);
  cursor: pointer;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover {
  background: linear-gradient(135deg, #e5a93c 0%, #C89B3C 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(200,155,60,0.5);
  border-color: #ffe082;
}
.back-top .back-top-png {
  width: 18px; height: 18px;
  object-fit: contain;
  display: block;
  margin: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.back-top:hover .back-top-png { transform: translateY(-2px); }

/* ── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeIn       { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp     { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown   { from{opacity:0;transform:translateY(-24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight  { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-left.visible, .reveal-right.visible { transform: translateX(0); }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-right  { display: none; }
  .about-grid  {
    grid-template-columns: 1fr 1.15fr !important;
    gap: 36px !important;
    align-items: center !important;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .placements-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .nav-menu { display: none !important; }
  .nav-mobile-actions { display: flex !important; }
  .nav-socials-inline { display: none !important; }
}

/* ═══════════════════════════════════════════════════
   HEADER & MOBILE NAVIGATION CONTROLS
════════════════════════════════════════════════════ */
.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}
.mobile-nav-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--gold), #a57e28);
  color: #03173a !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(200, 155, 60, 0.35);
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-nav-apply-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(200, 155, 60, 0.5);
}
.mobile-apply-arrow {
  width: 9px;
  height: 9px;
  object-fit: contain;
}

/* Animated 3-Line Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: rgba(5, 37, 80, 0.05);
  border: 1.5px solid rgba(5, 37, 80, 0.14);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.hamburger:hover {
  background: rgba(5, 37, 80, 0.1);
  border-color: var(--gold);
}
.ham-line {
  display: block;
  width: 22px;
  height: 2.2px;
  background: var(--navy);
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.hamburger.is-active {
  background: #052550 !important;
  border-color: #C89B3C !important;
}
.hamburger.is-active .ham-line {
  background: #C89B3C !important;
}
.hamburger.is-active .line-1 {
  transform: translateY(7.2px) rotate(45deg);
}
.hamburger.is-active .line-2 {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .line-3 {
  transform: translateY(-7.2px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════
   ULTRA-PREMIUM MOBILE DRAWER NAVIGATION
════════════════════════════════════════════════════ */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 18, 38, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-drawer-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 86%;
  max-width: 380px;
  height: 100%;
  height: 100dvh;
  background: linear-gradient(180deg, #021226 0%, #052550 55%, #031b3e 100%);
  z-index: 9999;
  transform: translateX(105%);
  visibility: hidden; /* CRITICAL: Prevents off-screen drawer from stretching mobile viewport width */
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -12px 0 45px rgba(0, 0, 0, 0.65);
  border-left: 1px solid rgba(200, 155, 60, 0.35);
}
.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
body.drawer-locked {
  overflow: hidden !important;
  touch-action: none;
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 18, 38, 0.45);
}
.drawer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.drawer-logo {
  height: 38px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}
.drawer-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: #C89B3C;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 155, 60, 0.35);
  color: #C89B3C;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.drawer-close:hover {
  background: #C89B3C;
  color: #021226;
  transform: rotate(90deg);
}
.close-symbol {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: bold;
}
.drawer-status-strip {
  background: linear-gradient(90deg, rgba(200, 155, 60, 0.18), rgba(21, 159, 227, 0.18));
  border-bottom: 1px solid rgba(200, 155, 60, 0.25);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #ffffff;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  flex-grow: 1;
}
.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
  margin-bottom: 4px;
}
.drawer-link:hover,
.drawer-link.active {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: #C89B3C;
}
.drawer-link.active {
  background: linear-gradient(90deg, rgba(200, 155, 60, 0.18), transparent);
}
.drawer-link-text {
  display: flex;
  flex-direction: column;
}
.drawer-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.drawer-link.active .drawer-title {
  color: #C89B3C;
}
.drawer-sub {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}
.drawer-arrow-png {
  width: 12px;
  height: 12px;
  object-fit: contain;
  opacity: 0.45;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.drawer-link:hover .drawer-arrow-png,
.drawer-link.active .drawer-arrow-png {
  opacity: 1;
  transform: translateX(4px);
}
.drawer-cta-wrap {
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #a57e28);
  color: #03173a !important;
  padding: 12px 18px;
  border-radius: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(200, 155, 60, 0.35);
  text-decoration: none;
  transition: transform 0.2s ease;
}
.drawer-apply-btn:active {
  transform: scale(0.98);
}
.drawer-helpline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.drawer-quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s ease;
}
.drawer-quick-btn.call-btn {
  background: rgba(5, 37, 80, 0.65);
  color: #ffffff;
}
.drawer-quick-btn.wa-btn {
  background: rgba(37, 211, 102, 0.18);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.35);
}
.drawer-btn-icon-png {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block;
}
.drawer-footer {
  padding: 14px 18px 20px;
  background: rgba(2, 18, 38, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.drawer-address-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin-bottom: 10px;
}
.drawer-loc-png {
  width: 13px;
  height: 13px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}
.drawer-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.drawer-social-label {
  font-size: 0.72rem;
  color: #C89B3C;
  font-weight: 700;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   HERO VIDEO & MOBILE CONTROLS
════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #021226;
}
.hero-video-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
  opacity: 1 !important;
  display: block !important;
  pointer-events: none !important;
  background: #021226;
}
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #03173a 0%, #052550 40%, #0a3570 70%, #159FE3 100%);
  z-index: 0 !important;
  transition: opacity 0.6s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2 !important;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(2, 18, 38, 0.84) 0%,
      rgba(3, 23, 58, 0.70) 38%,
      rgba(5, 37, 80, 0.35) 68%,
      rgba(2, 18, 38, 0.12) 100%
    ),
    linear-gradient(
      to top,
      rgba(2, 18, 38, 0.85) 0%,
      rgba(2, 18, 38, 0.20) 14%,
      transparent 25%
    );
}
.hero-inner {
  position: relative;
  z-index: 3 !important;
}

/* ═══════════════════════════════════════════════════
   ADVANCED MOBILE MEDIA QUERIES
════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger { display: flex !important; }
  .navbar .nav-inner { height: 64px; }
  .navbar .logo-img { height: 42px; }
  
  /* Top Bar Mobile Optimization */
  .top-bar { padding: 4px 0 !important; max-width: 100vw !important; overflow: hidden !important; }
  .top-bar-inner { justify-content: space-between !important; gap: 6px !important; flex-wrap: nowrap !important; }
  .top-contact { gap: 8px !important; flex-shrink: 1 !important; min-width: 0 !important; }
  .top-contact-item { font-size: 0.76rem !important; }
  .top-value { font-size: 0.78rem !important; }
  .top-socials { gap: 6px !important; flex-shrink: 0 !important; }
  .top-social-link { width: 26px !important; height: 26px !important; }
  .top-social-png { width: 15px !important; height: 15px !important; }
  .top-social-label, .top-apply-link, .top-pill-badge, .top-sep, .top-contact-item.mail-item { display: none !important; }
  
  /* Prevent any element stretching viewport width */
  html, body, .hero, .section, .container, .navbar, .partners-marquee, .legacy-section {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  
  /* Hero Mobile Styling */
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(2, 18, 38, 0.72) 0%,
      rgba(3, 23, 58, 0.65) 45%,
      rgba(2, 18, 38, 0.88) 100%
    ) !important;
  }
  .hero-inner { padding: 85px 0 50px !important; }
  .hero-badge { margin-bottom: 16px; font-size: 0.74rem; font-family: 'Outfit', sans-serif !important; }
  .hero-title { font-size: 2.3rem !important; line-height: 1.15; margin-bottom: 16px; text-shadow: 0 2px 8px rgba(2, 18, 38, 0.6) !important; }
  .hero-title .accent { text-shadow: none !important; }
  .hero-sub { font-size: 0.94rem !important; margin-bottom: 28px; line-height: 1.65; max-width: 100% !important; text-shadow: 0 1px 4px rgba(2, 18, 38, 0.6) !important; }
  .hero-actions { flex-direction: column !important; width: 100% !important; gap: 10px !important; }
  .btn-primary, .btn-outline { width: 100% !important; justify-content: center !important; padding: 13px 20px !important; }


  /* Sections & Layout */
  .section { padding: 48px 0 !important; }
  .section-title { font-size: 2rem !important; }
  .about-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .about-img { height: 300px !important; }
  .services-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .team-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 28px !important; }
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr !important; gap: 14px !important; }
  .form-wrapper { padding: 24px 16px !important; border-radius: 16px !important; }
  
  /* Stats 2x2 Grid */
  .stats-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 24px 0 !important;
  }
  .stat-item {
    background: rgba(5, 37, 80, 0.45) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(200, 155, 60, 0.2) !important;
    border-radius: 14px !important;
    padding: 16px 12px !important;
    text-align: center !important;
  }
  .stat-num { font-size: 2rem !important; }
  .stat-label { font-size: 0.78rem !important; }
  
  /* Mobile Forms — iOS Zoom Fix */
  input, select, textarea {
    font-size: 16px !important;
    min-height: 46px;
    border-radius: 10px !important;
  }
  
  /* Floating Buttons on Mobile */
  .float-actions {
    right: 16px !important;
    bottom: 72px !important;
    gap: 8px !important;
  }
  .float-wa, .float-call {
    padding: 10px 14px !important;
    font-size: 0.8rem !important;
  }
  .float-icon-png {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.95rem !important; }
  .section-title { font-size: 1.75rem !important; }
  .mobile-drawer { width: 92% !important; }
  .drawer-helpline-grid { grid-template-columns: 1fr !important; }
  .top-contact-item.mail-item { display: none !important; }
}

/* =====================================================
   FLOATING ACTION BUTTONS — WhatsApp + Call
   ===================================================== */
.float-actions {
  position: fixed;
  right: 24px; bottom: 86px; /* Positioned comfortably ABOVE back-to-top button */
  z-index: 9000;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}

/* WhatsApp Button */
.float-wa {
  display: flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 18px 13px 16px;
  border-radius: 50px;
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: floatPulseGreen 3s ease infinite;
}
.float-wa svg { width: 22px; height: 22px; flex-shrink: 0; }
.float-wa:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.float-wa .float-label { white-space: nowrap; }

/* Call Button */
.float-call {
  display: flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: #fff;
  padding: 13px 18px 13px 16px;
  border-radius: 50px;
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(200,155,60,0.4);
  transition: all var(--transition);
}
.float-call svg { width: 20px; height: 20px; flex-shrink: 0; animation: floatCallRing 2.5s ease infinite; }
.float-call:hover { transform: translateY(-3px) scale(1.04); background: var(--gold-dark); box-shadow: 0 10px 32px rgba(200,155,60,0.55); }
.float-call .float-label { white-space: nowrap; }

@keyframes floatPulseGreen {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}
@keyframes floatCallRing {
  0%,100% { transform: rotate(0deg); }
  10%     { transform: rotate(-15deg); }
  20%     { transform: rotate(15deg); }
  30%     { transform: rotate(-10deg); }
  40%     { transform: rotate(0deg); }
}

/* Collapse to icon-only on mobile & position above back-top */
@media (max-width: 640px) {
  .back-top { bottom: 16px !important; right: 16px !important; width: 44px !important; height: 44px !important; }
  .float-actions { right: 16px !important; bottom: 72px !important; gap: 8px !important; z-index: 9000 !important; }
  .float-wa, .float-call { width: 44px !important; height: 44px !important; padding: 0 !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; }
  .float-icon-png { width: 22px !important; height: 22px !important; margin: 0 !important; }
  .float-label { display: none !important; }
}

/* ─ Hide old preloader if still in DOM ─ */
#preloader { display: none !important; }

/* =====================================================
   FOOTER BOTTOM — Copyright & Dextigo Credit
   ===================================================== */
.footer-bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* Dextigo Credit */
.footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.dextigo-link {
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 0.3px;
  transition: all var(--transition) !important;
  border-bottom: 1px solid transparent;
}
.dextigo-link:hover {
  color: #e8b84b !important;
  border-bottom-color: var(--gold);
}

@media (max-width: 640px) {
  .footer-bottom .container {
    flex-direction: column;
    gap: 6px;
  }
  .footer-bottom p,
  .footer-credit { text-align: center; }
}

/* =====================================================
   INNER PAGES STYLING (About, Programs, Placements, Contact, Apply)
   ===================================================== */

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, #021226 0%, #052550 50%, #08346e 100%);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #C89B3C;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(21, 159, 227, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner-inner {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
}
.breadcrumb a {
  color: #159FE3;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #C89B3C; }
.breadcrumb-sep { color: #C89B3C; }
.page-banner-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-banner-title span {
  color: #C89B3C;
}
.page-banner-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  line-height: 1.65;
}

/* Dedicated Apply Page Layout */
.apply-page-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}
.apply-form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(5, 37, 80, 0.08);
  border: 1px solid rgba(200, 155, 60, 0.25);
}
.apply-form-box label,
.apply-form-box .form-group label {
  color: #052550 !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
}
.apply-form-box .form-group .req {
  color: #e11d48 !important;
  font-weight: 800 !important;
}
.apply-form-box input,
.apply-form-box select,
.apply-form-box textarea {
  background: #f8fafc !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  border-radius: 10px !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
}
.apply-form-box input::placeholder,
.apply-form-box textarea::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
}
.apply-form-box input:focus,
.apply-form-box select:focus,
.apply-form-box textarea:focus {
  background: #ffffff !important;
  border-color: #C89B3C !important;
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.20) !important;
  color: #052550 !important;
}
.apply-form-box select option {
  background: #ffffff !important;
  color: #0f172a !important;
}
.apply-form-box .form-section-label {
  color: #052550 !important;
  border-bottom: 2px solid #C89B3C !important;
}
.apply-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 24px rgba(5, 37, 80, 0.06);
  border: 1px solid rgba(5, 37, 80, 0.08);
}
.sidebar-card.gold-accent {
  border-left: 4px solid #C89B3C;
}
.sidebar-card.navy-card {
  background: linear-gradient(135deg, #052550, #0a3a78);
  color: #ffffff;
  border-left: 4px solid #159FE3;
}
.sidebar-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #052550;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-card.navy-card h3 { color: #ffffff; }
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #475569;
}
.sidebar-card.navy-card .sidebar-list li {
  color: rgba(255, 255, 255, 0.9);
}
.sidebar-list-check {
  color: #10B981;
  font-weight: 700;
  flex-shrink: 0;
}
.sidebar-helpline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.helpline-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.helpline-call {
  background: #C89B3C;
  color: #052550;
}
.helpline-call:hover { background: #dcb04d; transform: translateY(-2px); }
.helpline-wa {
  background: #25D366;
  color: #ffffff;
}
.helpline-wa:hover { background: #1eb956; transform: translateY(-2px); }

/* Steps Workflow (1, 2, 3, 4, 5) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 18px rgba(5, 37, 80, 0.06);
  border: 1px solid rgba(200, 155, 60, 0.2);
  position: relative;
  text-align: center;
}
.step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #052550, #159FE3);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 14px;
  border: 2px solid #C89B3C;
}
.step-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #052550;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Detailed Course Page Cards */
.program-detail-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(200, 155, 60, 0.25);
  box-shadow: 0 8px 32px rgba(5, 37, 80, 0.07);
  padding: 36px 32px;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(5, 37, 80, 0.12);
}
.program-detail-card.alt-order {
  grid-template-columns: 1fr 1.1fr;
}
.program-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 155, 60, 0.12);
  color: #926f1c;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.program-detail-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #052550;
  margin-bottom: 12px;
}
.program-detail-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 20px;
}
.program-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.meta-chip {
  background: #f1f5f9;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #052550;
  border-left: 3px solid #159FE3;
}
.program-syllabus-box {
  background: #f8fafc;
  border-radius: 14px;
  padding: 20px;
  border: 1px dashed rgba(5, 37, 80, 0.15);
}
.program-syllabus-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #052550;
  margin-bottom: 12px;
}
.program-syllabus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.program-syllabus-list li {
  font-size: 0.85rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 6px;
}
.program-syllabus-list li span {
  color: #C89B3C;
  font-weight: bold;
}

/* FAQ Section */
.faq-list {
  max-width: 840px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(5, 37, 80, 0.08);
  box-shadow: 0 4px 16px rgba(5, 37, 80, 0.04);
  overflow: hidden;
  transition: all 0.25s ease;
}
.faq-item:hover { border-color: rgba(200, 155, 60, 0.35); }
.faq-question {
  padding: 20px 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #052550;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-icon {
  font-size: 1.2rem;
  color: #C89B3C;
  font-weight: 700;
  transition: transform 0.25s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* Responsive inner pages */
@media (max-width: 960px) {
  .apply-page-grid {
    grid-template-columns: 1fr;
  }
  .program-detail-card,
  .program-detail-card.alt-order {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .page-banner {
    padding: 120px 0 40px;
  }
  .page-banner-title {
    font-size: 2.1rem;
  }
  .program-syllabus-list {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   CAMPUS & GALLERY PAGE STYLES
════════════════════════════════════════════════════ */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.filter-btn {
  background: #ffffff;
  border: 1.5px solid rgba(5, 37, 80, 0.15);
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #052550;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: #052550;
  color: #ffffff;
  border-color: #052550;
  box-shadow: 0 4px 16px rgba(5, 37, 80, 0.2);
}
.gallery-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}
.gallery-item {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(5, 37, 80, 0.08);
  border: 1px solid rgba(5, 37, 80, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(5, 37, 80, 0.16);
  border-color: rgba(200, 155, 60, 0.4);
}
.gallery-thumb-box {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #052550;
}
.gallery-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover .gallery-thumb-img {
  transform: scale(1.08);
}
.gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(5, 37, 80, 0.85);
  backdrop-filter: blur(8px);
  color: #C89B3C;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(200, 155, 60, 0.35);
  letter-spacing: 0.5px;
}
.gallery-caption {
  padding: 20px 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gallery-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #052550;
  margin-bottom: 8px;
  line-height: 1.3;
}
.gallery-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}
.facility-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.facility-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(5, 37, 80, 0.08);
  box-shadow: 0 4px 16px rgba(5, 37, 80, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.facility-card:hover {
  transform: translateY(-4px);
  border-color: #C89B3C;
}
.facility-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(21, 159, 227, 0.12), rgba(5, 37, 80, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.facility-icon-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.facility-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #052550;
  margin-bottom: 8px;
}
.facility-card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 640px) {
  .gallery-cards-grid {
    grid-template-columns: 1fr;
  }
}
