/* =====================================================
   SANTHIGIRI COLLEGE OF COMPUTER SCIENCES
   BBA Aviation & Logistics — Landing Page
   style.css
   Logo palette: Deep Navy #0a1f5c · Royal Blue #1a3fa8 · Cobalt #1e4db7
   ===================================================== */

:root {
  --navy:       #0a1f5c;
  --royal:      #1a3fa8;
  --cobalt:     #1e4db7;
  --blue-mid:   #2d6be4;
  --blue-pale:  #e8eef8;
  --blue-muted: #c7d6f0;
  --gold:       #c9a227;
  --gold-light: #e8bb3a;
  --gold-pale:  #fdf3d7;
  --dark:       #060d1f;
  --dark2:      #0d1830;
  --text:       #2c3a5a;
  --muted:      #6b7a9e;
  --light:      #f4f7fc;
  --border:     #d4ddf0;
  --white:      #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --r-sm: 8px;  --r-md: 14px;  --r-lg: 22px;  --r-xl: 32px;
  --sh-sm: 0 2px 12px rgba(10,31,92,.08);
  --sh-md: 0 8px 32px rgba(10,31,92,.13);
  --sh-lg: 0 20px 60px rgba(10,31,92,.18);
  --sh-xl: 0 32px 80px rgba(10,31,92,.24);
  --ease: all .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--royal); border-radius: 3px; }

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
  }

  .container, 
  .container-fluid {
      width: 100% !important;
      max-width: 100% !important; 
      padding-left: 15px;
      padding-right: 15px;
      margin-left: 0 !important;
      margin-right: 0 !important;
      overflow: hidden; 
  }

  /* 3. Fix the Hero Row */
  .hero-row {
      flex-direction: column; 
      min-height: auto;
      width: 100%;
  }

  .hero-img-col, 
  .hero-content-col {
      width: 100% !important; 
  }

  .hero-img-badge, 
  .hero-img-stat {
      right: 10px !important; 
  }
}

/* ===================================================
   NAVBAR
=================================================== */
#mainNav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,221,240,.5);
  padding: 12px 0;
  z-index: 1060;
  transition: var(--ease);
}
#mainNav.scrolled { padding: 8px 0; box-shadow: var(--sh-md); }

.nav-logo {
  height: 46px; width: auto;
  filter: brightness(0) saturate(100%) invert(17%) sepia(80%) saturate(800%) hue-rotate(210deg) brightness(70%);
}

.nav-course-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  border: 1px solid var(--blue-muted);
  color: var(--royal);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
}
.nav-course-badge i { color: var(--gold); }

.btn-enquiry {
  background: linear-gradient(135deg, var(--navy), var(--royal));
  color: #fff; border: none;
  border-radius: 50px;
  padding: 10px 26px;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 4px 18px rgba(26,63,168,.35);
  transition: var(--ease);
}
.btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(26,63,168,.48);
  color: #fff;
}
.nav-actions {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .nav-logo {
    height: 38px; /* Slightly smaller logo for mobile space */
  }

  .btn-enquiry {
    padding: 8px 16px; /* Compact padding for mobile */
    font-size: 13px;
  }
  
  .btn-enquiry i {
    font-size: 12px;
  }
}

/* ===================================================
   HERO — Full-width compact banner (~68vh)
=================================================== */
.hero-section {
  position: relative;
  height: 68vh;
  min-height: 480px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background image — fills entire section */
.hero-bg-img {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* Multi-layer overlay: dark on left, lighter right */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,13,31,.88) 0%,
    rgba(10,31,92,.80) 45%,
    rgba(10,31,92,.55) 75%,
    rgba(10,31,92,.30) 100%
  );
  z-index: 1;
}

/* Subtle radial glow for depth */
.hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(201,162,39,.12) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Text body — sits in upper portion of banner */
.hero-banner-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 0 24px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.62);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-light); flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -.3px;
  margin-bottom: 14px;
}
.hero-title em {
  font-style: italic; color: var(--gold-light); display: block;
}

.hero-subtitle {
  color: rgba(255,255,255,.75);
  font-size: 15px; line-height: 1.75;
  margin-bottom: 20px;
  max-width: 540px;
}

/* Pills row */
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.hpill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  padding: 5px 13px; border-radius: 50px;
  font-size: 12px; font-weight: 500;
  white-space: nowrap; backdrop-filter: blur(4px);
}
.hpill i { color: var(--gold-light); font-size: 11px; }

/* Trust row */
.hero-trust-row {
  display: flex; align-items: center;
  padding-top: 0;
  border-top: none;
}
.htr-item {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.68); font-size: 12.5px; font-weight: 500;
  padding: 0 18px;
}
.htr-item:first-child { padding-left: 0; }
.htr-item i { color: var(--gold-light); font-size: 14px; }
.htr-sep {
  width: 1px; height: 22px;
  background: rgba(255,255,255,.2); flex-shrink: 0;
}

/* ===================================================
   ENQUIRY FORM CARD — prominent overlap element
   Overlaps hero bottom by ~50% of card height
=================================================== */
.form-section-wrap {
  position: relative;
  z-index: 30;
  margin-top: -64px;      /* pulls card up into hero */
  padding-bottom: 0;
}

.enquiry-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 80px rgba(10,31,92,.22), 0 4px 20px rgba(10,31,92,.12);
  overflow: hidden;
  border: 1px solid rgba(212,221,240,.6);
}

/* ---- Card header ---- */
.efc-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--cobalt) 100%);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.efc-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.efc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold-light);
  flex-shrink: 0;
}

.efc-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: #fff; margin-bottom: 3px; line-height: 1.2;
}
.efc-header p {
  color: rgba(255,255,255,.65);
  font-size: 13px; margin: 0; line-height: 1.5;
}
.efc-header p strong { color: var(--gold-light); font-weight: 700; }

.efc-header-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  padding: 10px 16px;
  flex-shrink: 0;
}
.efc-header-badge i { font-size: 20px; color: var(--gold-light); }
.efc-header-badge span {
  color: #fff; font-size: 12px; font-weight: 700;
  line-height: 1.35; text-align: left;
}

/* ---- Card form body ---- */
.efc-body {
  padding: 22px 28px 20px;
  background: var(--white);
}

.efc-form {}

.efc-field-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.efc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.efc-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.efc-input-wrap {
  position: relative;
}
.efc-input-icon {
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--royal);
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}

.efc-input-wrap input {
  width: 100%;
  height: 48px;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0 14px 0 38px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--light);
  transition: var(--ease);
  outline: none;
}

.efc-input-wrap input:focus {
  border-color: var(--royal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26,63,168,.12);
}

.efc-input-wrap input::placeholder {
  color: var(--muted);
  font-size: 13px;
}

/* Submit column */
.efc-submit-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
}

.efc-submit-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
}

.efc-submit-btn {
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  border-radius: var(--r-sm);
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 22px rgba(201,162,39,.45);
  transition: var(--ease);
  white-space: nowrap;
  letter-spacing: .2px;
}
.efc-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,162,39,.6);
}
.efc-submit-btn i { font-size: 18px; }

.efc-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.efc-note i { color: var(--royal); font-size: 11px; }

/* ===================================================
   STATS — compact inline strip, no bars
=================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--navy), var(--dark2));
  padding: 28px 0;
  margin-top: 0;
}

.stats-track {
  display: flex;
  align-items: center;
}

.stat-block {
  flex: 1;
  padding: 0 24px;
}

.stat-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  flex-shrink: 0;
}

.stat-label-wrap strong {
  display: block;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}
.stat-label-wrap span {
  color: rgba(255,255,255,.42);
  font-size: 11.5px;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ===================================================
   SHARED SECTION STYLES
=================================================== */
.section-pad { padding: 96px 0; }

.section-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-pale); color: var(--royal);
  border: 1px solid var(--blue-muted); border-radius: 50px;
  padding: 6px 16px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.section-chip.light {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.15; letter-spacing: -.4px;
}
.section-title span { color: var(--royal); }
.section-title.white { color: #fff; }
.section-title span.gold { color: var(--gold-light); }

.section-intro-text { color: var(--muted); font-size: 15px; line-height: 1.8; }

.custom-input {
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 11px 14px; font-size: 14px; font-family: var(--font-body);
  color: var(--navy); background: var(--light); transition: var(--ease);
}
.custom-input:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(26,63,168,.1);
  background: #fff; outline: none;
}
.form-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.btn-submit {
  background: linear-gradient(135deg, var(--navy), var(--cobalt));
  color: #fff; border: none; border-radius: 50px; padding: 13px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 20px rgba(26,63,168,.35); transition: var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(26,63,168,.5); color: #fff; }
.form-note { text-align: center; color: var(--muted); font-size: 12px; }

/* ===================================================
   ABOUT
=================================================== */
.about-mosaic { display: flex; gap: 12px; height: 480px; }
.am-main {
  flex: 1; position: relative;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg);
}
.am-main img { width: 100%; height: 100%; object-fit: cover; }
.am-tag {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(10,31,92,.85); backdrop-filter: blur(8px);
  color: #fff; padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  border: 1px solid rgba(255,255,255,.2);
}
.am-tag i { color: var(--gold-light); }
.am-side {
  display: flex; flex-direction: column; gap: 12px;
  width: 160px; flex-shrink: 0;
}
.am-sm { flex: 1; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-md); }
.am-sm img { width: 100%; height: 100%; object-fit: cover; }
.am-accent {
  height: 140px; border-radius: var(--r-md);
  background: linear-gradient(145deg, var(--navy), var(--cobalt));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; box-shadow: var(--sh-md); gap: 4px;
}
.am-accent i { font-size: 26px; color: var(--gold-light); }
.am-accent strong { color: #fff; font-size: 18px; font-weight: 700; }
.am-accent span { color: rgba(255,255,255,.65); font-size: 12px; }

.about-content-panel { padding-left: 8px; }
.acp-lead { font-size: 15.5px; font-weight: 600; color: var(--navy); line-height: 1.8; margin-bottom: 10px; }
.acp-body { color: var(--muted); font-size: 14.5px; line-height: 1.8; margin-bottom: 24px; }
.acp-highlights { display: flex; flex-direction: column; gap: 14px; }
.acp-hl {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border-radius: var(--r-md);
  background: var(--light); border: 1px solid var(--border);
  transition: var(--ease);
}
.acp-hl:hover { border-color: var(--royal); background: var(--blue-pale); transform: translateX(4px); }
.acp-num {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--blue-muted); min-width: 32px; padding-top: 2px;
}
.acp-hl strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.acp-hl p { font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ===================================================
   CAREERS — sector banner + role cards (no salary)
=================================================== */
.career-section {
  background: linear-gradient(155deg, var(--dark) 0%, var(--navy) 60%, var(--dark2) 100%);
  position: relative; overflow: hidden;
}
.career-section::before {
  content: '';
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,77,183,.2) 0%, transparent 70%);
  top: -300px; right: -150px; pointer-events: none;
}

.career-intro {
  color: rgba(255,255,255,.6); font-size: 15px;
  max-width: 560px; margin: 0 auto; line-height: 1.8;
}

.career-zone { display: flex; flex-direction: column; gap: 28px; }

/* ---- Sector banner: clean 2×2 grid ---- */
.career-scope-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
/* hide old HTML dividers if present */
.csb-divider { display: none; }

.csb-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 24px;
  background: rgba(255,255,255,.02);
  transition: var(--ease);
}
.csb-item:hover { background: rgba(255,255,255,.07); }
.csb-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(201,162,39,.13);
  display: flex; align-items: center; justify-content: center;
}
.csb-icon i { font-size: 19px; color: var(--gold-light); }
.csb-text h6 { color: #fff; font-size: 13.5px; font-weight: 700; margin-bottom: 5px; }
.csb-text p { color: rgba(255,255,255,.48); font-size: 12.5px; line-height: 1.6; margin: 0; }

/* ---- Role cards: 3-column grid ---- */
.career-roles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.crole-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 20px;
  transition: var(--ease); display: flex; flex-direction: column; gap: 10px;
}
.crole-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(201,162,39,.3);
  transform: translateY(-4px);
}
.crc-header { display: flex; align-items: center; justify-content: space-between; }
.crc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(201,162,39,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.crc-icon i { font-size: 18px; color: var(--gold-light); }
.crc-sector {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--gold-light);
  background: rgba(201,162,39,.12); border-radius: 50px; padding: 3px 10px;
}
.crole-card h6 { color: #fff; font-size: 14px; font-weight: 700; line-height: 1.3; }
.crole-card p { color: rgba(255,255,255,.52); font-size: 12.5px; line-height: 1.65; flex: 1; margin: 0; }
.crc-footer {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 10px; border-top: 1px solid rgba(255,255,255,.07);
}
.crc-footer span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; color: rgba(255,255,255,.38);
}
.crc-footer i { font-size: 11px; }

/* ===================================================
   WHY SECTION — equal height columns
   Left image fills the same height as the right timeline
=================================================== */
.why-section { background: var(--white); }

.why-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: stretch; /* ← key: both columns same height */
}

/* Left column stretches to match right */
.why-img-col {
  display: flex;
  flex-direction: column;
}

/* Image grid fills 100% of the left column's height */
.wic-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 88px;
  gap: 12px;
  position: relative;
  flex: 1; /* fill why-img-col height */
}

.wic-main-img {
  grid-column: 1 / 3; grid-row: 1 / 2;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg);
}
.wic-main-img img { width: 100%; height: 100%; object-fit: cover; }

.wic-sub-img {
  grid-column: 1 / 2; grid-row: 2 / 3;
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-md);
}
.wic-sub-img img { width: 100%; height: 100%; object-fit: cover; }

.wic-third-img {
  grid-column: 2 / 3; grid-row: 2 / 3;
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-md);
}
.wic-third-img img { width: 100%; height: 100%; object-fit: cover; }

/* Facts strip — fixed height, fills bottom row */
.wic-facts {
  grid-column: 1 / 3; grid-row: 3 / 4;
  background: linear-gradient(135deg, var(--navy), var(--cobalt));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: space-around;
  padding: 12px 20px;
  box-shadow: var(--sh-md);
}
.wicf-item { text-align: center; }
.wicf-item strong {
  display: block; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--gold-light); line-height: 1;
}
.wicf-item span { color: rgba(255,255,255,.58); font-size: 11px; text-transform: uppercase; letter-spacing: .5px; }

/* Gold badge overlapping image top-left */
.wic-badge {
  position: absolute;
  top: 16px; left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--r-md); padding: 11px 15px;
  text-align: center; box-shadow: var(--sh-lg); z-index: 2;
  min-width: 96px;
}
.wic-badge i { font-size: 17px; color: var(--navy); margin-bottom: 3px; display: block; }
.wic-badge strong { display: block; color: var(--navy); font-size: 13px; font-weight: 800; }
.wic-badge span { display: block; color: rgba(10,31,92,.7); font-size: 10px; font-weight: 600; }

/* Right: content / timeline */
.why-content-col { padding-top: 6px; }

.why-timeline { display: flex; flex-direction: column; margin-top: 22px; }

.wt-item { display: flex; gap: 14px; }
.wt-left {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 38px;
}
.wt-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-pale); border: 2px solid var(--blue-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--royal); flex-shrink: 0; z-index: 1;
}
.wt-line {
  flex: 1; width: 2px;
  background: linear-gradient(to bottom, var(--blue-muted), transparent);
  margin: 4px 0; min-height: 14px;
}
.wt-card {
  display: flex; gap: 14px;
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 15px; margin-bottom: 12px;
  flex: 1; transition: var(--ease);
}
.wt-card:hover { border-color: var(--royal); box-shadow: var(--sh-sm); transform: translateX(4px); }
.wt-icon-wrap {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px; flex-shrink: 0;
}
.wt-text h5 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.wt-text p { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ===================================================
   CAMPUS BENTO
=================================================== */
.campus-section { background: var(--light); }

.campus-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 220px;
  gap: 12px;
}
.cb { border-radius: var(--r-lg); overflow: hidden; position: relative; box-shadow: var(--sh-sm); }
.cb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cb:hover img { transform: scale(1.06); }
.cb-info {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,31,92,.88) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; opacity: 0; transition: var(--ease);
}
.cb:hover .cb-info { opacity: 1; }
.cb-info i { font-size: 20px; color: var(--gold-light); margin-bottom: 5px; }
.cb-info h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.cb-info p { color: rgba(255,255,255,.7); font-size: 13px; margin: 0; }

.cb-large { grid-column: 1 / 7; grid-row: 1 / 2; }
.cb-tall  { grid-column: 7 / 10; grid-row: 1 / 3; }
.cb-med   { grid-column: 10 / 13; grid-row: 1 / 2; }
.cb-sm:nth-of-type(4) { grid-column: 1 / 4; grid-row: 2 / 3; }
.cb-sm:nth-of-type(5) { grid-column: 4 / 7; grid-row: 2 / 3; }
.cb-wide  { grid-column: 10 / 13; grid-row: 2 / 3; }

/* ===================================================
   CTA STRIP
=================================================== */
.cta-strip { position: relative; padding: 80px 0; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('../images/cta.jpg');
  background-size: cover; background-position: center;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,31,92,.95), rgba(30,77,183,.88));
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff; font-weight: 700; margin-bottom: 12px;
}
.cta-strip p { color: rgba(255,255,255,.75); font-size: 15px; margin: 0; line-height: 1.7; }
.btn-cta-white {
  background: #fff; color: var(--navy); border: none; border-radius: 50px;
  padding: 15px 34px; font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 28px rgba(0,0,0,.2); transition: var(--ease); white-space: nowrap;
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.3); color: var(--royal); }

/* ===================================================
   FOOTER
=================================================== */
.site-footer { background: var(--dark); padding: 68px 0 34px; }
.footer-logo {
  height: 50px; width: auto;
  filter: brightness(0) invert(1) opacity(.85);
}
.footer-tagline { color: rgba(255,255,255,.4); font-size: 13.5px; line-height: 1.7; max-width: 360px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); text-decoration: none; font-size: 15px;
  transition: var(--ease);
}
.social-icon:hover { background: var(--royal); border-color: var(--royal); color: #fff; transform: translateY(-3px); }
.footer-heading { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.45); font-size: 14px; text-decoration: none; transition: var(--ease); display: inline-block; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 12px; color: rgba(255,255,255,.45); font-size: 14px; margin-bottom: 14px; line-height: 1.6; }
.footer-contact i { color: var(--gold-light); flex-shrink: 0; font-size: 14px; margin-top: 3px; }
.footer-hr { border-color: rgba(255,255,255,.07); margin: 42px 0 22px; }
.footer-copy { color: rgba(255,255,255,.28); font-size: 13px; margin: 0; }

/* ===================================================
   MODAL
=================================================== */
.modal-custom { border: none; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-xl); }
.mcustom-header {
  background: linear-gradient(135deg, var(--navy), var(--cobalt));
  padding: 22px 26px; display: flex; justify-content: space-between; align-items: flex-start;
}
.mcustom-header h5 { font-family: var(--font-display); color: #fff; font-size: 20px; margin-bottom: 3px; font-weight: 700; }
.mcustom-header p { color: rgba(255,255,255,.6); font-size: 13px; margin: 0; }
.mcustom-close {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease); flex-shrink: 0;
}
.mcustom-close:hover { background: rgba(255,255,255,.22); }
.modal.fade .modal-dialog { transform: scale(.93) translateY(-24px); transition: all .35s cubic-bezier(.4,0,.2,1); }
.modal.show .modal-dialog { transform: scale(1) translateY(0); }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1200px) {
  .why-layout { grid-template-columns: 360px 1fr; gap: 44px; }
  .hero-content-inner { padding: 32px 36px 32px 40px; }
}

@media (max-width: 991px) {
  /* Hero: stack image above content */
  .hero-row { flex-direction: column; min-height: auto; }
  .hero-img-col { width: 100%; min-height: 52vw; max-height: 380px; }
  .hero-img-badge { right: 20px; bottom: 20px; }
  .hero-img-stat { top: 20px; right: 12px; }
  .hero-content-col { width: 100%; }
  .hero-content-inner { padding: 36px 28px 32px; max-width: 100%; }
  .hero-pills { flex-wrap: wrap; }

  /* Form card: 2-col fields + button full width */
  .efc-field-group { grid-template-columns: 1fr 1fr; gap: 12px; }
  .efc-submit-col { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 14px; }
  .efc-submit-label { white-space: nowrap; min-width: auto; }
  .efc-submit-btn { flex: 1; }
  .form-section-wrap { margin-top: -52px; }
  .efc-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .efc-header-badge { align-self: flex-start; }

  .stats-track { flex-wrap: wrap; }
  .stat-block { min-width: 50%; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .stat-sep { display: none; }


  /* Why: stack columns */
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .wic-wrap { min-height: 480px; grid-template-rows: 1fr 1fr 80px; }
  .wic-badge { left: 10px; }

  .career-roles-grid { grid-template-columns: 1fr 1fr; }

  .campus-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .cb-large, .cb-tall, .cb-med { grid-column: auto; grid-row: auto; height: 220px; }
  .cb-sm, .cb-wide { grid-column: auto; grid-row: auto; height: 180px; }

  .about-mosaic { height: 320px; }
  .am-side { width: 120px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .efc-field-group { grid-template-columns: 1fr; }
  .efc-submit-col { flex-direction: column; }
  .efc-submit-btn { width: 100%; }
  .form-section-wrap { margin-top: -40px; }
  .efc-header { padding: 16px 20px; }
  .efc-body { padding: 18px 20px; }
  .career-roles-grid { grid-template-columns: 1fr; }
  .career-scope-banner { grid-template-columns: 1fr; }
  .wic-wrap { grid-template-rows: 200px 140px 80px; }
  .hero-content-inner { padding: 28px 20px 24px; }
}

@media (max-width: 575px) {
  .hero-img-col { min-height: 260px; }
  .hero-title { font-size: 1.85rem; }
  .form-section-wrap { margin-top: -32px; }
  .efc-header h3 { font-size: 1.15rem; }
  .efc-header-badge { display: none; }
  .campus-bento { grid-template-columns: 1fr; }
  .cb-large, .cb-tall, .cb-med, .cb-sm, .cb-wide { height: 200px; }
  .wic-wrap { grid-template-columns: 1fr; grid-template-rows: 200px 150px auto; }
  .wic-sub-img, .wic-third-img { grid-column: 1; }
  .wic-facts { grid-column: 1; }
}

/* ===================================================
   THANK YOU , ERROR AND EXIST PAGES
=================================================== */
.status-wrapper {
    background: var(--light);
    padding: 100px 0;
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.status-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    border: 1px solid var(--border);
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.status-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

/* Color Modifiers */
.status-card.success .status-icon { color: var(--gold); }
.status-card.error .status-icon { color: #e53e3e; }
.status-card.error h1 span { color: #e53e3e; }

.status-card h1 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4.5vw, 46px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.status-card p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .status-card { padding: 40px 20px; margin: 0 15px; }
}
