/* ═══════════════════════════════════════════
   SGVU Static Site – styles.css
   Pure CSS conversion from Tailwind + React
   ═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  background: #fff;
  color: #0d244b;
  overflow-x: hidden;
}
img, iframe, video { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: transparent; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── CSS VARIABLES ── */
:root {
  --blue:    #0d244b;
  --gold:    #c1963f;
  --gold2:   #cfa858;
  --light:   #1a459b;
  --white:   #ffffff;
  --slate:   #64748b;
  --slate-l: #f8fafc;
  --radius:  0.5rem;
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: 43px;
  padding: 0 40px;
}
@media (min-width: 768px) { .topbar { display: flex; } }
.topbar-left { display: flex; align-items: center; gap: 24px; }
.topbar-item { display: flex; align-items: center; gap: 10px; }
.topbar-icon { width: 18px; height: 18px; }
.topbar-icon-email { width: 20px; height: 16px; }
.topbar-link {
  font-family: 'Lato', Helvetica;
  font-size: 11px;
  color: #fff;
  white-space: nowrap;
  transition: text-decoration 0.2s;
}
.topbar-link:hover { text-decoration: underline; }
.topbar-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  padding: 2px 8px;
  cursor: pointer;
}
.topbar-icon-lang { width: 20px; height: 20px; }
.topbar-lang-text { font-family: 'Lato', Helvetica; font-size: 11px; color: #fff; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 4px -2px rgba(0,0,0,0.1), 0 4px 6px -1px rgba(0,0,0,0.1);
  height: 64px;
}
@media (min-width: 768px) { .navbar { height: 80px; } }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 16px;
}
@media (min-width: 768px) { .navbar-inner { padding: 0 40px; } }

.navbar-logo {
  width: 160px;
  height: 38px;
  flex-shrink: 0;
  background: url('https://c.animaapp.com/mn0n10j9vDypoz/img/container-1.png') 50% 50% / contain no-repeat;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) { .navbar-logo { width: 245px; height: 59px; } }

.navbar-links { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .navbar-links { display: flex; } }

.nav-link {
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.32px;
  color: var(--blue);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}
.nav-link:hover, .nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

.navbar-cta { display: none; align-items: center; gap: 12px; }
@media (min-width: 768px) { .navbar-cta { display: flex; } }

.btn-apply-nav, .btn-login-nav {
  height: auto;
  padding: 8px 24px;
  border-radius: 9999px;
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 4px 6px -4px rgba(0,0,0,0.1), 0 10px 15px -3px rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-apply-nav { background: var(--gold); }
.btn-apply-nav:hover { background: #a87d35; }
.btn-login-nav { background: var(--blue); }
.btn-login-nav:hover { background: #0a1d3d; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) { .hamburger { display: none; } }

.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open .ham-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; }
.hamburger.open .ham-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: #fff;
  flex-direction: column;
  padding: 16px 24px 32px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

.mobile-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  width: 100%;
  text-align: left;
  padding: 16px 12px;
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.32px;
  color: var(--blue);
  border-bottom: 1px solid #f1f5f9;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-contact { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.mobile-contact-link { font-family: 'Lato', Helvetica; font-size: 13px; color: #64748b; }
.mobile-contact-link:hover { color: var(--blue); }
.mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.btn-apply-mobile, .btn-login-mobile {
  width: 100%;
  padding: 12px;
  border-radius: 9999px;
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  border: none;
  cursor: pointer;
}
.btn-apply-mobile { background: var(--gold); }
.btn-login-mobile { background: var(--blue); }

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 820px;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 177.77vh;
  height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: brightness(1.1) contrast(1.1);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 32px;
  padding: 32px 16px;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    align-items: flex-start;
    padding: 39px 40px;
  }
}

.hero-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.hero-headline { margin-bottom: 35px; }
.hero-h1 {
  font-family: 'Lato', Helvetica;
  font-size: 32px;
  line-height: 1.1;
  text-shadow: 0 3.93px 2.95px rgba(0,0,0,0.07), 0 1.96px 1.96px rgba(0,0,0,0.06);
}
@media (min-width: 768px) { .hero-h1 { font-size: 47.1px; line-height: 1; } }
.hero-h1-white { font-weight: 900; color: #fff; }
.hero-h1-gold { font-weight: 900; color: var(--gold); }
.hero-h1-italic { font-style: italic; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }

.hero-placement-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .hero-placement-row { flex-direction: row; align-items: flex-end; } }

.hero-stat-box {
  position: relative;
  width: 300px;
  height: 130px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) { .hero-stat-box { width: 380px; } }

.hero-stat-number {
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 38px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
@media (min-width: 768px) { .hero-stat-number { font-size: 52px; } }
.hero-stat-cr { font-size: 20px; }
@media (min-width: 768px) { .hero-stat-cr { font-size: 28px; } }
.hero-stat-label {
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (min-width: 768px) { .hero-stat-label { font-size: 12px; letter-spacing: 5px; } }

.hero-student-card {
  width: 200px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  flex-shrink: 0;
  transform: rotate(-2deg);
  transition: transform 0.3s;
  cursor: pointer;
}
.hero-student-card:hover { transform: rotate(0deg); }
@media (min-width: 768px) { .hero-student-card { width: 240px; } }

.hero-student-img-wrap { width: 100%; height: 160px; overflow: hidden; background: #e2e8f0; }
@media (min-width: 768px) { .hero-student-img-wrap { height: 190px; } }
.hero-student-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.hero-student-info {
  padding: 16px 20px;
  text-align: center;
}
.hero-student-degree { font-family: 'Lato', Helvetica; font-weight: 700; font-size: 10px; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
@media (min-width: 768px) { .hero-student-degree { font-size: 12px; } }
.hero-student-name { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 18px; color: var(--blue); line-height: 1.2; margin-bottom: 12px; }
@media (min-width: 768px) { .hero-student-name { font-size: 22px; } }
.hero-student-placed {
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  padding: 10px 8px;
}
.hero-student-placed-label { font-family: 'Lato', Helvetica; font-weight: 700; font-size: 9px; color: #94a3b8; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; }
.hero-student-placed-company { font-family: 'Lato', Helvetica; font-weight: 700; font-size: 13px; color: var(--light); white-space: nowrap; }
@media (min-width: 768px) { .hero-student-placed-company { font-size: 15px; } }

.hero-subline { margin-bottom: 24px; }
.hero-subline-text {
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
@media (min-width: 768px) { .hero-subline-text { font-size: 20px; } }
.hero-subline-gold { color: var(--gold); }

/* Alumni Row */
.hero-alumni-row {
  position: relative;
  display: flex;
  align-items: center;
  height: 110px;
  margin-top: 8px;
}
.hero-alumni-stack { position: relative; flex: 0 0 360px; height: 100%; }
.hero-alumni-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}
.alumni-avatar {
  width: 84px;
  height: 84px;
  border-radius: 9999px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  background: #fff;
}
.alumni-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.alumni-stat { margin-top: 8px; font-family: 'Lato', Helvetica; font-weight: 900; font-size: 14px; color: #fff; white-space: nowrap; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }

.hero-join-badge {
  position: absolute;
  left: 302px;
  top: 26px;
  height: 52px;
  width: 140px;
  padding-left: 44px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
  border: 1.5px solid var(--gold);
  border-radius: 0 9999px 9999px 0;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.hero-join-text {
  font-family: 'Lato', Helvetica;
  font-weight: 800;
  font-size: 14.5px;
  color: #fff;
  line-height: 1.1;
  text-align: left;
  white-space: pre-line;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Hero Form */
.hero-form-wrap {
  width: 100%;
  z-index: 10;
}
@media (min-width: 1024px) {
  .hero-form-wrap {
    width: 420px;
    min-width: 380px;
    flex-shrink: 0;
    padding-top: 16px;
  }
}
@media (min-width: 1280px) { .hero-form-wrap { width: 450px; } }

.hero-form-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 10px -5px rgba(0,0,0,0.04), 0 20px 25px -5px rgba(0,0,0,0.1);
  padding: 32px;
}

/* Form Success */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 0;
  text-align: center;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}
.success-title { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 20px; color: var(--blue); }
.success-desc { font-family: 'Lato', Helvetica; font-size: 14px; color: #64748b; }
.btn-submit-another {
  margin-top: 8px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 10px 24px;
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit-another:hover { background: #a87d35; }

/* Form */
#apply-form { display: flex; flex-direction: column; gap: 16px; }
.form-header { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.form-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 24px;
  background: var(--gold);
  border-radius: 9999px;
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0;
  box-shadow: 0 2px 4px -2px rgba(0,0,0,0.1), 0 4px 6px -1px rgba(0,0,0,0.1);
}
.form-subheading {
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 11px;
  color: #64748b;
  letter-spacing: 1.65px;
  text-transform: uppercase;
}
.form-field { display: flex; flex-direction: column; }
.form-input {
  width: 100%;
  padding: 12px;
  font-family: 'Lato', Helvetica;
  font-size: 12px;
  color: var(--blue);
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: rgba(13,36,75,0.4); box-shadow: 0 0 0 2px rgba(13,36,75,0.15); }
.form-input.error { border-color: #f87171; }
.form-error { font-family: 'Lato', Helvetica; font-size: 10px; color: #ef4444; margin-top: 4px; min-height: 14px; }
.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; }
.form-field-half { position: relative; }

/* Custom Select */
.custom-select { position: relative; }
.custom-select-btn {
  width: 100%;
  padding: 12px;
  text-align: left;
  font-family: 'Lato', Helvetica;
  font-size: 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #94a3b8;
  cursor: pointer;
  transition: border-color 0.2s;
}
.custom-select-btn.has-value { color: var(--blue); }
.custom-select-btn.error { border-color: #f87171; }
.select-chevron { width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.2s; margin-left: 4px; }
.select-chevron.open { transform: rotate(180deg); }
.dropdown-list {
  display: none;
  position: absolute;
  z-index: 50;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  max-height: 160px;
  overflow-y: auto;
  margin-top: 4px;
}
.dropdown-list.open { display: block; }
.dropdown-list li button {
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  font-family: 'Lato', Helvetica;
  font-size: 12px;
  color: var(--blue);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.dropdown-list li button:hover { background: #f8fafc; }

/* Captcha */
.form-captcha-row { display: flex; align-items: center; gap: 8px; }
.captcha-box {
  flex-shrink: 0;
  padding: 8px 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 14px;
  color: var(--blue);
  letter-spacing: 1.4px;
  user-select: none;
  text-decoration: line-through;
}
.captcha-input { flex: 1; }

/* Consent */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  cursor: pointer;
}
.consent-checkbox {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #6b7280;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.consent-checkbox.checked { background: var(--blue); border-color: var(--blue); }
.consent-text { font-family: 'Lato', Helvetica; font-size: 10px; color: #64748b; line-height: 1.6; flex: 1; cursor: pointer; }

.btn-form-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  border-radius: 8px;
  border: none;
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 4px 6px -4px rgba(0,0,0,0.1), 0 10px 15px -3px rgba(0,0,0,0.1);
}
.btn-form-submit:hover { background: rgba(13,36,75,0.9); }

/* ══════════════════════════════════════
   RANKINGS SECTION
══════════════════════════════════════ */
.rankings-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px -2px rgba(0,0,0,0.05), 0 10px 30px -5px rgba(0,0,0,0.1);
  padding: 48px 16px 32px;
}
.rankings-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
@media (min-width: 1024px) { .rankings-inner { flex-direction: row; gap: 48px; } }
.rankings-logo-col { display: flex; flex-direction: column; align-items: center; width: 154px; flex-shrink: 0; }
.naac-logo { width: 100%; height: auto; max-height: 100px; object-fit: contain; }
.rankings-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  flex-shrink: 0;
}
@media (min-width: 768px) { .rankings-stats-col { grid-template-columns: repeat(4, 1fr); } }
.ranking-stat {
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  min-height: 68px;
}
.ranking-num { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 24px; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.ranking-label { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 10px; color: #64748b; letter-spacing: 0.5px; white-space: nowrap; text-align: center; }
.rankings-footer { text-align: center; margin-top: 16px; padding: 0 16px; }
.rankings-footer-title { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 18px; color: #374151; letter-spacing: 1.28px; margin-bottom: 8px; }
.rankings-footer-sub { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 10px; color: rgba(13,36,75,0.6); letter-spacing: 2px; text-align: center; }

/* ══════════════════════════════════════
   COUNTERS SECTION
══════════════════════════════════════ */
.counters-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 64px 16px;
  background: linear-gradient(to bottom, rgba(0,81,219,0.2), #fff);
}
.counters-grid {
  max-width: 1240px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 1024px) { .counters-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

.counter-card {
  background: var(--blue);
  border: 2px solid transparent;
  border-bottom: 5px solid var(--gold);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  min-height: 140px;
  transition: transform 0.3s, box-shadow 0.3s;
}
@media (min-width: 768px) { .counter-card { min-height: 190px; padding: 24px; } }
.counter-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3); }

.counter-num {
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) { .counter-num { font-size: 44px; } }
@media (min-width: 768px) { .counter-num { font-size: 52px; } }
.counter-label {
  font-family: 'Lato', Helvetica;
  font-weight: 700;
  font-size: 11px;
  color: #cbd5e1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-top: 8px;
}
@media (min-width: 640px) { .counter-label { font-size: 18px; } }
@media (min-width: 1024px) { .counter-label { font-size: 20px; } }

/* ══════════════════════════════════════
   RECRUITERS
══════════════════════════════════════ */
.recruiters-section {
  width: 100%;
  background: var(--blue);
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.recruiters-header { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.recruiters-title { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 30px; color: #fff; text-align: center; }
.recruiters-sub { font-family: 'Lato', Helvetica; font-weight: 700; font-size: 12px; color: #cbd5e1; text-align: center; letter-spacing: 1.2px; }
.recruiters-divider { width: 80px; height: 4px; background: var(--gold); margin-top: 0; }
.recruiters-logo-wrap { width: 100%; display: flex; justify-content: center; padding: 0 32px; }
.recruiters-logo-img { width: 100%; max-width: 1132px; height: auto; object-fit: contain; }
.recruiters-more { font-family: 'Lato', Helvetica; font-weight: 700; font-size: 14.8px; color: #cbd5e1; text-align: center; letter-spacing: 1.48px; }

/* ══════════════════════════════════════
   LEARN / VIDEOS
══════════════════════════════════════ */
.learn-section { background: #fff; padding: 48px 0; }
.learn-inner { max-width: 1240px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .learn-inner { padding: 0 32px; } }
@media (min-width: 1280px) { .learn-inner { padding: 0 40px; } }

.learn-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 32px; padding: 0 8px; }
.learn-title { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 24px; color: var(--blue); text-align: center; }
@media (min-width: 768px) { .learn-title { font-size: 34px; } }
.learn-subtitle { margin-top: 12px; font-family: 'Lato', Helvetica; font-weight: 700; font-size: 15px; color: var(--gold); text-align: center; line-height: 1.375; max-width: 800px; }
@media (min-width: 768px) { .learn-subtitle { font-size: 18px; } }
.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: inline; } }

.learn-videos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) { .learn-videos { flex-direction: row; } }

.learn-video-card {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  aspect-ratio: 16/9;
  position: relative;
  background: #0f172a;
  border: 4px solid #fff;
}
@media (min-width: 1024px) { .learn-video-card { width: 33.33%; max-width: none; } }
.learn-video-card iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.learn-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 768px) { .learn-features { grid-template-columns: 1fr 1fr; gap: 32px 48px; } }

.learn-feature { display: flex; flex-direction: row; gap: 12px; align-items: flex-start; background: #fff; padding: 8px; border-radius: 12px; }
@media (min-width: 768px) { .learn-feature { gap: 16px; } }
.learn-feature-icon { width: 60px; height: 60px; flex-shrink: 0; object-fit: contain; margin-left: -8px; margin-top: 4px; }
@media (min-width: 640px) { .learn-feature-icon { width: 80px; height: 80px; margin-left: -12px; } }
.learn-feature-text { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; flex: 1; }
.learn-feature-title { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 17px; color: var(--blue); line-height: 1.2; }
@media (min-width: 768px) { .learn-feature-title { font-size: 19px; } }
.learn-feature-desc { font-family: 'Lato', Helvetica; font-size: 13.5px; color: #64748b; line-height: 1.625; padding-right: 8px; }
@media (min-width: 768px) { .learn-feature-desc { font-size: 14px; } }

/* ══════════════════════════════════════
   STUDENT SUCCESS
══════════════════════════════════════ */
.success-section {
  position: relative;
  background: var(--blue);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 1024px) { .success-section { flex-direction: row; } }

.success-left {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}
@media (min-width: 1024px) {
  .success-left {
    width: 480px;
    align-items: flex-start;
    text-align: left;
    padding: 64px 40px 64px 100px;
  }
}
.success-title { font-family: 'Lato', Helvetica; font-size: 22px; line-height: 1.2; }
@media (min-width: 640px) { .success-title { font-size: 26px; } }
@media (min-width: 768px) { .success-title { font-size: 34px; } }
.success-white { font-weight: 800; color: #fff; }
.success-gold { font-weight: 800; color: var(--gold); }
.success-underline { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; white-space: nowrap; }
.success-desc { font-family: 'Lato', Helvetica; font-size: 13px; color: #cbd5e1; line-height: 1.6; margin-top: 24px; }
@media (min-width: 768px) { .success-desc { font-size: 15px; } }

.success-cards-wrap {
  width: 100%;
  overflow: hidden;
  padding-left: 16px;
}
@media (min-width: 1024px) { .success-cards-wrap { width: calc(100% - 480px); padding-left: 0; } }

.placement-track {
  display: flex;
  gap: 27px;
  overflow-x: auto;
  cursor: grab;
  user-select: none;
  padding: 40px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.placement-track::-webkit-scrollbar { display: none; }
.placement-track:active { cursor: grabbing; }

.placement-card {
  width: 223px;
  background: #fff;
  border-radius: 13.52px;
  overflow: hidden;
  border: 0.85px solid #f3f4f6;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}
.placement-card:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.placement-card-img-wrap { position: relative; width: 100%; height: 216px; background: #e5e7eb; flex-shrink: 0; overflow: hidden; }
.placement-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.placement-card-batch {
  position: absolute;
  top: 14px;
  right: 12px;
  padding: 0 12px;
  height: 20px;
  background: var(--blue);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  font-family: 'Lato', Helvetica;
  font-weight: 700;
  font-size: 10.1px;
  color: #fff;
  white-space: nowrap;
}
.placement-card-info { display: flex; flex-direction: column; padding: 20px; flex: 1; }
.placement-card-degree { font-family: 'Lato', Helvetica; font-weight: 700; font-size: 10.1px; color: var(--gold); letter-spacing: 1.01px; text-align: center; margin-bottom: 8px; }
.placement-card-name { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 16.9px; color: var(--blue); text-align: center; margin-bottom: 14px; white-space: nowrap; }
.placement-card-company {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f9fafb;
  border-radius: 10.14px;
  border: 0.85px solid #f3f4f6;
  padding: 11px;
  margin-bottom: 13.5px;
  min-height: 59px;
  justify-content: center;
}
.placement-card-company-label { font-family: 'Lato', Helvetica; font-weight: 700; font-size: 10.1px; color: #9ca3af; text-align: center; margin-bottom: 3.4px; }
.placement-card-company-name { font-family: 'Lato', Helvetica; font-weight: 700; font-size: 13.5px; color: #1a459b; text-align: center; line-height: 1.25; }
.placement-card-salary {
  width: 100%;
  height: 60px;
  border-radius: 10.14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.placement-card-salary-label { font-family: 'Lato', Helvetica; font-weight: 700; font-size: 10.1px; color: rgba(255,255,255,0.8); text-align: center; }
.placement-card-salary-num { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 20.3px; text-align: center; }
.salary-gold { background: var(--gold); }
.salary-gold .placement-card-salary-num { color: #fff; }
.salary-blue { background: var(--blue); }
.salary-blue .placement-card-salary-num { color: var(--gold); }
.salary-blue-white { background: var(--blue); }
.salary-blue-white .placement-card-salary-num { color: #fff; }

/* ══════════════════════════════════════
   EXPERIENCE EDUCATION
══════════════════════════════════════ */
.experience-section { background: #fff; padding: 48px 0; }
@media (min-width: 768px) { .experience-section { padding: 96px 0; } }
.experience-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .experience-inner { padding: 0 40px; } }

.experience-header { display: flex; flex-direction: column; align-items: center; }
.experience-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Lato', Helvetica;
  font-size: 26px;
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 640px) { .experience-title { font-size: 36.2px; } }
.experience-dark { font-weight: 900; color: var(--blue); }
.experience-gold { font-weight: 900; color: var(--gold); }
.experience-sub { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 9px; color: #64748b; letter-spacing: 3px; text-align: center; margin-top: 16px; }
@media (min-width: 640px) { .experience-sub { font-size: 12px; letter-spacing: 3px; } }
.experience-divider { width: 96px; height: 6px; background: var(--blue); border-radius: 9999px; margin-top: 22px; }

.experience-body { display: flex; flex-direction: column; gap: 32px; margin-top: 32px; align-items: center; }
@media (min-width: 1024px) { .experience-body { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 64px; } }

.experience-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 640px) { .experience-features { gap: 16px; } }
@media (min-width: 1024px) { .experience-features { gap: 32px 32px; } }

.exp-feat-card {
  background: rgba(255,255,255,0.01);
  border: 0.5px solid var(--gold);
  border-radius: 12px;
  box-shadow: 6px 8px 10.9px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px;
  gap: 0;
  min-height: 70px;
}
@media (min-width: 640px) { .exp-feat-card { padding: 17px; } }
.exp-feat-num {
  flex-shrink: 0;
  width: 24px;
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
}
@media (min-width: 640px) { .exp-feat-num { width: 35px; font-size: 30px; } }
.exp-feat-title {
  margin-left: 8px;
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 9.5px;
  color: var(--blue);
  letter-spacing: -0.35px;
  line-height: 1.2;
  white-space: pre-line;
  flex: 1;
}
@media (min-width: 640px) { .exp-feat-title { margin-left: 16px; font-size: 14px; line-height: 1.25; } }

.experience-video-wrap {
  position: relative;
  width: 100%;
  height: 310px;
  background: #0f172a;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 10px -5px rgba(0,0,0,0.04), 0 20px 25px -5px rgba(0,0,0,0.1), 0 0 0 8px rgba(13,36,75,0.05);
}
.experience-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.experience-video-label {
  position: absolute;
  bottom: 25px;
  left: 24px;
  display: flex;
  align-items: center;
  height: 35px;
  padding: 0 20px;
  background: rgba(13,36,75,0.8);
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 10;
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 11px;
  color: #fff;
  letter-spacing: 1.1px;
  white-space: nowrap;
}

/* ══════════════════════════════════════
   EDU-REVOLUTION
══════════════════════════════════════ */
.edu-section { width: 100%; background: #fff; padding: 48px 16px; }
@media (min-width: 768px) { .edu-section { padding: 64px 32px; } }
@media (min-width: 1024px) { .edu-section { padding: 64px 37px; } }

.edu-card {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  background: linear-gradient(154deg, #0d244b 0%, #1a459b 100%);
}
@media (min-width: 768px) { .edu-card { flex-direction: row; border-radius: 38.88px; } }

.edu-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 24px;
}
@media (min-width: 640px) { .edu-left { padding: 40px 40px; } }
@media (min-width: 1024px) { .edu-left { padding: 60px 40px 60px 60px; } }

.edu-tag {
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1.375;
}
@media (min-width: 640px) { .edu-tag { font-size: 14px; } }

.edu-title {
  font-family: 'Lato', Helvetica;
  font-size: 36px;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) { .edu-title { font-size: 42px; } }
@media (min-width: 1024px) { .edu-title { font-size: 58.3px; } }
.edu-title-white { font-weight: 900; color: #fff; }
.edu-title-gold { font-weight: 900; color: var(--gold); }

.edu-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 24px 0 8px;
}
@media (min-width: 640px) { .edu-features { grid-template-columns: 1fr 1fr; column-gap: 24px; } }
@media (min-width: 1024px) { .edu-features { column-gap: 40px; } }

.edu-feat { display: flex; flex-direction: column; gap: 8px; }
.edu-feat-title { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 14px; color: var(--gold); line-height: 1.375; }
@media (min-width: 768px) { .edu-feat-title { font-size: 16px; } }
.edu-feat-desc { font-family: 'Lato', Helvetica; font-size: 12px; color: #e2e8f0; line-height: 1.625; }
@media (min-width: 768px) { .edu-feat-desc { font-size: 14px; } }

.edu-cta-btn {
  align-self: flex-start;
  background: #fff;
  border-radius: 9999px;
  padding: 16px 32px;
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 14px;
  color: var(--blue);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: background 0.2s;
  white-space: nowrap;
}
.edu-cta-btn:hover { background: #f1f5f9; }

.edu-right {
  width: 100%;
  position: relative;
  background: var(--blue);
  overflow: hidden;
  min-height: 300px;
}
@media (min-width: 768px) { .edu-right { width: 40%; flex-shrink: 0; } }
@media (min-width: 1024px) { .edu-right { width: 45%; } }
.edu-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.edu-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0d244b, transparent, transparent);
}
@media (min-width: 768px) {
  .edu-img-overlay { background: linear-gradient(270deg, #0d244b 0%, transparent 50%, transparent 100%); }
}

/* ══════════════════════════════════════
   PROGRAMS
══════════════════════════════════════ */
.programs-section { background: var(--blue); overflow: hidden; padding: 51px 0; }

.programs-header {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 35px;
}
@media (min-width: 768px) { .programs-header { margin-left: 57px; } }

.programs-title {
  font-family: 'Lato', Helvetica;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -1.2px;
}
@media (min-width: 768px) { .programs-title { font-size: 48px; } }
.programs-white { font-weight: 900; color: #fff; }
.programs-gold { font-weight: 900; color: var(--gold); }
.programs-divider { width: 96px; height: 8px; background: var(--gold); border-radius: 9999px; }
.programs-sub {
  max-width: 742px;
  font-family: 'Lato', Helvetica;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.625;
  padding-right: 16px;
}
@media (min-width: 768px) { .programs-sub { font-size: 18px; } }

.programs-tabs {
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 16px;
  margin-bottom: 35px;
}
@media (min-width: 640px) { .programs-tabs { justify-content: flex-start; gap: 12px; } }
@media (min-width: 768px) { .programs-tabs { padding: 0 57px; gap: 16px; } }

.prog-tab {
  height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.1);
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 10px;
  color: var(--gold);
  text-align: center;
  letter-spacing: 1.2px;
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
@media (min-width: 640px) { .prog-tab { height: 54px; padding: 0 16px; font-size: 12px; } }
@media (min-width: 768px) { .prog-tab { padding: 0 34px; } }
.prog-tab.active { background: rgba(193,150,63,0.1); border-color: var(--gold); }
.prog-tab:hover { background: rgba(193,150,63,0.05); }

.programs-grid {
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .programs-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 768px) { .programs-grid { grid-template-columns: repeat(4, 1fr); gap: 22.5px; padding: 0 56px; } }
@media (min-width: 1024px) { .programs-grid { grid-template-columns: repeat(7, 1fr); } }

.program-card {
  background: #fff;
  border-radius: 22.5px;
  border: 0.94px solid rgba(13,36,75,0.05);
  box-shadow: 0 9.38px 28.12px -4.69px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 8px;
  min-height: 130px;
  cursor: pointer;
  transition: box-shadow 0.3s;
}
.program-card:hover { box-shadow: 0 12px 32px -4px rgba(0,0,0,0.16); }
.program-card img { object-fit: contain; }
.program-card-label {
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 11px;
  color: var(--blue);
  text-align: center;
  line-height: 14px;
  white-space: pre-line;
}
@media (min-width: 640px) { .program-card-label { font-size: 12.2px; line-height: 15.2px; } }

/* ══════════════════════════════════════
   FACULTY
══════════════════════════════════════ */
.faculty-section { width: 100%; display: flex; flex-direction: column; align-items: center; padding: 40px 0; }
.faculty-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 24px; }
.faculty-title {
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 20px;
  color: var(--blue);
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
@media (min-width: 640px) { .faculty-title { font-size: 24px; } }
@media (min-width: 768px) { .faculty-title { font-size: 34.6px; } }
.faculty-divider { margin-top: 16px; width: 96px; height: 8px; background: var(--gold); border-radius: 9999px; }

.faculty-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 8px;
  margin-top: 16px;
  max-width: 400px;
  padding: 0 16px;
}
@media (min-width: 640px) { .faculty-grid { max-width: none; gap: 25px; padding: 0; } }

.faculty-member { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 21%; }
@media (min-width: 640px) { .faculty-member { width: auto; gap: 16.7px; } }
.faculty-member:nth-child(n+5) { width: 28%; }
@media (min-width: 640px) { .faculty-member:nth-child(n+5) { width: auto; } }

.faculty-photo-wrap {
  width: 80px;
  height: 106px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10.44px 10.44px -5.22px rgba(0,0,0,0.04), 0 20.88px 26.1px -5.22px rgba(0,0,0,0.1);
}
@media (min-width: 640px) { .faculty-photo-wrap { width: 170.5px; height: 227.33px; border-radius: 16.7px; } }
.faculty-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: grayscale(100%) contrast(1.25); mix-blend-mode: multiply; }
.faculty-name {
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 7.5px;
  color: var(--blue);
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.2;
  white-space: nowrap;
}
@media (min-width: 640px) { .faculty-name { font-size: 12.5px; letter-spacing: 1.25px; } }

.faculty-quote {
  margin-top: 48px;
  padding: 0 24px;
  max-width: 1240px;
  text-align: center;
}
.faculty-quote p {
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 18px;
  color: var(--blue);
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.625;
}
@media (min-width: 640px) { .faculty-quote p { font-size: 20px; } }
@media (min-width: 768px) { .faculty-quote p { font-size: 24px; } }
.faculty-quote-gold { color: var(--gold); }

/* ══════════════════════════════════════
   SCHOLARSHIP
══════════════════════════════════════ */
.scholarship-section { background: #fff; padding: 48px 16px; }
@media (min-width: 768px) { .scholarship-section { padding: 48px 32px; } }

.scholarship-card {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  background: #0f1f3e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) { .scholarship-card { flex-direction: row; min-height: 220px; } }

.scholarship-left {
  width: 100%;
  padding: 32px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
@media (min-width: 768px) {
  .scholarship-left {
    width: 41.67%;
    padding: 56px 32px 56px 48px;
    align-items: flex-start;
  }
}
.scholarship-title {
  font-family: 'Lato', Helvetica;
  font-size: 23px;
  line-height: 1.15;
  text-align: center;
}
@media (min-width: 640px) { .scholarship-title { font-size: 28px; } }
@media (min-width: 768px) { .scholarship-title { font-size: 36px; text-align: left; } }
@media (min-width: 1024px) { .scholarship-title { font-size: 42px; } }
.scholarship-white { font-weight: 800; color: #fff; }
.scholarship-gold { font-weight: 800; color: var(--gold2); }

.scholarship-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 20px 40px;
  z-index: 10;
}
@media (min-width: 768px) {
  .scholarship-right {
    width: 58.33%;
    padding: 0 48px 0 0;
  }
}
.scholarship-desc {
  font-family: 'Lexend', Helvetica;
  font-size: 14px;
  color: #f1f5f9;
  text-align: center;
  line-height: 1.625;
  letter-spacing: 0.025em;
  max-width: 550px;
}
@media (min-width: 640px) { .scholarship-desc { font-size: 16px; } }

.scholarship-btns { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; }
@media (min-width: 640px) { .scholarship-btns { flex-direction: row; justify-content: center; } }

.btn-scholarship-apply, .btn-scholarship-brochure {
  width: 200px;
  height: 50px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lexend', Helvetica;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.btn-scholarship-apply { background: var(--gold2); border: none; color: #0f1f3e; transition: background 0.2s; }
.btn-scholarship-apply:hover { background: #b08e48; }
.btn-scholarship-brochure { background: transparent; border: 2px solid #fff; color: #fff; transition: background 0.2s; }
.btn-scholarship-brochure:hover { background: rgba(255,255,255,0.1); }

/* ══════════════════════════════════════
   CAMPUS LIFE
══════════════════════════════════════ */
.campus-section { width: 100%; background: #f6f7f8; padding: 56px 0; }
.campus-inner { max-width: 1209px; margin: 0 auto; padding: 0 32px; display: flex; flex-direction: column; gap: 60px; }

.campus-header { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.campus-title { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 39.9px; color: var(--blue); text-align: center; line-height: 38px; }
.campus-desc { font-family: 'Lato', Helvetica; font-size: 18.1px; color: #64748b; text-align: center; line-height: 22.8px; max-width: 548px; }

.campus-gallery { display: flex; flex-direction: column; gap: 16px; }
.campus-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}
@media (min-width: 640px) { .campus-grid-row { grid-template-rows: 200px; } }
@media (min-width: 768px) { .campus-grid-row { grid-template-columns: repeat(4, 1fr); grid-template-rows: 277px; } }

.campus-img-large { background: #e2e8f0; border-radius: 15px; overflow: hidden; }
.campus-img-large img { width: 100%; height: 100%; object-fit: cover; }
.campus-img-span2 { grid-column: span 2; }
.campus-img-tall { grid-row: span 1; }
@media (min-width: 640px) { .campus-img-tall { grid-row: span 2; } }
@media (min-width: 768px) { .campus-img-tall { grid-row: span 2; } }

.campus-img-sm { background: #e2e8f0; border-radius: 15px; overflow: hidden; }
.campus-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.campus-img-wide { background: #e2e8f0; border-radius: 15px; overflow: hidden; grid-column: span 2; }
.campus-img-wide img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════
   FAQ + ADVANTAGES
══════════════════════════════════════ */
.faq-section { background: var(--blue); padding: 64px 16px; }
.faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) { .faq-inner { flex-direction: row; gap: 32px; } }

.faq-col, .adv-col { flex: 1; display: flex; flex-direction: column; align-items: center; }

.faq-col-header { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 16px; }
.faq-title { font-family: 'Lexend', Helvetica; font-size: 41px; color: #fff; text-align: center; letter-spacing: -1.03px; line-height: 41px; }
.faq-sub { font-family: 'Lexend', Helvetica; font-size: 10.9px; color: #cbd5e1; text-align: center; line-height: 16.4px; }
.faq-divider { width: 79.64px; height: 3.32px; background: var(--gold); border-radius: 9999px; margin-bottom: 40px; }

.faq-list { width: 100%; max-width: 638px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: rgba(255,255,255,0.05); border-radius: 9.03px; border: 1px solid rgba(255,255,255,0.1); overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  font-family: 'Lexend', Helvetica;
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  line-height: 21.1px;
  gap: 12px;
}
.faq-chevron { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 18px 16px;
  font-family: 'Lexend', Helvetica;
  font-size: 12px;
  color: #cbd5e1;
  line-height: 18.1px;
}
.faq-item.open .faq-a { display: block; }

.adv-col-header { margin-bottom: 16px; margin-top: 16px; }
.adv-title {
  font-family: 'Lato', Helvetica;
  font-weight: 900;
  font-size: 29.9px;
  color: #fff;
  text-align: center;
  letter-spacing: -0.75px;
  line-height: 33.2px;
}
.adv-divider { width: 79.64px; height: 3.32px; background: var(--gold); border-radius: 9999px; margin-bottom: 40px; }
.adv-list { width: 100%; max-width: 510px; display: flex; flex-direction: column; gap: 24px; }

.adv-card {
  background: #fff;
  border-radius: 9.11px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  min-height: 124px;
}
.adv-icon { width: 42px; height: 61px; object-fit: contain; flex-shrink: 0; padding: 21px 0 0 25px; }
.adv-text { display: flex; flex-direction: column; padding: 21px 18px 18px 12px; }
.adv-card-title { font-family: 'Lato', Helvetica; font-weight: 700; font-size: 15.2px; color: var(--blue); line-height: 21.2px; margin-bottom: 8px; }
.adv-card-desc { font-family: 'Lato', Helvetica; font-size: 12.1px; color: #475569; line-height: 18.2px; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { background: #f8fafc; padding: 48px 16px; }
.testimonials-inner { max-width: 1280px; margin: 0 auto; }

.testimonials-grid { display: none; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (min-width: 768px) { .testimonials-grid { display: grid; } }

.testimonial-card { background: #f8fafc; border-radius: 16px; border: 1px solid #f1f5f9; min-height: 298px; }
.testimonial-top { display: flex; gap: 17px; align-items: flex-start; padding: 48px 44px 0; }
.testimonial-avatar {
  width: 74px;
  height: 74px;
  flex-shrink: 0;
  border-radius: 9999px;
  overflow: hidden;
  border: 2.31px solid var(--gold);
  background: #f1f5f9;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-person { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.testimonial-name { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 20.2px; color: var(--blue); white-space: nowrap; }
.testimonial-role { font-family: 'Lato', Helvetica; font-size: 12px; color: #64748b; line-height: 16px; }
.testimonial-quote { padding: 16px 44px 32px; font-family: 'Lato', Helvetica; font-size: 16px; color: #475569; line-height: 24px; }

/* Mobile carousel */
.testimonials-mobile { display: block; }
@media (min-width: 768px) { .testimonials-mobile { display: none; } }
.testimonials-mobile .testimonial-card .testimonial-top { padding: 32px 24px 0; }
.testimonials-mobile .testimonial-quote { padding: 16px 24px 32px; font-size: 14px; }
.testimonials-mobile .testimonial-avatar { width: 60px; height: 60px; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  background: #cbd5e1;
}
.testimonial-dot.active { background: var(--gold); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer-section { background: var(--blue); display: flex; flex-direction: column; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  max-width: 1231px;
  margin: 0 auto;
  padding: 83px 16px 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); padding: 83px 32px 40px; } }

.footer-logo {
  width: 245px;
  height: 59px;
  margin-bottom: 22px;
  background: url('https://c.animaapp.com/mn0n10j9vDypoz/img/container-1.png') 50% 50% / cover no-repeat;
  filter: brightness(0) invert(1);
}
.footer-about { font-family: 'Lato', Helvetica; font-size: 13.5px; color: #94a3b8; line-height: 21.9px; margin-bottom: 22px; }
.footer-social { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.footer-social a { display: flex; align-items: center; justify-content: center; transition: opacity 0.2s; }
.footer-social a:hover { opacity: 0.8; }
.footer-social img { width: 36px; height: 36px; }
.yt-icon { width: 27px !important; height: 19px !important; }

.footer-col-header { padding-bottom: 8px; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col-title { font-family: 'Lato', Helvetica; font-weight: 900; font-size: 17.3px; color: #fff; line-height: 26.9px; white-space: nowrap; }

.footer-links { display: flex; flex-direction: column; gap: 15px; }
.footer-link { font-family: 'Lato', Helvetica; font-size: 13.5px; color: #94a3b8; line-height: 19.2px; white-space: nowrap; display: block; width: fit-content; transition: color 0.2s; }
.footer-link:hover { color: #fff; }

.footer-contacts { display: flex; flex-direction: column; gap: 15px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 11px; transition: opacity 0.2s; }
.footer-contact-item:hover { opacity: 0.8; }
.footer-contact-icon { flex-shrink: 0; }
.footer-contact-icon-addr { width: 16px; height: 38px; }
.footer-contact-icon-sm { width: 18px; height: 19px; }
.footer-contact-text { font-family: 'Lato', Helvetica; font-size: 13.5px; color: #94a3b8; line-height: 19.2px; }

.btn-footer-apply {
  width: 100%;
  background: var(--gold);
  border-radius: 7.69px;
  padding: 11px 16px;
  font-family: 'Lato', Helvetica;
  font-weight: 700;
  font-size: 15.4px;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 27px;
  transition: background 0.2s;
}
.btn-footer-apply:hover { background: #a87d33; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px;
  text-align: center;
}
.footer-bottom p { font-family: 'Lato', Helvetica; font-size: 12px; color: #64748b; line-height: 16px; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.animated { animation: fade-up 0.7s ease forwards; }

/* Scrollbar hide utility */
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }
