:root {
  --brand-primary: #173058;
  --brand-accent: #aa222e;
  --text-main: #1f2d3d;
  --text-muted: #6f7e90;
  --bg-soft: #f5f8fc;
  --border: #e3e9f1;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(25, 50, 90, 0.08);
  --shadow-lg: 0 18px 45px rgba(25, 50, 90, 0.14);
  --radius-md: 16px;
  --radius-lg: 22px;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --cat-open-house: #173058;
  --cat-innovation: #aa222e;
  --cat-media: #173058;
  --cat-placement: #aa222e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-accent) !important;
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-size: clamp(1.9rem, 2.2vw + 1rem, 2.8rem);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 640px;
}

.navbar {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-primary);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
}

.brand-text {
  color: var(--brand-primary);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.brand-text small {
  display: block;
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.nav-link {
  color: var(--text-main) !important;
  font-weight: 500;
  font-size: 0.92rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-accent) !important;
}

.btn-brand {
  background: var(--brand-accent);
  border: 1px solid var(--brand-accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  padding: 0.68rem 1.35rem;
  box-shadow: 0 10px 20px rgba(170, 34, 46, 0.25);
}

.btn-brand:hover {
  background: #8f1b26;
  border-color: #8f1b26;
  color: var(--white);
}

.btn-outline-brand {
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  border-radius: 999px;
  font-weight: 600;
  background: var(--white);
  padding: 0.68rem 1.35rem;
}

.btn-outline-brand:hover {
  background: var(--brand-primary);
  color: var(--white);
}

.hero {
  min-height: 96vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 9.5rem 0 5rem;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(23, 48, 88, 0.74);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.3rem, 3.8vw + 1rem, 4rem);
  line-height: 1.08;
  margin-bottom: 1.1rem;
}

.hero-title span {
  color: #ffd7db;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
  max-width: 540px;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 0.9rem;
}

.hero-meta i {
  color: #ffd7db;
  margin-right: 0.4rem;
}

.about-image {
  box-shadow: var(--shadow-sm);
}

.feature-list {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.75rem;
}

.feature-list div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  color: var(--brand-primary);
  font-weight: 500;
}

.feature-list i {
  color: var(--brand-accent);
  margin-right: 0.5rem;
}

.program-card {
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.program-tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  background: #edf3ff;
  color: var(--brand-primary);
  border-radius: 999px;
  font-size: 0.76rem;
  padding: 0.28rem 0.7rem;
  font-weight: 600;
}

.program-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 0.95rem;
  background: #f2f6fb;
  color: var(--brand-accent);
}

.program-card h3 {
  color: var(--brand-primary);
  font-size: 1.18rem;
}

.program-card p {
  color: var(--text-muted);
  margin: 0;
}

.calendar-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.calendar-head {
  background: var(--brand-primary);
  color: var(--white);
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-head strong {
  font-size: 1.05rem;
}

.calendar-head span {
  font-size: 0.78rem;
  opacity: 0.8;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 1rem;
}

.calendar-weekday {
  display: grid;
  place-items: center;
  color: #8b99ad;
  font-weight: 600;
  font-size: 0.75rem;
  min-height: 28px;
}

.calendar-day {
  display: grid;
  place-items: center;
  border-radius: 10px;
  min-height: 36px;
  font-size: 0.85rem;
  color: var(--brand-primary);
  border: 1px solid transparent;
  background: transparent;
}

span.calendar-day {
  border: 1px solid transparent;
}

button.calendar-day {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

button.calendar-day:hover {
  transform: translateY(-1px);
  border-color: #c8d5e8;
  box-shadow: 0 4px 14px rgba(25, 50, 90, 0.12);
}

.calendar-day.muted {
  color: #a4b0bf;
}

.calendar-day.has-event {
  color: var(--white);
  font-weight: 700;
}

.calendar-day.is-active {
  outline: 3px solid rgba(25, 50, 90, 0.2);
  transform: translateY(-1px);
}

.category-open-house { background: var(--cat-open-house); }
.category-innovation { background: var(--cat-innovation); }
.category-media { background: var(--cat-media); }
.category-placement { background: var(--cat-placement); }

.event-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding: 0 1rem 1rem;
  font-size: 0.8rem;
  color: var(--brand-primary);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.35rem;
}

.dot-open-house { background: var(--cat-open-house); }
.dot-innovation { background: var(--cat-innovation); }
.dot-media { background: var(--cat-media); }
.dot-placement { background: var(--cat-placement); }

.event-showcase {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.event-showcase-media img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
}

.event-showcase-body {
  padding: 1.2rem 1.3rem 1.3rem;
}

.event-category-badge {
  display: inline-block;
  color: var(--white);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-showcase h3 {
  margin-top: 0.7rem;
  margin-bottom: 0.45rem;
  color: var(--brand-primary);
  font-size: 1.25rem;
}

.event-showcase p {
  margin: 0;
  color: var(--text-muted);
}

.event-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.event-meta span {
  font-size: 0.86rem;
  color: var(--brand-primary);
  background: #f1f5fb;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
}

.event-meta i {
  color: var(--brand-accent);
  margin-right: 0.3rem;
}

.event-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.event-quick-link {
  border: none;
  color: var(--white);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.78;
}

.event-quick-link.is-active {
  opacity: 1;
  box-shadow: 0 8px 20px rgba(25, 50, 90, 0.22);
}

.infra-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
}

.infra-card h3 {
  color: var(--brand-primary);
  font-size: 1.2rem;
}

.infra-card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.news-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-body {
  padding: 1.1rem;
}

.news-body span {
  color: var(--brand-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.news-body h3 {
  margin: 0.45rem 0 0;
  color: var(--brand-primary);
  font-size: 1.05rem;
  line-height: 1.4;
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 3.8rem 0 1.8rem;
}

.footer-title {
  color: var(--brand-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.footer a {
  color: var(--text-main);
  text-decoration: none;
}

.footer a:hover {
  color: var(--brand-accent);
}

.floating-admission {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  background: var(--brand-accent);
  color: var(--white);
  border-radius: 999px;
  padding: 0.78rem 1.05rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(170, 34, 46, 0.32);
}

.floating-admission:hover {
  color: var(--white);
  background: #8f1b26;
}

.infra-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #ffffff;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.infra-hero-panel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
}

.infra-hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.infra-hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.3rem;
  background: rgba(23, 48, 88, 0.76);
}

.infra-hero-overlay p {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffd8dc;
}

.infra-hero-overlay h3 {
  margin: 0.35rem 0 0;
  color: #fff;
  font-size: 1.35rem;
}

.infra-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.infra-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(25, 50, 90, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.32rem 0.68rem;
}

.infra-side-layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr)) auto;
  gap: 0.65rem;
}

.infra-micro-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 120px;
}

.infra-micro-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.infra-micro-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 0.7rem;
  background: rgba(23, 48, 88, 0.78);
}

.infra-micro-card:hover img {
  transform: scale(1.06);
}

.infra-metric-box {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--brand-primary);
  padding: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.infra-metric-box div {
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.55rem 0.2rem;
}

.infra-metric-box strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.infra-metric-box span {
  font-size: 0.7rem;
  color: #dbe7ff;
}

.infra-tab-layout {
  display: grid;
  grid-template-columns: minmax(0, 290px) minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.infra-tab-nav {
  background: #f7f9fd;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0.6rem;
  gap: 0.45rem;
}

.infra-tab-nav .nav-link {
  text-align: left;
  border-radius: 12px;
  border: 1px solid #dbe4f1;
  background: #fff;
  color: var(--brand-primary) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.72rem 0.8rem;
}

.infra-tab-nav .nav-link.active {
  background: var(--brand-primary);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(25, 50, 90, 0.28);
}

.infra-tab-content .tab-pane {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.infra-tab-content img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.infra-pane-copy {
  padding: 0.95rem 1rem 1.1rem;
}

.infra-pane-copy h3 {
  margin: 0;
  color: var(--brand-primary);
  font-size: 1.22rem;
}

.infra-pane-copy p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
}

.infra-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.infra-copy {
  border-radius: 22px;
  padding: 1.6rem 1.45rem;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.infra-mini {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffdce0;
  font-weight: 600;
}

.infra-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.25;
}

.infra-copy p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.infra-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.infra-stat-grid div {
  border-radius: 14px;
  padding: 0.7rem 0.55rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.infra-stat-grid strong {
  display: block;
  font-size: 1.08rem;
  color: #fff;
}

.infra-stat-grid span {
  font-size: 0.72rem;
  color: #dce7ff;
}

.infra-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: repeat(2, 210px);
  gap: 0.65rem;
}

.infra-shot {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.infra-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.infra-shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(23, 48, 88, 0.78);
}

.infra-shot:hover img {
  transform: scale(1.05);
}

.shot-main { grid-column: 1; grid-row: 1 / 3; }
.shot-lab { grid-column: 2; grid-row: 1; }
.shot-library { grid-column: 3; grid-row: 1; }
.shot-studio { grid-column: 2; grid-row: 2; }
.shot-collab { grid-column: 3; grid-row: 2; }

.life-banner {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.life-banner img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.life-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 1.5rem;
  background: rgba(23, 48, 88, 0.45);
}

.life-banner-overlay h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-family: var(--font-display);
  text-align: center;
  background: var(--brand-primary);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 0.52rem 1.25rem;
}

.life-tabs-wrap {
  margin-top: -18px;
  position: relative;
  z-index: 3;
}

.life-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid #d7dfea;
  background: #fff;
  box-shadow: 0 8px 20px rgba(25, 50, 90, 0.12);
  margin: 0 auto;
  width: max-content;
  max-width: 100%;
}

.life-tabs .nav-link {
  white-space: nowrap;
  border: none;
  color: var(--brand-primary) !important;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  background: transparent;
}

.life-tabs .nav-link.active {
  background: var(--brand-accent);
  color: #fff !important;
  /* box-shadow: 0 8px 16px rgba(25, 50, 90, 0.3); */
}

.life-tab-content {
  margin-top: 0.55rem;
}

.life-tab-content .tab-pane {
  background: transparent;
}

.life-collage {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 1fr;
  grid-template-rows: repeat(3, minmax(110px, 1fr));
  gap: 0.52rem;
  border-radius: 16px;
  overflow: hidden;
}

.life-tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.life-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.life-tile:hover img {
  transform: scale(1.06);
}

.tile-a { grid-column: 1; grid-row: 1; }
.tile-b { grid-column: 1; grid-row: 2; }
.tile-c { grid-column: 1; grid-row: 3; }
.tile-d { grid-column: 2 / 4; grid-row: 1 / 3; }
.tile-e { grid-column: 2; grid-row: 3; }
.tile-f { grid-column: 3; grid-row: 3; }
.tile-g { grid-column: 4; grid-row: 1; }
.tile-h { grid-column: 4; grid-row: 2; }
.tile-i { grid-column: 4; grid-row: 3; }

.infra-creative {
  position: relative;
  min-height: 540px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 50, 90, 0.07), transparent 45%),
    radial-gradient(circle at 15% 20%, rgba(170, 34, 46, 0.12), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(25, 50, 90, 0.1), transparent 40%),
    #ffffff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.infra-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(25, 50, 90, 0.18);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 340px;
  height: 340px;
  animation: spinClock 30s linear infinite;
}

.orbit-2 {
  width: 500px;
  height: 500px;
  animation: spinAnti 38s linear infinite;
}

.infra-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: rgba(25, 50, 90, 0.94);
  color: #fff;
  min-width: 280px;
  box-shadow: 0 16px 35px rgba(25, 50, 90, 0.35);
}

.infra-core p {
  color: #d3ddf0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.infra-core h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #fff;
}

.infra-core span {
  font-size: 0.8rem;
  color: #ffd9de;
}

.infra-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--brand-primary);
  font-size: 0.82rem;
  font-weight: 600;
  animation: floatNode 4.6s ease-in-out infinite;
}

.infra-node img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(25, 50, 90, 0.22);
}

.node-1 { top: 10%; left: 20%; }
.node-2 { top: 22%; right: 10%; animation-delay: -0.8s; }
.node-3 { top: 50%; right: 5%; animation-delay: -1.4s; }
.node-4 { bottom: 16%; right: 18%; animation-delay: -2s; }
.node-5 { bottom: 10%; left: 18%; animation-delay: -2.6s; }
.node-6 { top: 48%; left: 6%; animation-delay: -3.2s; }

@keyframes floatNode {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spinClock {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinAnti {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 8rem;
    min-height: 88vh;
  }

  .infra-stage {
    grid-template-columns: 1fr;
  }

  .infra-copy {
    min-height: auto;
  }

  .infra-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px 180px;
  }

  .shot-main { grid-column: 1 / 3; grid-row: 1; }
  .shot-lab { grid-column: 1; grid-row: 2; }
  .shot-library { grid-column: 2; grid-row: 2; }
  .shot-studio { grid-column: 1; grid-row: 3; }
  .shot-collab { grid-column: 2; grid-row: 3; }

  .infra-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .life-banner img {
    height: 320px;
  }

  .life-collage {
    grid-template-columns: 1fr 1.2fr 1.2fr;
  }

  .tile-a { grid-column: 1; grid-row: 1; }
  .tile-b { grid-column: 1; grid-row: 2; }
  .tile-c { grid-column: 1; grid-row: 3; }
  .tile-d { grid-column: 2 / 4; grid-row: 1 / 3; }
  .tile-e { grid-column: 2; grid-row: 3; }
  .tile-f { grid-column: 3; grid-row: 3; }
  .tile-g,
  .tile-h,
  .tile-i { display: none; }

  .life-tabs {
    width: 100%;
  }

}

@media (max-width: 575.98px) {
  .section {
    padding: 4rem 0;
  }

  .infra-copy h3 {
    font-size: 1.3rem;
  }

  .infra-stat-grid {
    grid-template-columns: 1fr;
  }

  .infra-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 170px 170px 170px 170px;
  }

  .shot-main,
  .shot-lab,
  .shot-library,
  .shot-studio,
  .shot-collab {
    grid-column: 1;
  }

  .shot-main { grid-row: 1; }
  .shot-lab { grid-row: 2; }
  .shot-library { grid-row: 3; }
  .shot-studio { grid-row: 4; }
  .shot-collab { grid-row: 5; }

  .infra-shot figcaption {
    font-size: 0.74rem;
  }

  .life-banner img {
    height: 235px;
  }

  .life-tabs .nav-link {
    font-size: 0.78rem;
    padding: 0.44rem 0.75rem;
  }

  .life-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 110px);
  }

  .tile-a { grid-column: 1; grid-row: 1; display: block; }
  .tile-b { grid-column: 1; grid-row: 2; display: block; }
  .tile-c { grid-column: 1; grid-row: 3; display: block; }
  .tile-d { grid-column: 2; grid-row: 1 / 3; display: block; }
  .tile-e { grid-column: 1; grid-row: 4; display: block; }
  .tile-f { grid-column: 2; grid-row: 3; display: block; }
  .tile-g { grid-column: 2; grid-row: 4; display: block; }
  .tile-h,
  .tile-i { display: none; }

  .life-tabs-wrap {
    margin-top: -12px;
  }

  .infra-main-overlay h3 {
    font-size: 1.05rem;
  }

  .infra-gallery-grid {
    grid-template-columns: 1fr;
  }

  .infra-gallery-item {
    min-height: 200px;
  }

  .calendar-day {
    min-height: 33px;
    font-size: 0.74rem;
  }

  .event-showcase-media img {
    height: 210px;
  }

  .floating-admission {
    right: 12px;
    bottom: 12px;
    padding: 0.68rem 0.95rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 991.98px) {
  .infra-tab-layout {
    grid-template-columns: 1fr;
  }

  .infra-tab-nav {
    flex-direction: row !important;
    overflow-x: auto;
    white-space: nowrap;
  }

  .infra-tab-nav .nav-link {
    white-space: nowrap;
  }

  .infra-tab-content img {
    height: 340px;
  }
}

@media (max-width: 575.98px) {
  .infra-tab-content img {
    height: 240px;
  }

  .infra-pane-copy h3 {
    font-size: 1.05rem;
  }
}

@media (max-width: 991.98px) {
  .infra-showcase {
    grid-template-columns: 1fr;
  }

  .infra-hero-panel {
    min-height: 360px;
  }

  .infra-side-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }

  .infra-metric-box {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .infra-hero-panel {
    min-height: 260px;
  }

  .infra-hero-overlay h3 {
    font-size: 1.05rem;
  }

  .infra-badges {
    position: static;
    padding: 0.6rem 0.6rem 0;
  }

  .infra-hero-overlay {
    padding-top: 0.7rem;
  }

  .infra-side-layout {
    grid-template-columns: 1fr;
  }

  .infra-metric-box {
    grid-template-columns: 1fr;
  }
}
:root {
  --brand-primary: #19325a;
  --brand-accent: #aa222e;
  --text-main: #1f2d3d;
  --text-muted: #6f7e90;
  --bg-soft: #f5f8fc;
  --border: #e3e9f1;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(25, 50, 90, 0.08);
  --shadow-lg: 0 18px 45px rgba(25, 50, 90, 0.14);
  --radius-md: 16px;
  --radius-lg: 22px;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-size: clamp(1.9rem, 2.2vw + 1rem, 2.8rem);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 640px;
}

.navbar {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-primary), #2d4f87);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
}

.brand-text {
  color: var(--brand-primary);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.brand-text small {
  display: block;
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.nav-link {
  color: var(--text-main) !important;
  font-weight: 500;
  font-size: 0.92rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-accent) !important;
}

.btn-brand {
  background: var(--brand-accent);
  border: 1px solid var(--brand-accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  padding: 0.68rem 1.35rem;
  box-shadow: 0 10px 20px rgba(170, 34, 46, 0.25);
}

.btn-brand:hover {
  background: #8f1b26;
  border-color: #8f1b26;
  color: var(--white);
}

.btn-outline-brand {
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  border-radius: 999px;
  font-weight: 600;
  background: var(--white);
  padding: 0.68rem 1.35rem;
}

.btn-outline-brand:hover {
  background: var(--brand-primary);
  color: var(--white);
}

.hero {
  padding: 9.5rem 0 5rem;
  min-height: 96vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.3rem, 3.8vw + 1rem, 4rem);
  line-height: 1.08;
  margin-bottom: 1.1rem;
}

.hero-title span {
  color: #ffd7db;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
  max-width: 540px;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 0.9rem;
}

.hero-meta i {
  color: #ffd7db;
  margin-right: 0.4rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(25, 50, 90, 0.86) 0%, rgba(25, 50, 90, 0.68) 45%, rgba(170, 34, 46, 0.48) 100%);
}

.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.video-card video {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.about-image {
  box-shadow: var(--shadow-sm);
}

.feature-list {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.75rem;
}

.feature-list div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  color: var(--brand-primary);
  font-weight: 500;
}

.feature-list i {
  color: var(--brand-accent);
  margin-right: 0.5rem;
}

.program-card {
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.program-tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  background: #edf3ff;
  color: var(--brand-primary);
  border-radius: 999px;
  font-size: 0.76rem;
  padding: 0.28rem 0.7rem;
  font-weight: 600;
}

.program-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 0.95rem;
  background: #f2f6fb;
  color: var(--brand-accent);
}

.program-card h3 {
  color: var(--brand-primary);
  font-size: 1.18rem;
}

.program-card p {
  color: var(--text-muted);
  margin: 0;
}

.calendar-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.calendar-head {
  background: var(--brand-primary);
  color: var(--white);
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-head strong {
  font-size: 1.05rem;
}

.calendar-head span {
  font-size: 0.78rem;
  opacity: 0.8;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 1rem;
}

.calendar-grid span {
  display: grid;
  place-items: center;
  border-radius: 10px;
  min-height: 34px;
  font-size: 0.82rem;
  color: var(--brand-primary);
}

.calendar-grid .muted {
  color: #a4b0bf;
}

.calendar-grid .active {
  background: #ffecef;
  color: var(--brand-accent);
  font-weight: 700;
}

.event-list {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.4rem;
}

.event-item {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.event-date {
  flex-shrink: 0;
  background: #fff4f5;
  border: 1px solid #ffd8dd;
  color: var(--brand-accent);
  border-radius: 12px;
  width: 70px;
  text-align: center;
  padding: 0.4rem;
}

.event-date strong {
  font-size: 1.4rem;
  line-height: 1;
  display: block;
}

.event-date span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-item h3 {
  color: var(--brand-primary);
  margin-bottom: 0.3rem;
  font-size: 1.06rem;
}

.event-item p {
  margin: 0;
  color: var(--text-muted);
}

.infra-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
}

.infra-card h3 {
  color: var(--brand-primary);
  font-size: 1.2rem;
}

.infra-card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.news-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-body {
  padding: 1.1rem;
}

.news-body span {
  color: var(--brand-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.news-body h3 {
  margin: 0.45rem 0 0;
  color: var(--brand-primary);
  font-size: 1.05rem;
  line-height: 1.4;
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 3.8rem 0 1.8rem;
}

.footer-title {
  color: var(--brand-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.footer a {
  color: var(--text-main);
  text-decoration: none;
}

.footer a:hover {
  color: var(--brand-accent);
}

.floating-admission {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  background: var(--brand-accent);
  color: var(--white);
  border-radius: 999px;
  padding: 0.78rem 1.05rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(170, 34, 46, 0.32);
}

.floating-admission:hover {
  color: var(--white);
  background: #8f1b26;
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 8rem;
    min-height: 88vh;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 4rem 0;
  }

  .calendar-grid span {
    min-height: 30px;
    font-size: 0.75rem;
  }

  .floating-admission {
    right: 12px;
    bottom: 12px;
    padding: 0.68rem 0.95rem;
    font-size: 0.82rem;
  }
}
:root {
  --svgu-bg: #ffffff;
  --svgu-bg-soft: #f8fafc;
  --svgu-bg-muted: #f1f5f9;
  --svgu-ink: #0f172a;
  --svgu-text: #1e293b;
  --svgu-muted: #64748b;
  --brand-primary: #173058;
  --brand-accent: #aa222e;
  --svgu-border: #e2e8f0;
  --svgu-card-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --svgu-card-shadow-hover: 0 20px 50px rgba(15, 23, 42, 0.1);
  --svgu-radius: 20px;
  --svgu-radius-sm: 14px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  background: var(--svgu-bg);
  color: var(--svgu-text);
  line-height: 1.65;
  overflow-x: hidden;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 55% at 0% -20%, rgba(13, 148, 136, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(79, 70, 229, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(13, 148, 136, 0.06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.navbar {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 1px solid var(--svgu-border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.06);
}

.navbar-toggler {
  border-color: var(--svgu-border) !important;
}

.navbar-toggler-icon {
  filter: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--brand-primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

.brand-text {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--svgu-ink);
}

.brand-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--svgu-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-link {
  color: var(--svgu-muted) !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem !important;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--svgu-ink) !important;
}

.btn-gradient {
  background: var(--brand-accent);
  border: none;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  color: #fff !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.35);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(13, 148, 136, 0.4);
  color: #fff !important;
}

.btn-outline-glass {
  border: 2px solid var(--svgu-border);
  color: var(--svgu-ink);
  font-weight: 600;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.btn-outline-glass:hover {
  border-color: var(--brand-accent);
  background: rgba(170, 34, 46, 0.12);
  color: var(--brand-accent);
  transform: translateY(-2px);
}

.section-alt {
  background: var(--svgu-bg-soft);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 3rem;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--svgu-border);
  background: #fff;
  font-size: 0.8rem;
  color: var(--svgu-muted);
  margin-bottom: 1.5rem;
  box-shadow: var(--svgu-card-shadow);
}

.hero-badge span {
  color: var(--brand-accent);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.5vw + 1rem, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.07;
  margin-bottom: 1.25rem;
  color: var(--svgu-ink);
}

.gradient-text {
  background: var(--brand-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--svgu-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--svgu-border);
}

.hero-stat strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--svgu-ink);
}

.hero-stat span {
  font-size: 0.82rem;
  color: var(--svgu-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  min-height: 440px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(79, 70, 229, 0.06) 0%, transparent 45%),
    var(--svgu-bg-muted);
  border: 1px solid var(--svgu-border);
  overflow: hidden;
}

.hero-grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--svgu-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--svgu-border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black, transparent);
}

.hero-orbit {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 2px dashed rgba(13, 148, 136, 0.2);
  animation: spin-slow 56s linear infinite;
}

.hero-card {
  position: absolute;
  border-radius: var(--svgu-radius-sm);
  background: #fff;
  border: 1px solid var(--svgu-border);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--svgu-card-shadow);
  animation: float 5s ease-in-out infinite;
  z-index: 2;
}

.hero-card:nth-child(3) {
  top: 6%;
  right: 4%;
  animation-delay: -1.5s;
}

.hero-card:nth-child(4) {
  bottom: 14%;
  left: 2%;
  animation-delay: -3s;
}

.hero-card:nth-child(5) {
  top: 38%;
  right: 8%;
  animation-delay: -2.5s;
}

.hero-card:nth-child(6) {
  top: 52%;
  left: 8%;
  animation-delay: -4s;
}

.hero-card h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--svgu-muted);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.hero-card p {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--svgu-ink);
}

.hero-card .hero-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(170, 34, 46, 0.12);
  color: var(--brand-accent);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.section {
  padding: 5rem 0;
}

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-accent);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.section-title {
  font-size: clamp(1.85rem, 2.5vw + 1rem, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  color: var(--svgu-ink);
}

.section-desc {
  color: var(--svgu-muted);
  max-width: 580px;
}

.glass-panel {
  border-radius: 24px;
  border: 1px solid var(--svgu-border);
  background: #fff;
  box-shadow: var(--svgu-card-shadow);
  padding: 2rem;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: 12px;
  background: rgba(170, 34, 46, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.2);
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 0.88rem;
}

/* Infrastructure bento */
.infra-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 1rem;
}

.infra-item {
  border-radius: var(--svgu-radius);
  border: 1px solid var(--svgu-border);
  background: #fff;
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: var(--svgu-card-shadow);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.infra-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-primary);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.infra-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--svgu-card-shadow-hover);
  border-color: rgba(13, 148, 136, 0.25);
}

.infra-item:hover::before {
  opacity: 1;
}

.infra-item--hero {
  grid-column: span 7;
  grid-row: span 2;
  background: linear-gradient(145deg, #fff 0%, var(--svgu-bg-soft) 100%);
  padding: 2rem;
}

.infra-item--tall {
  grid-column: span 5;
  grid-row: span 2;
  background: var(--brand-primary);
  color: #fff;
  border: none;
}

.infra-item--tall .infra-stat-label {
  color: rgba(255, 255, 255, 0.85);
}

.infra-item--tall h3,
.infra-item--tall p {
  color: #fff;
}

.infra-item--tall .infra-icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.infra-item--wide {
  grid-column: span 6;
}

.infra-item--cell {
  grid-column: span 3;
}

.infra-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(170, 34, 46, 0.12);
  color: var(--brand-accent);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.infra-item--tall .infra-stat-num {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0.5rem 0;
}

.infra-stat-label {
  font-size: 0.8rem;
  color: var(--svgu-muted);
  font-weight: 600;
}

.infra-item h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--svgu-ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.infra-item p {
  font-size: 0.92rem;
  color: var(--svgu-muted);
  margin: 0;
  line-height: 1.55;
}

.infra-pattern {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.program-card {
  height: 100%;
  border-radius: var(--svgu-radius);
  border: 1px solid var(--svgu-border);
  background: #fff;
  padding: 1.75rem;
  box-shadow: var(--svgu-card-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: var(--svgu-card-shadow-hover);
}

.program-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(79, 70, 229, 0.1));
  color: var(--brand-accent);
}

.program-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--svgu-ink);
  margin-bottom: 0.45rem;
}

.program-card p {
  color: var(--svgu-muted);
  font-size: 0.94rem;
  margin: 0;
}

.why-item {
  display: flex;
  gap: 1.15rem;
  padding: 1.5rem;
  border-radius: var(--svgu-radius);
  border: 1px solid var(--svgu-border);
  background: #fff;
  height: 100%;
  box-shadow: var(--svgu-card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--svgu-card-shadow-hover);
}

.why-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--brand-primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
}

.why-item h3 {
  color: var(--svgu-ink);
}

.facility-chip {
  border-radius: var(--svgu-radius);
  border: 1px solid var(--svgu-border);
  padding: 1.75rem 1.35rem;
  text-align: center;
  background: #fff;
  box-shadow: var(--svgu-card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.facility-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--svgu-card-shadow-hover);
}

.facility-chip i {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  background: var(--brand-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.facility-chip h3 {
  color: var(--svgu-ink);
}

.event-card {
  border-radius: var(--svgu-radius);
  overflow: hidden;
  border: 1px solid var(--svgu-border);
  background: #fff;
  height: 100%;
  box-shadow: var(--svgu-card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--svgu-card-shadow-hover);
}

.event-date {
  background: var(--brand-primary);
  color: #fff;
  font-weight: 800;
  padding: 1rem;
  text-align: center;
  min-width: 88px;
}

.event-date .day {
  font-size: 1.75rem;
  line-height: 1;
}

.event-body {
  padding: 1.25rem 1.5rem;
}

.event-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-accent);
  font-weight: 800;
}

.event-body h3 {
  color: var(--svgu-ink);
}

.placement-panel {
  border-radius: 28px;
  border: 1px solid var(--svgu-border);
  background: linear-gradient(125deg, #fff 0%, var(--svgu-bg-soft) 50%, rgba(13, 148, 136, 0.06) 100%);
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--svgu-card-shadow);
}

.placement-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08), transparent 65%);
  pointer-events: none;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.logo-pill {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--svgu-border);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--svgu-muted);
}

.testimonial-card {
  border-radius: var(--svgu-radius);
  border: 1px solid var(--svgu-border);
  padding: 1.65rem;
  background: #fff;
  height: 100%;
  box-shadow: var(--svgu-card-shadow);
}

.testimonial-card .stars {
  color: #f59e0b;
  margin-bottom: 0.85rem;
  letter-spacing: 0.12em;
}

.testimonial-card strong {
  color: var(--svgu-ink);
}

.topper-card {
  border-radius: var(--svgu-radius);
  border: 1px solid var(--svgu-border);
  background: #fff;
  padding: 1.6rem;
  box-shadow: var(--svgu-card-shadow);
  height: 100%;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.topper-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--svgu-card-shadow-hover);
}

.topper-rank {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(170, 34, 46, 0.12);
  color: var(--brand-accent);
}

.avatar-lg {
  width: 56px;
  height: 56px;
  font-size: 1rem;
}

.step-card {
  border-radius: var(--svgu-radius);
  border: 1px solid var(--svgu-border);
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--svgu-card-shadow);
  height: 100%;
}

.step-no {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-accent);
  background: rgba(170, 34, 46, 0.12);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.9rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.85rem;
}

.cta-banner {
  border-radius: 28px;
  padding: 3.5rem 2rem;
  text-align: center;
  border: 1px solid var(--svgu-border);
  background: linear-gradient(135deg, var(--svgu-bg-soft) 0%, #fff 40%, rgba(13, 148, 136, 0.08) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--svgu-card-shadow);
}

.cta-banner h2 {
  font-size: clamp(1.65rem, 2vw + 1rem, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
  color: var(--svgu-ink);
}

.footer {
  border-top: 1px solid var(--svgu-border);
  padding: 3.5rem 0 1.75rem;
  background: var(--svgu-bg-soft);
}

.footer a {
  color: var(--svgu-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--brand-accent);
}

.footer-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--svgu-ink);
  font-weight: 800;
  margin-bottom: 1rem;
}

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

@media (max-width: 1199.98px) {
  .infra-item--hero {
    grid-column: span 12;
    grid-row: span 1;
  }

  .infra-item--tall {
    grid-column: span 12;
    grid-row: span 1;
    min-height: 220px;
  }

  .infra-item--wide {
    grid-column: span 6;
  }

  .infra-item--cell {
    grid-column: span 6;
  }
}

@media (max-width: 991.98px) {
  .hero-visual {
    margin-top: 2.5rem;
    min-height: 380px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .hero-grid-bg {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    min-height: 200px;
    order: -1;
  }

  .hero-orbit {
    display: none;
  }

  .hero-card {
    position: relative;
    margin-bottom: 0;
    animation: none;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .infra-item--wide,
  .infra-item--cell {
    grid-column: span 12;
  }
}

@media (max-width: 575.98px) {
  .hero-stats {
    gap: 1.25rem;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .placement-panel {
    padding: 2rem 1.25rem;
  }
}

/* Brand lock: no gradients, only two theme colors */
:root {
  --brand-primary: #173058;
  --brand-accent: #AA222E;
  --cat-open-house: #173058;
  --cat-innovation: #AA222E;
  --cat-media: #173058;
  --cat-placement: #AA222E;
}

.brand-mark,
.life-banner-overlay h2,
.life-tabs .nav-link.active,
.infra-metric-box,
.infra-tab-nav .nav-link.active {
  background-image: none !important;
}

.brand-mark { background-color: var(--brand-primary) !important; }
.hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(15, 33, 62, 0.88) 0%,
    rgba(23, 48, 88, 0.72) 42%,
    rgba(23, 48, 88, 0.45) 100%
  ) !important;
}
.life-banner-overlay { background: rgba(23, 48, 88, 0.45) !important; }
.life-banner-overlay h2 { background-color: var(--brand-primary) !important; }
.life-tabs .nav-link.active { background-color: var(--brand-accent) !important; }
.infra-showcase,
.infra-stage { background: #ffffff !important; }
.infra-hero-overlay,
.infra-shot figcaption,
.infra-micro-card figcaption { background: rgba(23, 48, 88, 0.78) !important; }
.infra-metric-box,
.infra-copy { background-color: var(--brand-primary) !important; }

/* Hero readability fix */
.hero {
  position: relative;
}

.hero--dynamic .hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--dynamic .hero-carousel .carousel-inner,
.hero--dynamic .hero-carousel .carousel-item {
  min-height: 96vh;
  height: 100%;
}

.hero--dynamic .hero-carousel .carousel-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 9.5rem 0 5rem;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(15, 33, 62, 0.88) 0%,
    rgba(23, 48, 88, 0.72) 42%,
    rgba(23, 48, 88, 0.45) 100%
  );
  pointer-events: none;
}

.hero--dynamic .hero-content--slide {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-carousel-indicators {
  z-index: 3;
  margin-bottom: 1.5rem;
}

.hero-carousel-control {
  z-index: 3;
  width: 8%;
}

.hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(15, 33, 62, 0.88) 0%,
    rgba(23, 48, 88, 0.72) 42%,
    rgba(23, 48, 88, 0.45) 100%
  ) !important;
}

.hero .eyebrow,
.hero .hero-title,
.hero .hero-title span,
.hero .hero-lead,
.hero .hero-meta,
.hero .hero-meta i {
  color: #ffffff !important;
}

.hero .hero-title {
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero .hero-lead {
  color: #f1f5f9 !important;
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
  max-width: 560px;
}

.hero .eyebrow {
  background: rgba(23, 48, 88, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.hero .btn-outline-brand {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* Header menu visibility fix */
#mainNav {
  background: rgba(255, 255, 255, 0.98) !important;
}

#mainNav .navbar-brand .brand-text {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: var(--brand-primary) !important;
}

#mainNav .navbar-brand .brand-text small {
  font-size: 0.7rem !important;
  color: var(--brand-primary) !important;
  opacity: 0.8;
}

#mainNav .nav-link {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--brand-primary) !important;
  opacity: 1 !important;
  padding: 0.62rem 0.5rem !important;
}

#mainNav .nav-link:hover,
#mainNav .nav-link:focus {
  color: var(--brand-accent) !important;
}

#mainNav .btn.btn-brand {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
}

/* Programs tabbed layout */
.program-modern-wrap {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #ffffff;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.program-intro-strip {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  background: #f8fbff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.program-intro-strip p {
  color: var(--brand-primary);
}

.program-intro-strip small {
  color: var(--text-muted);
}

.program-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.program-chip-row span {
  border: 1px solid rgba(23, 48, 88, 0.18);
  color: var(--brand-primary);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 600;
  background: #ffffff;
}

.program-tabs-wrap {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0.9rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.program-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f8fbff;
}

.program-tabs .nav-link {
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--brand-primary) !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 0.95rem;
  background: transparent;
}

.program-tabs .nav-link.active {
  background: var(--brand-primary);
  color: #fff !important;
  border-color: var(--brand-primary);
}

.program-tab-content {
  margin-top: 0.8rem;
}

.program-card {
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-accent);
}

.program-card p {
  margin-bottom: 0;
}

.program-card:hover .program-icon {
  transform: scale(1.06);
}

.program-icon {
  transition: transform 0.25s ease;
}

/* About section redesign */
#about .about-modern {
  position: relative;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(33, 116, 252, 0.16), transparent 36%),
    linear-gradient(160deg, #ffffff 0%, #f5f9ff 44%, #eef3ff 100%);
  padding: 1.35rem;
  border: 1px solid rgba(17, 79, 180, 0.14);
  box-shadow: 0 28px 56px -34px rgba(14, 58, 130, 0.58);
  overflow: hidden;
}

#about .about-modern::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 180px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  pointer-events: none;
}

#about .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 1.25rem;
  align-items: center;
}

#about .about-visual-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 0.72rem;
  align-items: stretch;
}

#about .about-visual-stack {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 470px;
  box-shadow: 0 24px 48px -34px rgba(7, 46, 108, 0.8);
  clip-path: polygon(0 0, 92% 0, 100% 11%, 100% 100%, 0 100%);
}

#about .about-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#about .about-floating-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(7, 25, 53, 0.8);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 15px;
  padding: 0.72rem 0.9rem;
  display: grid;
  gap: 0.18rem;
  line-height: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

#about .about-floating-note strong {
  font-size: 1.2rem;
}

#about .about-floating-note span {
  font-size: 0.8rem;
  color: #deebff;
}

#about .about-side-stats {
  display: grid;
  gap: 0.75rem;
}

#about .about-side-stats article {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(170deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid rgba(17, 79, 180, 0.18);
  padding: 0.8rem 0.52rem 0.74rem;
  text-align: center;
  display: grid;
  gap: 0.26rem;
  justify-items: center;
  box-shadow: 0 16px 28px -24px rgba(23, 58, 117, 0.72);
  overflow: hidden;
}

#about .about-side-stats article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-primary));
}

#about .about-side-stats i {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(160deg, var(--brand-primary), var(--brand-accent));
}

#about .about-side-stats strong {
  color: var(--brand-primary);
  font-size: 1.18rem;
  line-height: 1.05;
}

#about .about-side-stats span {
  color: #1f3f70;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.25;
}

#about .about-side-stats small {
  margin-top: 0.05rem;
  color: var(--text-muted);
  font-size: 0.64rem;
  line-height: 1.3;
  display: block;
}

#about .about-content-panel {
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(17, 79, 180, 0.13);
  padding: 1.25rem 1.2rem;
  display: grid;
  align-content: center;
}

#about .about-pill-row {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#about .about-pill-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--brand-primary);
  border-radius: 999px;
  padding: 0.34rem 0.66rem;
  background: #eaf3ff;
  border: 1px solid rgba(17, 79, 180, 0.13);
}

#about .about-feature-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.64rem;
}

#about .about-feature-list article {
  border: 1px solid rgba(17, 79, 180, 0.16);
  border-radius: 13px;
  padding: 0.7rem 0.82rem;
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.9rem;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 0.54rem;
}

#about .about-feature-list i {
  color: #fff;
  font-size: 0.84rem;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--brand-primary), var(--brand-accent));
}

#about .about-highlights {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
}

#about .about-highlights article {
  border-radius: 14px;
  border: 1px solid rgba(17, 79, 180, 0.15);
  background: linear-gradient(180deg, #ffffff, #f1f7ff);
  padding: 0.76rem 0.7rem;
}

#about .about-highlights strong {
  display: block;
  color: var(--brand-primary);
  font-size: 0.9rem;
}

#about .about-highlights span {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

@media (max-width: 991.98px) {
  #about .about-grid {
    grid-template-columns: 1fr;
  }

  #about .about-visual-shell {
    grid-template-columns: minmax(0, 1fr) 130px;
  }

  #about .about-visual-stack {
    min-height: 360px;
  }

  #about .about-content-panel {
    padding: 1.05rem;
  }

  #about .about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  #about .about-visual-shell {
    grid-template-columns: 1fr;
  }

  #about .about-visual-stack {
    min-height: 280px;
    clip-path: none;
  }

  #about .about-side-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  #about .about-side-stats strong {
    font-size: 1.02rem;
  }

  #about .about-side-stats span {
    font-size: 0.68rem;
  }

  #about .about-side-stats small {
    font-size: 0.6rem;
  }

  #about .about-feature-list article {
    font-size: 0.88rem;
  }

  #about .about-highlights {
    grid-template-columns: 1fr;
  }

  .program-intro-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .program-chip-row {
    justify-content: flex-start;
  }
}

/* Programs creative redesign */
#programs .program-creative-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

#programs .program-feature {
  grid-column: span 6;
  border-radius: 16px;
  padding: 1rem;
  background: var(--brand-primary);
  color: #fff;
}

#programs .program-feature-label {
  margin: 0 0 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d9e6ff;
  font-weight: 700;
}

#programs .program-feature h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #fff;
}

#programs .program-feature p {
  margin: 0.8rem 0 0;
  color: #e7efff;
}

#programs .program-feature-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#programs .program-feature-chips span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  font-size: 0.74rem;
  font-weight: 600;
}

#programs .program-neo-card {
  grid-column: span 3;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

#programs .program-neo-card span {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 0.45rem;
}

#programs .program-neo-card h4 {
  margin: 0;
  font-size: 1.04rem;
  color: var(--brand-primary);
}

#programs .program-neo-card p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

#programs .program-neo-highlight {
  grid-column: span 6;
  border-radius: 14px;
  border: 1px solid #d9e2ef;
  background: #f8fbff;
  padding: 0.9rem;
}

#programs .program-neo-highlight strong {
  color: var(--brand-primary);
}

#programs .program-neo-highlight p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
}

@media (max-width: 991.98px) {
  #programs .program-feature,
  #programs .program-neo-highlight {
    grid-column: span 12;
  }

  #programs .program-neo-card {
    grid-column: span 6;
  }
}

@media (max-width: 575.98px) {
  #programs .program-neo-card {
    grid-column: span 12;
  }

  #programs .program-feature h3 {
    font-size: 1.25rem;
  }
}

/* Programs tabs v3 */
#programs .program-v3-wrap {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

#programs .program-v3-head {
  margin-bottom: 0.7rem;
  color: var(--brand-primary);
}

#programs .program-v3-head small {
  color: var(--text-muted);
}

#programs .program-v3-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.28rem;
  background: #f8fbff;
}

#programs .program-v3-tabs .nav-link {
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--brand-primary) !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.52rem 0.92rem;
}

#programs .program-v3-tabs .nav-link.active {
  background: var(--brand-primary);
  color: #fff !important;
}

#programs .program-v3-content {
  margin-top: 0.85rem;
}

#programs .program-v3-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
}

#programs .program-v3-feature {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 0.95rem;
  grid-row: span 2;
}

#programs .program-v3-feature span {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-accent);
  font-weight: 700;
}

#programs .program-v3-feature h3 {
  color: var(--brand-primary);
  margin: 0;
  font-size: 1.28rem;
}

#programs .program-v3-feature p {
  margin: 0.5rem 0 0.7rem;
  color: var(--text-muted);
}

#programs .program-v3-feature ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--brand-primary);
}

#programs .program-v3-side {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fbff;
  padding: 0.85rem;
}

#programs .program-v3-side h4 {
  margin: 0;
  color: var(--brand-primary);
  font-size: 1rem;
}

#programs .program-v3-side p {
  margin: 0.38rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  #programs .program-v3-grid {
    grid-template-columns: 1fr;
  }

  #programs .program-v3-feature {
    grid-row: auto;
  }
}

/* Programs redesign override: cleaner tabs, no card look */
#programs .program-v3-wrap {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

#programs .program-v3-head {
  text-align: center;
  margin-bottom: 1rem;
}

#programs .program-v3-head p {
  color: var(--brand-primary);
}

#programs .program-v3-tabs {
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  gap: 0.2rem;
  justify-content: center;
}

#programs .program-v3-tabs .nav-link {
  border: none !important;
  border-bottom: 3px solid transparent !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.68rem 1rem;
}

#programs .program-v3-tabs .nav-link.active {
  background: transparent !important;
  color: var(--brand-accent) !important;
  border-bottom-color: var(--brand-accent) !important;
}

#programs .program-v3-content {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
}

#programs .program-v3-grid {
  grid-template-columns: 1.25fr 1fr;
  gap: 1rem;
}

#programs .program-v3-feature {
  border: none !important;
  background: transparent !important;
  padding: 0.15rem !important;
}

#programs .program-v3-feature span {
  color: var(--brand-accent);
}

#programs .program-v3-feature h3 {
  font-size: 1.55rem;
}

#programs .program-v3-feature ul {
  margin-top: 0.8rem;
}

#programs .program-v3-side {
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0.35rem 0.2rem 0.75rem;
}

#programs .program-v3-side:last-child {
  border-bottom: none !important;
}

/* Programs final: only icon + name */
#programs .program-v3-head {
  margin-bottom: 0.7rem;
}

#programs .program-v3-tabs {
  gap: 0.35rem;
  border-bottom: 2px solid var(--border) !important;
}

#programs .program-v3-tabs .nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: #4e5f7a !important;
}

#programs .program-v3-tabs .nav-link.active {
  color: var(--brand-primary) !important;
  border-bottom-color: var(--brand-primary) !important;
}

#programs .program-v3-content {
  border: none !important;
  background: transparent !important;
  padding: 0.75rem 0 0 !important;
}

#programs .program-v4-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

#programs .program-v4-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem 0.55rem;
}

#programs .program-v4-item i {
  font-size: 1.6rem;
  color: var(--brand-accent);
  margin-bottom: 0.45rem;
}

#programs .program-v4-item h4 {
  margin: 0;
  font-size: 0.96rem;
  color: var(--brand-primary);
}

@media (max-width: 991.98px) {
  #programs .program-v4-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  #programs .program-v3-tabs .nav-link {
    font-size: 0.84rem;
  }

  #programs .program-v4-grid {
    grid-template-columns: 1fr;
  }
}

/* Programs v5 clean redesign */
#programs .program-v5-wrap {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

#programs .program-v5-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f8fbff;
  padding: 0.28rem;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

#programs .program-v5-tabs .nav-link {
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--brand-primary) !important;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.56rem 1rem;
}

#programs .program-v5-tabs .nav-link.active {
  background: var(--brand-primary);
  color: #fff !important;
  border-color: var(--brand-primary);
}

#programs .program-v5-content {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 0.55rem;
}

#programs .program-v5-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#programs .program-v5-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.8rem;
  border-bottom: 1px solid var(--border);
}

#programs .program-v5-list li:last-child {
  border-bottom: none;
}

#programs .program-v5-list i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(170, 34, 46, 0.12);
  color: var(--brand-accent);
  font-size: 2rem;
}

#programs .program-v5-list span {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  #programs .program-v5-tabs {
    gap: 0.35rem;
  }

  #programs .program-v5-tabs .nav-link {
    white-space: nowrap;
  }
}

/* Programs final alignment update */
#programs .program-v5-tabs {
  justify-content: center !important;
}

#programs .program-v5-content {
  border: none !important;
  padding: 0.4rem 0 0 !important;
  background: transparent !important;
}

#programs .program-v5-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

#programs .program-v5-list li {
  border: 1px solid var(--border) !important;
  border-radius: 14px;
  background: #fff;
  min-height: 118px;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0.7rem 0.5rem !important;
}

#programs .program-v5-list i {
  margin-bottom: 0.35rem;
}

@media (max-width: 767.98px) {
  #programs .program-v5-list {
    grid-template-columns: 1fr;
  }
}

/* Events left side date rows */
.event-date-list {
  display: grid;
  gap: 0.6rem;
  padding: 0.9rem;
}

.event-date-row {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
}

.event-date-row .date-pill {
  min-width: 74px;
  text-align: center;
  border-radius: 999px;
  padding: 0.28rem 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}

.event-date-row.category-open-house .date-pill { background: var(--cat-open-house); }
.event-date-row.category-innovation .date-pill { background: var(--cat-innovation); }
.event-date-row.category-media .date-pill { background: var(--cat-media); }
.event-date-row.category-placement .date-pill { background: var(--cat-placement); }

.event-date-row .event-row-text {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.event-date-row.is-active {
  border-color: var(--brand-primary);
  box-shadow: 0 6px 16px rgba(23, 48, 88, 0.14);
}

/* Final pending fixes */
.section-label {
  font-size: 0.9rem !important;
  font-family: var(--font-display) !important;
  letter-spacing: 0.12em !important;
}

p {
  color: #2b3f60 !important;
  line-height: 1.75 !important;
}

#about .about-mini-grid {
  display: none !important;
}

.events-equal > .col-lg-5,
.events-equal > .col-lg-7 {
  display: flex;
}

.events-equal .calendar-card,
.events-equal .event-showcase {
  width: 100%;
  height: 100%;
}

.program-cta-banner {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.program-cta-banner h2 {
  margin: 0;
  color: var(--brand-primary);
  font-size: 1.4rem;
}

.chatbot-toggle {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 1030;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 12px 24px rgba(23, 48, 88, 0.3);
}

.chatbot-panel {
  position: fixed;
  right: 18px;
  bottom: 135px;
  width: 250px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 1030;
}

.chatbot-panel.open {
  display: block;
}

.chatbot-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--brand-primary);
}

.chatbot-head button {
  border: none;
  background: transparent;
  color: var(--brand-primary);
}

.chatbot-body {
  padding: 0.65rem 0.75rem;
}

.chatbot-body p {
  margin: 0 0 0.45rem;
}

.chatbot-body a {
  color: var(--brand-accent);
  text-decoration: none;
  font-weight: 600;
}

.floating-side-actions {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.floating-side-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--white);
  border-radius: 14px 0 0 14px;
  padding: 0.76rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(23, 48, 88, 0.22);
}

.floating-side-btn i {
  font-size: 0.98rem;
}

.floating-side-actions .floating-admission {
  position: static;
  right: auto;
  bottom: auto;
  background: var(--brand-accent);
}

.floating-side-actions .floating-admission:hover {
  color: var(--white);
  background: #8f1b26;
}

.floating-program {
  background: var(--brand-primary);
}

.floating-program:hover {
  color: var(--white);
  background: #102342;
}

@media (max-width: 575.98px) {
  .program-cta-banner {
    justify-content: center;
    text-align: center;
  }

  .floating-side-btn {
    font-size: 0.8rem;
    padding: 0.64rem 0.82rem;
  }
}

/* Global typography refresh */
:root {
  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Sora", system-ui, sans-serif;
}

body,
button,
input,
select,
textarea,
.nav-link,
.btn,
p,
small,
span,
li,
a {
  font-family: var(--font-body) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.life-banner-overlay h2,
.program-v3-feature h3,
.infra-hero-overlay h3 {
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em;
}
