:root {
  color-scheme: light;
  scroll-behavior: smooth;
  --brand: #e30613;
  --ink: #0b0b0d;
  --page: #f6f6f8;
  --muted: #666;
  --soft: 0 8px 25px rgba(0, 0, 0, .08);
  --glow: 0 18px 60px rgba(227, 6, 19, .22);
  --heading: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--page);
  color: #111;
  font-family: var(--body);
  line-height: 1.5;
}
::selection { background: rgba(227, 6, 19, .18); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(100% - 2rem, 1400px);
  margin-inline: auto;
}

.section-pad { padding-block: 60px; }
.white-band { background: #fff; }
.site-header { position: sticky; top: 0; z-index: 50; }
.topbar { background: var(--ink); color: #fff; }
.topbar-inner {
  align-items: center;
  display: flex;
  font-size: 12px;
  height: 40px;
  justify-content: space-between;
}
.topbar-left, .topbar-right, .topbar-right span {
  align-items: center;
  display: flex;
  gap: 16px;
  font-weight: 700;
}
.topbar-right { margin-left: auto; }
.divider { background: rgba(255, 255, 255, .2); height: 16px; width: 1px; }

.mainnav {
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  box-shadow: 0 1px 10px rgba(0, 0, 0, .04);
  backdrop-filter: blur(14px);
}
.nav-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  height: 85px;
  justify-content: space-between;
}
.brand { align-items: center; display: flex; gap: 12px; min-width: max-content; }
.brand-mark {
  background: var(--brand);
  border-radius: 50%;
  color: #fff;
  display: grid;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 900;
  height: 48px;
  place-items: center;
  width: 48px;
}
.brand-text {
  font-family: var(--heading);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}
.brand-text span, .footer-logo span { color: var(--brand); }
.brand-text small {
  color: var(--muted);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-top: 3px;
  text-transform: uppercase;
}
.nav-links { align-items: center; display: none; gap: 22px; font-size: 14px; font-weight: 700; }
.nav-link {
  align-items: center;
  display: inline-flex;
  gap: 4px;
  padding-block: 34px;
  transition: color .2s ease, transform .2s ease;
}
.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--brand);
  transform: translateY(-2px);
}
.nav-item { position: relative; }
.dropdown-menu {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .12);
  display: grid;
  gap: 4px;
  left: 50%;
  min-width: 210px;
  opacity: 0;
  padding: 12px;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 8px);
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 60;
}
.dropdown-menu a {
  border-radius: 12px;
  color: var(--ink);
  display: block;
  font-size: 13px;
  padding: 10px 12px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: #fff1f2;
  color: var(--brand);
  transform: translateX(4px);
}
.nav-actions { align-items: center; display: flex; gap: 12px; }

.btn {
  align-items: center;
  background: var(--brand);
  border: 0;
  border-radius: 30px;
  box-shadow: var(--glow);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  height: 48px;
  justify-content: center;
  padding: 0 24px;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.btn:hover { background: #b90510; transform: translateY(-1px); }
.btn-icon { border-radius: 50%; height: 44px; padding: 0; width: 44px; }
.btn-ghost { background: transparent; box-shadow: none; color: var(--ink); }
.btn-ghost:hover { background: rgba(0, 0, 0, .05); }
.btn-dark { background: var(--ink); box-shadow: none; }
.btn-outline { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .35); box-shadow: none; }
.btn-outline:hover { background: rgba(255, 255, 255, .15); }
.mobile-menu {
  display: none;
  gap: 8px;
  padding: 0 1rem 18px;
}
.mobile-menu.open { display: grid; }
.mobile-menu a {
  background: var(--page);
  border-radius: 14px;
  font-weight: 800;
  padding: 12px 16px;
}

.hero {
  background: var(--ink);
  color: #fff;
  min-height: 650px;
  overflow: hidden;
  position: relative;
}
.hero-slider, .hero-slide, .hero-overlay { inset: 0; position: absolute; }
.hero-slider { overflow: hidden; }
.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 5.8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay { background: linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .35), rgba(0, 0, 0, .16)); }
.hero-grid {
  align-items: center;
  display: grid;
  gap: 40px;
  min-height: 650px;
  padding-block: 64px;
  position: relative;
}
.pill {
  align-items: center;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
}
.pill span { background: var(--brand); border-radius: 50%; height: 8px; width: 8px; }
.hero h1 {
  font-family: var(--heading);
  font-size: clamp(46px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
  max-width: 760px;
}
.hero h1 span { color: var(--brand); display: block; }
.hero-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 2;
  margin: 24px 0 0;
  max-width: 575px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-feature { display: none; min-height: 460px; position: relative; }
.grade-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--soft);
  color: var(--ink);
  left: 48px;
  padding: 28px;
  position: absolute;
  text-align: center;
  top: 16px;
  z-index: 2;
}
.grade-card p { font-size: 14px; font-weight: 800; margin: 0; }
.grade-card p:nth-child(2) { font-weight: 400; }
.grade-card strong {
  color: var(--brand);
  display: block;
  font-family: var(--heading);
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
}
.campus-card {
  background-position: center;
  background-size: cover;
  border-radius: 18px;
  bottom: 40px;
  box-shadow: var(--soft);
  height: 390px;
  overflow: hidden;
  position: absolute;
  right: 64px;
  width: min(520px, 82%);
}
.quick-links {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--soft);
  color: var(--ink);
  display: none;
  padding: 12px;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}
.quick-links a {
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  display: grid;
  font-size: 12px;
  min-height: 80px;
  place-items: center;
  text-align: center;
  transition: color .2s ease, transform .2s ease;
  width: 80px;
}
.quick-links a:last-child { border-bottom: 0; }
.quick-links a:hover { color: var(--brand); transform: translateX(-4px); }
.brand-icon, .quick-links i, .breadcrumb, .muted-icon { color: var(--brand); }
.social-badge {
  align-items: center;
  background: #111;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), inset 0 -10px 18px rgba(0, 0, 0, .16), 0 8px 22px rgba(0, 0, 0, .16);
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  line-height: 1;
  overflow: hidden;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  width: 24px;
}
.social-badge::before {
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .04) 44%, rgba(0, 0, 0, .14));
  inset: 0;
  opacity: 1;
  position: absolute;
}
.social-badge::after {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 900;
  inset: 0;
  justify-content: center;
  position: absolute;
}
.social-badge:hover {
  border-color: rgba(255, 255, 255, .55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 12px 28px rgba(0, 0, 0, .24);
  transform: translateY(-2px);
}
/* Remove background completely */
.social-badge-facebook {
    background: transparent;
}
.social-badge-facebook::after {
    content: "f";
    font-size: 18px;
    color: #1877f2;
}

/* Instagram gradient text */
.social-badge-instagram {
    background: transparent;
}
.social-badge-instagram::after {
    content: "IG";
    font-size: 10px;
    background: linear-gradient(135deg, #f9ce34, #ee2a7b 48%, #6228d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LinkedIn */
.social-badge-linkedin {
    background: transparent;
}
.social-badge-linkedin::after {
    content: "in";
    font-size: 14px;
    color: #0a66c2;
}

/* YouTube */
.social-badge-youtube {
    background: transparent;
}
.social-badge-youtube::after {
    content: "YT";
    font-size: 10px;
    color: #ff0033;
}
.topbar-right .social-badge { gap: 0; }

.statbar { margin-top: -64px; position: relative; z-index: 20; }
.stat-grid {
  background: rgba(130, 74, 74, 0.1);
  border-radius: 24px;
  box-shadow: var(--soft);
  display: grid;
  gap: 1px;
  overflow: hidden;
}
.stat-card, .placement-card {
  background: var(--ink);
  color: #fff;
}
.stat-card {
  align-items: center;
  display: flex;
  gap: 16px;
  padding: 24px;
}
.stat-icon {
  background: rgba(227, 6, 19, .2);
  border-radius: 50%;
  color: var(--brand);
  display: grid;
  flex: 0 0 auto;
  height: 48px;
  place-items: center;
  width: 48px;
}
.stat-card p, .placement-card p, .mini-stat p {
  font-family: var(--heading);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}
.stat-card p { font-size: 30px; }
.stat-card small, .placement-card small { color: rgba(255, 255, 255, .7); }
.stat-card small, .mini-stat small { font-size: 12px; }

.section-title {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-title h2 {
  color: var(--ink);
  font-family: var(--heading);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
}
.section-action {
  align-items: center;
  color: var(--brand);
  display: none;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}
.why-section { padding-bottom: 56px; padding-top: 60px; }
.why-grid, .program-grid, .accreditation-grid, .phone-grid {
  display: grid;
  gap: 20px;
}
.why-card, .program-card, .event-card, .about-stats, .accreditation-card, .department-card, .recruiter-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--soft);
}
.why-card {
  align-items: center;
  display: flex;
  gap: 16px;
  padding: 24px;
}
.why-card span {
  background: rgba(227, 6, 19, .1);
  border-radius: 16px;
  color: var(--brand);
  display: grid;
  height: 56px;
  place-items: center;
  width: 56px;
}
.why-card h3 { font-size: 16px; margin: 0; }
.programs-events { display: grid; gap: 40px; }
.program-card { overflow: hidden; transition: box-shadow .25s ease, transform .25s ease; }
.program-card:hover { box-shadow: 0 18px 60px rgba(227, 6, 19, .18); }
.program-image { height: 176px; overflow: hidden; }
.program-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  width: 100%;
}
.program-card:hover img { transform: scale(1.1); }
.program-body {
  align-items: end;
  display: flex;
  justify-content: space-between;
  padding: 24px;
}
.program-body h3 {
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 900;
  margin: 0;
}
.program-body p { color: var(--muted); font-size: 14px; margin: 4px 0 0; }
.program-body span {
  background: var(--brand);
  border-radius: 50%;
  color: #fff;
  display: grid;
  height: 44px;
  place-items: center;
  transition: transform .2s ease;
  width: 44px;
}
.program-card:hover .program-body span { transform: translateX(4px); }
.event-card { height: fit-content; padding: 24px; }
.event-card .section-title { margin-bottom: 16px; }
.event-card .section-title h2 { font-size: 30px; }
.event-list { display: grid; gap: 16px; }
.event-row {
  align-items: center;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 16px;
  display: flex;
  gap: 16px;
  padding: 12px;
  transition: background .2s ease, transform .2s ease;
}
.event-row:hover { background: var(--page); }
.date-box {
  background: var(--brand);
  border-radius: 16px;
  color: #fff;
  display: grid;
  font-family: var(--heading);
  font-weight: 900;
  height: 64px;
  line-height: 1;
  place-items: center;
  text-align: center;
  width: 64px;
}
.date-box small { font-size: 12px; margin-top: -16px; }
.event-row div:nth-child(2) { flex: 1; min-width: 0; }
.event-row p { font-weight: 800; margin: 0; }
.event-row small {
  color: var(--ink);
  display: block;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.split { align-items: center; display: grid; gap: 40px; }
.breadcrumb {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 16px;
}
.page-heading {
  font-family: var(--heading);
  font-size: clamp(40px, 5vw, 50px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  margin: 24px 0 0;
  max-width: 590px;
  text-align:justify;
}
.image-panel {
  background-position: center;
  background-size: cover;
  border-radius: 18px;
  box-shadow: var(--soft);
  height: 340px;
}
.about-stats {
  display: grid;
  gap: 24px;
  margin: 40px auto 0;
  max-width: 1152px;
  padding: 28px;
}
.mini-stat { color: var(--ink); text-align: center; }
.mini-stat i { color: var(--brand); margin-bottom: 12px; }
.mini-stat p { font-size: 24px; }
.mini-stat small { color: var(--muted); }

.accreditation-card {
  display: grid;
  min-height: 160px;
  padding: 24px;
  place-items: center;
  text-align: center;
}
.accreditation-card i { color: var(--brand); }
.accreditation-card p { font-weight: 800; margin: 0; }
.tab-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 48px;
}
.tab-button {
  background: var(--page);
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  height: 56px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.tab-button.active { background: var(--brand); color: #fff; }
.tab-button:hover { transform: translateY(-3px); }
.department-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.department-card {
  align-items: center;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  padding: 20px;
  transition: background .2s ease, transform .2s ease, opacity .3s ease;
}
.department-card:hover { background: #fff7f7; transform: translateX(8px); }
.department-card span { align-items: center; display: flex; gap: 16px; }
.department-card i:first-child { color: var(--brand); }

.placement-grid {
  background: rgba(255, 255, 255, .1);
  border-radius: 24px;
  display: grid;
  gap: 1px;
  margin-top: 40px;
  overflow: hidden;
}
.placement-card { padding: 32px; }
.placement-card p { font-size: 40px; }
.placement-card small { display: block; margin-top: 8px; }
.recruiters-section {
  overflow: hidden;
  padding-bottom: 80px;
}
.recruiter-marquee {
  display: grid;
  gap: 18px;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  padding-block: 4px;
  width: 100vw;
}
.recruiter-track {
  animation: recruiterSlideRight 24s linear infinite;
  display: flex;
  gap: 18px;
  width: max-content;
}
.recruiter-track-slow { animation-duration: 30s; }
.recruiter-set {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, clamp(160px, 15vw, 220px));
}
.recruiter-card {
  display: grid;
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 900;
  height: 112px;
  padding: 20px;
  place-items: center;
  text-align: center;
  transition: box-shadow .25s ease, transform .25s ease;
}
.recruiter-card:hover {
  box-shadow: 0 18px 60px rgba(227, 6, 19, .18);
  transform: translateY(-4px);
}
.recruiter-marquee:hover .recruiter-track { animation-play-state: paused; }
.social-section { padding-block: 80px; }
.social-title {
  font-family: var(--heading);
  font-size: 40px;
  font-weight: 900;
  margin: 0 0 48px;
  text-align: center;
}
.phone-card {
  background: var(--ink);
  border-radius: 32px;
  box-shadow: var(--soft);
  cursor: pointer;
  display: block;
  height: 360px;
  margin-inline: auto;
  padding: 12px;
  text-align: left;
  transition: box-shadow .25s ease, transform .25s ease;
  width: 184px;
}
.phone-card:hover { box-shadow: 0 18px 60px rgba(0, 0, 0, .18); transform: translateY(-8px) scale(1.025); }
.phone-card:active { transform: translateY(-2px) scale(.98); }
.social-screenshot {
  border-radius: 24px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}
.phone-screen {
  background: #fff;
  border-radius: 24px;
  display: block;
  height: 100%;
  overflow: hidden;
}
.phone-head {
  background: var(--brand);
  color: #fff;
  display: block;
  height: 96px;
  position: relative;
  padding: 16px;
}
.phone-head .social-icon {
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #fff;
  display: grid;
  font-size: 13px;
  font-weight: 900;
  height: 42px;
  place-items: center;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
}
.phone-head .social-icon.social-badge-linkedin { background: #0a66c2; }
.phone-head .social-icon.social-badge-youtube { background: #ff0033; }
.phone-head svg { color: #fff; stroke-width: 2.2; }
.phone-head small { display: block; opacity: .8; }
.phone-head b { display: block; margin-top: 8px; }
.phone-posts {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  padding: 12px;
}
.phone-posts span {
  background: var(--page);
  border-radius: 12px;
  height: 34px;
}
.phone-posts .dark-post { background: rgba(11, 11, 13, .8); }
.social-open {
  align-items: center;
  background: rgba(11, 11, 13, .72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 10px 24px rgba(0, 0, 0, .16);
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
  margin: 10px 12px 0;
  padding: 8px 12px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.phone-card:hover .social-open {
  border-color: rgba(255, 255, 255, .34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 14px 30px rgba(0, 0, 0, .22);
  transform: translateY(-1px);
}
.cta-strip {
  background: var(--ink);
  color: #fff;
}
.cta-grid {
  align-items: center;
  display: grid;
  gap: 24px;
  padding-block: 32px;
}
.cta-grid p { font-size: 18px; font-weight: 800; margin: 0; }
.cta-grid p:first-child { font-size: 18px; font-weight: 700; }
.cta-grid span { color: var(--brand); }
.footer { background: #090b10; color: #fff; }
.footer-grid {
  display: grid;
  gap: 40px;
  padding-block: 64px;
}
.footer-logo {
  font-family: var(--heading);
  font-size: 40px;
  font-weight: 900;
  margin: 0;
}
.footer p, .footer a {
  color: rgba(255, 255, 255, .65);
  display: block;
  font-size: 14px;
  line-height: 1.8;
}
.footer h3 { font-size: 16px; margin: 0 0 16px; }
.footer-social { display: flex; gap: 16px; }
.footer-social .social-badge {
  height: 44px;
  width: 44px;
}
.footer-social .social-badge::after { font-size: 14px; }
.footer-social .social-badge-facebook::after { font-size: 24px; }
.footer-social .social-badge-linkedin::after { font-size: 18px; }
.footer-social i,
.footer-social svg {
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  padding: 12px;
  box-sizing: content-box;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  padding: 20px;
  text-align: center;
}

.hover-lift { transition: transform .25s ease, box-shadow .25s ease; }
.hover-lift:hover { transform: translateY(-7px) scale(1.01); }
.hover-slide:hover { transform: translateX(6px); }
.tilt-hover { transition: transform .3s cubic-bezier(.2, 1, .3, 1); }
.tilt-hover:hover { transform: scale(1.025) rotate(-.5deg); }
.float { animation: float 4s ease-in-out infinite; }
.pulse { animation: pulse 2.5s ease-in-out infinite; }

.reveal, .reveal-item, .text-reveal, .image-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
}
.text-reveal { transform: translateY(24px); transition-duration: .95s; }
.image-reveal { transform: translateX(34px) scale(.985); transition-duration: 1.05s; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.is-visible, .is-visible .reveal-item {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.reveal-stagger.is-visible .reveal-item:nth-child(2) { transition-delay: .09s; }
.reveal-stagger.is-visible .reveal-item:nth-child(3) { transition-delay: .18s; }
.reveal-stagger.is-visible .reveal-item:nth-child(4) { transition-delay: .27s; }
.reveal-stagger.is-visible .reveal-item:nth-child(5) { transition-delay: .36s; }
.reveal-stagger.is-visible .reveal-item:nth-child(6) { transition-delay: .45s; }
.reveal-stagger.is-visible .reveal-item:nth-child(7) { transition-delay: .54s; }
.reveal-stagger.is-visible .reveal-item:nth-child(8) { transition-delay: .63s; }
.reveal-now {
  animation: revealUp .55s cubic-bezier(.22, 1, .36, 1) both;
}

.intro-down { animation: introDown .45s ease both; }
.intro-nav { animation: introNav .55s ease .08s both; }
.intro-zoom { animation: introZoom 1.4s ease both; }
.intro-up { animation: introUp .7s ease both; }
.intro-up-delay { animation: introUp .7s ease .35s both; }
.intro-pop { animation: introPop .45s ease .18s both; }
.intro-right { animation: introRight .7s ease .2s both; }
.intro-right-delay { animation: introRight .55s ease .75s both; }
.quick-links.intro-right-delay { animation-name: introQuickLinks; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes revealUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes introDown { from { transform: translateY(-40px); } to { transform: translateY(0); } }
@keyframes introNav { from { opacity: 0; transform: translateY(-85px); } to { opacity: 1; transform: translateY(0); } }
@keyframes introZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes introUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes introPop { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
@keyframes introRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes introQuickLinks { from { opacity: 0; transform: translate(30px, -50%); } to { opacity: 1; transform: translate(0, -50%); } }
@keyframes recruiterSlideRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

@media (min-width: 640px) {
  .why-grid, .program-grid, .accreditation-grid, .phone-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .apply-btn { display: inline-flex; }
}

@media (max-width: 639px) {
  .apply-btn, .hide-sm { display: none !important; }
  .hero h1 { font-size: 44px; }
}

@media (max-width: 767px) {
  .topbar-left, .hide-md { display: none !important; }
  .section-title { align-items: flex-start; }
  .event-row { align-items: flex-start; }
}

@media (min-width: 768px) {
  .section-pad { padding-block: 80px; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .section-action { display: inline-flex; }
  .tab-grid { grid-template-columns: repeat(4, 1fr); }
  .placement-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .section-pad { padding-block: 120px; }
  .nav-links { display: flex; }
  .nav-item:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .menu-toggle { display: none; }
  .hero { min-height: 800px; }
  .hero-grid { grid-template-columns: 1fr .9fr; min-height: 800px; }
  .hero-feature { display: block; }
  .stat-grid { grid-template-columns: repeat(6, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .programs-events { grid-template-columns: 1fr 360px; }
  .program-grid { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(6, 1fr); }
  .accreditation-grid { grid-template-columns: repeat(5, 1fr); }
  .department-grid { grid-template-columns: repeat(2, 1fr); }
  .phone-grid { grid-template-columns: repeat(5, 1fr); }
  .cta-grid { grid-template-columns: 1fr 1fr 1fr 1.2fr; }
}

@media (min-width: 1280px) {
  .quick-links { display: block; }
}
