/* ==========================================================================
   Ch. Chhabil Dass Public School — public site design system
   ========================================================================== */

:root {
  /* Brand — maroon family, anchored on --maroon */
  --maroon: #8b0000;
  --maroon-950: var(--maroon);
  --maroon-900: #a30a0a;
  --maroon-800: #ba1c1c;
  --maroon-700: #d22d2d;
  --maroon-600: #d45454;
  --maroon-500: #df7777;

  --gold-700: #96701e;
  --gold-600: #b6862c;
  --gold-500: #c9a227;
  --gold-400: #ddbe5c;
  --gold-100: #f7edcf;

  --blanchedalmond: #ffebcd;
  --cream: #faf7f0;
  --cream-100: #f3ecdd;
  --white: #ffffff;

  --ink-900: #151b28;
  --ink-700: #3c4658;
  --ink-500: #6b7484;
  --ink-300: #a8afbc;
  --line: #ffebcd;
  --line-dark: rgba(255, 255, 255, 0.12);

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(10, 20, 40, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 20, 40, 0.10);
  --shadow-lg: 0 24px 64px rgba(10, 20, 40, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--maroon-900);
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
}

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (max-width: 640px) {
  .container {
    padding-inline: 18px;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---- Type scale --------------------------------------------------------*/
.h-display {
  font-size: clamp(2.4rem, 4.4vw, 4.1rem);
  letter-spacing: -0.01em;
}

.h1 {
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  letter-spacing: -0.01em;
}

.h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.h3 {
  font-size: 1.35rem;
}

.lede {
  font-size: 1.15rem;
  /* color: var(--ink-700); */
  line-height: 1.7;
}

.lede-subtitle {
  margin-bottom: 24px;
  color: var(--maroon-800);
  font-weight: 600;
}

.muted {
  color: var(--ink-500);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.eyebrow.on-dark {
  color: var(--blanchedalmond);
}

.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

/* ---- Buttons ------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}

.btn i {
  font-size: 1.05em;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--blanchedalmond));
  color: var(--maroon-950);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-navy {
  background: var(--maroon-900);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--maroon-800);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-outline-navy {
  border-color: var(--maroon-700);
  color: var(--maroon-800);
}

.btn-outline-navy:hover {
  background: var(--maroon-900);
  color: #fff;
  border-color: var(--maroon-900);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ---- Top utility bar ----------------------------------------------------*/

/* Slim accreditation strip */
.affiliation-strip {
  background: var(--cream-100);
  border-bottom: 1px solid var(--line);
  color: var(--maroon-800);
  font-size: 0.78rem;
  font-weight: 600;
}

.affiliation-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  padding-block: 7px;
}

.affiliation-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.affiliation-strip-inner i {
  color: var(--gold-600);
}

@media (max-width: 560px) {
  .affiliation-strip-inner {
    gap: 14px;
    font-size: 0.66rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: flex-start;
  }

  .affiliation-strip-inner::-webkit-scrollbar {
    display: none;
  }

  .affiliation-strip-inner span {
    white-space: nowrap;
    flex: none;
  }
}

/* Floating pill topbar */
.topbar-pill-wrap {
  padding: 14px 0px;
  /* padding-top: 14 0px; */
}

.topbar-pill {
  background: linear-gradient(120deg, var(--maroon-950), var(--maroon-800));
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: var(--radius-pill);
  padding: 11px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow-md);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-pill a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
}

.topbar-pill a:hover {
  color: var(--blanchedalmond);
}

.topbar-pill i {
  color: var(--blanchedalmond);
}

.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-social {
  display: flex;
  gap: 14px;
}

.topbar-social a {
  font-size: 0.95rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease);
}

.topbar-social i {
  color: inherit;
}

/* Header WhatsApp icon always shown filled (the style other social icons only get on hover) */
.topbar-social .social-whatsapp {
  background: #25d366;
  border-color: #25d366;
}

.topbar-social .social-whatsapp i {
  color: var(--blanchedalmond);
}

.topbar-social .social-whatsapp:hover {
  transform: translateY(-2px);
}

.topbar-cta {
  font-weight: 700;
  color: #fff;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.topbar-cta:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .topbar-pill {
    gap: 12px;
    padding: 10px 20px;
    font-size: 0.78rem;
  }

  .topbar-left,
  .topbar-right {
    gap: 14px;
    flex-wrap: nowrap;
  }

  .topbar-left {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .topbar-left::-webkit-scrollbar {
    display: none;
  }

  .topbar-left a,
  .topbar-left span {
    white-space: nowrap;
    flex: none;
  }

  .topbar-social {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .topbar-left span:not(:first-child) {
    display: none;
  }
}

@media (max-width: 560px) {
  .topbar-pill-wrap {
    padding-top: 10px;
  }

  .topbar-pill {
    padding: 9px 18px;
    font-size: 0.7rem;
    border-radius: var(--radius-md);
  }

  .topbar-right {
    display: none;
  }

  .topbar-left {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    width: 100%;
  }

  .topbar-left::-webkit-scrollbar {
    display: none;
  }

  .topbar-left a,
  .topbar-left span {
    white-space: nowrap;
    flex: none;
  }
}

/* ---- Main nav -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  /* box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); */
  transition: box-shadow .35s var(--ease), padding .35s var(--ease);
  border-radius: 0 0 20px 20px;
}

.site-header.is-solid {
  box-shadow: var(--shadow-md);
}

.site-header .navbar {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  /* padding-block: 10px; */
  /* gap: 24px; */
}

.site-header.is-solid .navbar {
  padding: 12px 12px 0 12px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
  min-width: 0;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex: none;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  line-height: 1.2;
}

.brand-text .name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--maroon-900);
}

.brand-text .tagline {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  padding: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-nav-header {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: none;
}

.brand-actions {
  display: none;
}

.mobile-nav-close {
  display: none;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border: none;
  color: var(--maroon-950);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: var(--shadow-md);
  transition: transform .2s;
}

.mobile-nav-close:hover {
  transform: scale(1.08) rotate(90deg);
}

.main-nav>ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px 12px 16px;
  /* padding: 12px 16px; */
  border-radius: var(--radius-pill);
  color: #fff;
  /* color: #000; */
  font-weight: 600;
  font-size: 16px;
  transition: background-color .2s, color .2s;
  text-transform: uppercase;
}

@media (min-width: 981px) {
  .site-header .navbar {
    flex-direction: column;
    /* justify-content: center; */
    gap: 10px;
  }

  .brand-row {
    flex: none;
    align-self: stretch;
  }

  .site-header .brand-text .name {
    font-size: 32px;
    text-transform: uppercase;
    /* font-size: 40px; */
  }

  .brand-actions {
    display: flex;
  }

  .main-nav {
    /* align-self: stretch; */
    justify-content: space-between;
  }

  .main-nav>.nav-actions {
    display: none;
  }

  .main-nav a.nav-link {
    position: relative;
  }

  .main-nav a.nav-link::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 7px;
    height: 2px;
    background: var(--maroon);
    border-radius: var(--radius-pill);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
  }

  .main-nav a.nav-link:hover,
  .main-nav a.nav-link.is-active {
    background: none;
    color: #fff;
    /* color: #000; */
  }

  .main-nav a.nav-link:hover::after,
  .main-nav a.nav-link.is-active::after {
    transform: scaleX(1);
  }
}

.nav-cta {
  margin-left: 10px;
  position: relative;
  overflow: visible;
}

.nav-cta::before,
.nav-cta::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  background: #fff;
  clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
  opacity: .9;
  pointer-events: none;
  animation: sparkle-twinkle 2s ease-in-out infinite;
}

.nav-cta::before {
  top: 4px;
  left: 12px;
  animation-delay: .2s;
}

.nav-cta::after {
  bottom: 4px;
  right: 14px;
  width: 6px;
  height: 6px;
  animation-delay: 1s;
}

@keyframes sparkle-twinkle {

  0%,
  100% {
    opacity: .15;
    transform: scale(.5) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1) rotate(25deg);
  }
}

.main-nav li.has-children {
  position: relative;
}

.main-nav .nav-caret {
  font-size: 0.6rem;
  margin-left: 3px;
  transition: transform .25s var(--ease);
  position: relative;
  top: -1px;
}

.main-nav li.has-children:hover .nav-caret {
  transform: rotate(180deg);
}

.main-nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 50;
  border-top: 2px solid var(--maroon);
  overflow: hidden;
}

.main-nav li.has-children:hover .submenu,
.main-nav li.has-children:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .submenu a {
  display: block;
  padding: 6px 20px 6px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.15s, border-color 0.15s, background 0.15s, padding-left 0.15s;
}

.main-nav .submenu a::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--maroon);
  flex: none;
  margin-right: 8px;
}

.main-nav .submenu a:hover {
  background: var(--cream);
  color: var(--maroon-900);
  padding-left: 23px;
}

@media (max-width: 980px) {
  .main-nav .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 2px 0 12px 24px;
    display: none;
    border: none;
  }

  .main-nav li.has-children.is-open .submenu {
    display: block;
  }

  .main-nav .submenu a {
    color: var(--ink-700);
    padding: 10px 12px 10px 20px;
  }

  .main-nav .submenu a:hover {
    background: var(--cream);
    color: var(--maroon-900);
  }

  .main-nav .nav-caret {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream-100);
    color: var(--maroon-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex: none;
  }

  .main-nav li.has-children.is-open .nav-caret {
    background: var(--gold-500);
    color: var(--maroon-950);
  }

  .main-nav a.nav-link {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    border-radius: 0;
  }

  .main-nav a.nav-link::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--gold-500);
    flex: none;
  }

  .main-nav a.nav-link {
    color: var(--ink-900);
  }

  .main-nav a.nav-link:hover,
  .main-nav a.nav-link.is-active {
    background: var(--cream);
    color: var(--maroon-950);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #b51919;
    /* background: #ffb238; */
    border-radius: 5px;
    width: 56px;
    height: 56px;
  }

  .main-nav {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(360px, 86vw);
    height: 100vh;
    background: #fff;
    border-right: 4px solid var(--gold-500);
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 26px;
    transform: translateX(-24px);
    opacity: 0;
    visibility: hidden;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .4s ease, visibility 0s linear .5s, box-shadow .5s ease;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    box-shadow: 20px 0 60px rgba(10, 20, 40, 0.25);
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .4s ease, visibility 0s linear 0s, box-shadow .5s ease;
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px 20px;
    border-bottom: 1px solid var(--line);
    flex: none;
    position: relative;
    background-color: #F6F6F6;
  }

  .mobile-nav-header .brand-text {
    padding-right: 44px;
  }

  .mobile-nav-header .brand-text .name {
    color: var(--maroon-900);
  }

  .mobile-nav-header .brand-text .tagline {
    color: var(--gold-600);
  }

  .mobile-nav-close {
    display: flex;
    position: absolute;
    top: 22px;
    right: 18px;
  }

  .main-nav>ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .main-nav>ul>li {
    border-bottom: 1px solid var(--line);
  }

  .main-nav a.nav-link {
    padding: 15px 24px;
    gap: 10px;
    font-size: 0.96rem;
    font-weight: 600;
  }

  .nav-cta {
    margin: 20px 24px 0;
  }

  .nav-actions {
    justify-content: center;
    margin: 20px 24px 0;
  }

  .nav-actions .nav-cta {
    margin: 0;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 20, 0.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    z-index: 190;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ---- Hero / carousel ---------------------------------------------------*/
.hero {
  position: relative;
  color: #fff;
  background: var(--maroon-950);
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.hero-slide:has(.hero-actions)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 34, 0.35) 0%, rgba(7, 16, 34, 0.55) 55%, rgba(7, 16, 34, 0.94) 100%);
}

.hero-fallback .hero-slide {
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 162, 39, 0.22), transparent 42%),
    radial-gradient(circle at 84% 8%, rgba(47, 92, 147, 0.35), transparent 45%),
    linear-gradient(160deg, var(--maroon-950) 0%, var(--maroon-900) 45%, var(--maroon-800) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0px 0 84px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-content h1 {
  color: #fff;
  max-width: 820px;
}

.hero-content p {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero .swiper-pagination {
  bottom: 26px !important;
  text-align: left;
  left: 0;
  padding-inline: max(24px, calc((100% - var(--container)) / 2 + 24px));
}

.hero .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.45;
  width: 9px;
  height: 9px;
}

.hero .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold-400);
  width: 26px;
  border-radius: 5px;
}

.carousel-pagination {
  position: relative;
  margin-top: 24px;
}

.carousel-cta {
  text-align: center;
  margin-top: 32px;
}

.achievements-section {
  padding-bottom: 0;
}

.achievements-swiper {
  padding-bottom: 10px;
}

.hero-scroll {
  position: absolute;
  right: 34px;
  bottom: 30px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll .dot {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-scroll .dot::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-400);
  animation: scrollpulse 1.8s infinite;
}

@keyframes scrollpulse {
  to {
    top: 100%;
  }
}

@media (max-width: 780px) {
  .hero-scroll {
    display: none;
  }

  .hero-slide {
    min-height: 560px;
  }

  .hero-content {
    padding: 56px 0 64px;
  }
}

/* Inner-page hero (smaller, breadcrumb style) */
.page-hero {
  position: relative;
  color: #fff;
  padding: 180px 0px 60px;
  /* padding: 60px 0; */
  /* background: #2E1A2E; */
  background: var(--maroon-950);
  /* background: linear-gradient(160deg, var(--maroon-950), var(--maroon-800)); */
  background-size: cover;
  /* background-position: center; */
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 0%, rgba(201, 162, 39, 0.28), transparent 45%), radial-gradient(circle at 6% 100%, rgba(47, 92, 147, 0.3), transparent 40%);
}

.page-hero--photo::before {
  /* background: linear-gradient(160deg, rgba(139, 0, 0, 0.88), rgba(163, 10, 10, 0.75)); */
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.page-hero h2 {
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 16px;
}

.breadcrumb a:hover {
  color: var(--gold-400);
}

/* Page Hero entrance animation using animate.css keyframes */
.page-hero .eyebrow {
  animation: fadeInDown 0.8s both;
}

.page-hero .h1,
.page-hero .h2 {
  animation: fadeInUp 0.8s 0.15s both;
}

.page-hero .breadcrumb,
.page-hero p {
  animation: fadeInUp 0.8s 0.3s both;
}

/* ---- Sections ---------------------------------------------------------*/
.section {
  padding-block: 96px;
}

.section-sm {
  padding-block: 64px;
}

.section-cream {
  background: var(--cream);
}

.section-navy {
  background: linear-gradient(160deg, var(--maroon-950), var(--maroon-900));
  color: rgba(255, 255, 255, 0.9);
}

.section-navy h2,
.section-navy h3 {
  color: #fff;
}

@media (max-width: 780px) {
  .section {
    padding-block: 64px;
  }
}

.divider-pattern {
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--gold-500) 0 26px, transparent 26px 40px);
  opacity: 0.8;
}

/* ---- Grids & cards -----------------------------------------------------*/
.grid {
  display: grid;
  gap: 28px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1100px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .grid-5 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

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

.pillar-card {
  padding: 36px 30px;
  text-align: left;
}

.pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-950));
  color: var(--gold-400);
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.pillar-card h3 {
  margin-bottom: 10px;
}

.pillar-card p {
  color: var(--ink-500);
}

/* Vision / Mission / Belief split (about.php) — no card, left column stacked
   & centered, right column left-aligned with a centered heading, divided by
   a vertical rule like a two-column print layout. */
.vmb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.vmb-col--left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  padding-right: 56px;
  border-right: 1px dashed #efefef;
}

.vmb-col--left .vmb-icon,
.vmb-head .vmb-icon {
  margin-inline: auto;
}

.vmb-col--left .rich-text p {
  text-align: center;
}

.vmb-col--left .rich-text.vmb-text-left p {
  text-align: left;
}

.vmb-head {
  text-align: center;
  margin-bottom: 18px;
}

.vmb-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-950));
  color: var(--gold-400);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.vmb-block h3,
.vmb-col--right h3 {
  margin-bottom: 10px;
  color: var(--maroon-900);
}

@media (max-width: 780px) {
  .vmb-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vmb-col--left {
    padding-right: 0;
    padding-bottom: 40px;
    border-right: none;
    border-bottom: 1px dashed #efefef;
  }
}

.stats-strip,
.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 8px;
  flex: 1 1 240px;
  max-width: 280px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 700;
  color: var(--gold-400);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.stat-label {
  margin-top: 8px;
  font-size: 0.86rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-media {
  /* max-width: 480px; */
  width: 100%;
}

.split-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.split-overview {
  margin-bottom: 32px;
}

.split-process {
  margin-bottom: 40px;
}

.split-committee {
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.about-collage {
  position: relative;
  min-height: 420px;
}

.about-collage img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-collage .img-a {
  width: 72%;
  aspect-ratio: 4/5;
}

.about-collage .img-b {
  width: 52%;
  aspect-ratio: 4/3;
  position: absolute;
  right: 0;
  bottom: -8%;
  border: 6px solid #fff;
}

.about-collage .badge-float {
  position: absolute;
  left: 0;
  bottom: 10%;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.about-collage .badge-float .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--maroon-900);
}

.about-collage-fallback {
  border-radius: var(--radius-lg);
  aspect-ratio: 6/5;
  width: 100%;
  background:
    radial-gradient(circle at 24% 22%, rgba(201, 162, 39, 0.28), transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(47, 92, 147, 0.35), transparent 45%),
    linear-gradient(150deg, var(--maroon-900), var(--maroon-800));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-collage-fallback i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.16);
}

.wing-detail-fallback i {
  color: var(--gold-500);
}

.check-list li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  color: var(--ink-700);
}

.check-list i {
  color: var(--gold-600);
  margin-top: 3px;
}

/* Leadership message cards */
.leader-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 720px) {
  .leader-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.leader-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(150deg, var(--maroon-800), var(--maroon-950));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 2.6rem;
  box-shadow: var(--shadow-md);
}

.leader-quote-mark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--gold-500);
  line-height: 0.6;
  display: block;
  margin-bottom: 6px;
}

.leader-name {
  margin-top: 18px;
  font-weight: 700;
  color: var(--maroon-900);
}

.leader-role {
  color: var(--gold-600);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text-center {
  text-align: center;
}

/* People cards (faculty / management) */
.people-card {
  text-align: center;
}

.people-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, var(--maroon-800), var(--maroon-950));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 3rem;
  overflow: hidden;
}

.people-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-body {
  padding: 22px 20px;
}

.people-body h3 {
  font-size: 1.08rem;
}

.people-role {
  color: var(--gold-600);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
}

.people-meta {
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--ink-500);
}

/* Facility / program / academic-level cards */
.feature-card {
  padding: 30px;
}

.feature-card .icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-100);
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--ink-500);
  font-size: 0.95rem;
}

/* Academics curriculum cards — icon + heading row */
.curriculum-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.curriculum-card-head img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.curriculum-card-head .icon-tile {
  margin: 0;
}

.curriculum-card-head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.curriculum-card-head p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maroon-700);
}

/* Admissions eligibility/documents cards — icon + heading row */
.eligibility-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.eligibility-card-head img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.eligibility-card-head .icon-tile {
  margin: 0;
}

.eligibility-card-head h3 {
  margin: 0;
}

.eligibility-card-head p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--maroon-700);
}

.media-card .media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(150deg, var(--maroon-800), var(--maroon-950));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 2.4rem;
}

.media-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.card:hover .media-card .media img,
.media-card:hover .media img {
  transform: scale(1.06);
}

.media-card .body {
  padding: 24px;
}

.media-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.media-card h3 {
  font-size: 16px;
  /* font-size: 1.12rem; */
}

.media-card .meta {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--ink-500);
}

.media-card .meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.media-card .more {
  margin-top: 16px;
  font-weight: 700;
  color: var(--maroon-800);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Home news preview card — an <a> variant of .media-card */
.media-card--slide {
  height: 100%;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.news-card .body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card .tag {
  margin-bottom: 8px;
}

.news-card h3 {
  margin-bottom: 12px;
}

.news-card-excerpt {
  margin-bottom: auto;
}

.news-card .more {
  font-weight: 600;
  color: var(--gold-600);
  gap: 4px;
}

/* Timeline / accordion (academics levels, curriculum policy) */
.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 26px;
  /* padding: 22px 26px; */
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--maroon-900);
}

.accordion-trigger i {
  transition: transform .3s var(--ease);
  color: var(--gold-600);
  flex: none;
}

.accordion-item.is-open .accordion-trigger i {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  background-color: var(--cream);
  transition: max-height .35s var(--ease);
}

.accordion-panel-inner {
  padding: 10px 20px;
  color: var(--ink-700);
  /* padding: 0 26px 26px; */
}

/* Timeline for calendar */
.timeline {
  position: relative;
  padding-left: 34px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold-500);
}

.timeline-date {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-600);
}

.timeline-item h4 {
  font-family: var(--font-display);
  margin-top: 4px;
  font-size: 1.05rem;
  color: var(--maroon-900);
}

.timeline-item p {
  color: var(--ink-500);
  margin-top: 4px;
  font-size: 0.92rem;
}

.event-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--maroon-900);
  color: #fff;
  margin-left: 10px;
  text-transform: uppercase;
}

/* Detailed admission procedure: two-track comparison layout */
.procedure-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .procedure-tracks {
    grid-template-columns: 1fr;
  }
}

.track-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
}

.track-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 28px;
  color: #fff;
  background: var(--track-color, var(--maroon-900));
}

.track-card-head i {
  font-size: 1.3rem;
}

.track-card-head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.track-preprimary {
  --track-color: var(--wing-preprimary);
}

.track-primary {
  --track-color: var(--wing-primary);
}

.track-card-body {
  padding: 32px 28px;
}

/* Numbered step badges, auto-counted from each h3 within a step-flow */
.step-flow {
  counter-reset: step;
}

.step-flow h3 {
  counter-increment: step;
  position: relative;
  padding-left: 44px;
  margin: 1.8em 0 0.6em;
  font-size: 1rem;
  color: var(--maroon-900);
}

.step-flow h3:first-child {
  margin-top: 0;
}

.step-flow h3::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--track-color, var(--maroon-900));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.step-flow h4 {
  color: var(--ink-600);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1em 0 0.4em;
}

/* Important-information callout */
.notice-box {
  margin-top: 40px;
  background: var(--cream);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
}

.notice-box h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: var(--maroon-900);
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice-box h3 i {
  color: var(--gold-600);
}

.notice-box .rich-text ul {
  margin-bottom: 0;
}

/* Session tabs (fee structure) */
.session-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.session-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
}

.session-tab {
  border: none;
  background: none;
  cursor: pointer;
  padding: 10px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-500);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.session-tab:hover {
  color: var(--maroon-900);
}

.session-tab.active {
  background: var(--maroon-900);
  color: #fff;
  box-shadow: 0 6px 16px rgba(163, 10, 10, 0.25);
}

@media (max-width: 767px) {
  .session-tabs-wrap {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .session-tabs-wrap::-webkit-scrollbar {
    display: none;
  }

  .session-tabs {
    flex-wrap: nowrap;
  }

  .session-tab {
    flex: none;
  }
}

/* Fee table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

table.fee-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: #fff;
}

table.fee-table th {
  background: var(--maroon-900);
  color: #fff;
  text-align: left;
  padding: 16px 20px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

table.fee-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

table.fee-table tr:nth-child(even) td {
  background: var(--cream);
}

table.fee-table td.strong {
  font-weight: 700;
  color: var(--maroon-900);
}

/* Testimonials */
.testimonial-card {
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  height: 100%;
}

.testimonial-stars {
  color: var(--gold-500);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-quote {
  color: var(--ink-700);
  font-size: 1.02rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--maroon-800), var(--maroon-950));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-person .name {
  font-weight: 700;
  color: var(--maroon-900);
  font-size: 0.95rem;
}

.testimonial-person .role {
  font-size: 0.82rem;
  color: var(--ink-500);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: none;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--maroon-950), var(--maroon-800) 60%, var(--maroon-700));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(201, 162, 39, 0.3), transparent 45%);
}

.cta-band>* {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
  max-width: 520px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 10px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-band {
    padding: 32px 28px;
  }
}

@media (max-width: 480px) {
  .cta-band {
    padding: 28px 20px;
  }
}

/* Gallery */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, var(--maroon-800), var(--maroon-950));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 16, 34, 0.82), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

.gallery-item.video-item .overlay {
  background: rgba(7, 16, 34, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  padding: 18px;
  text-align: center;
}

.gallery-item.video-item .play-btn {
  font-size: 3.2rem;
  color: #fff;
  transition: transform 0.3s var(--ease);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.gallery-item.video-item:hover .play-btn {
  transform: scale(1.15);
}

.gallery-item.video-item .video-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 10px;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-item-fill {
  display: block;
  height: 100%;
}

.gallery-thumb-lg {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.gallery-thumb-sm {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-chip {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--ink-700);
  background: #fff;
  transition: all .2s;
}

.filter-chip.is-active,
.filter-chip:hover {
  background: var(--maroon-900);
  border-color: var(--maroon-900);
  color: #fff;
}

/* Forms */
.form-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--maroon-900);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--cream);
  transition: border-color .2s, background-color .2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold-500);
  background: #fff;
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-alert.success {
  background: #e6f4ea;
  color: #1e6b34;
}

.form-alert.error {
  background: #fbe7e7;
  color: #9c2b2b;
}

/* Contact info tiles */
.info-tile {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.info-tile:last-child {
  border-bottom: none;
}

.info-tile .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--maroon-900);
  color: var(--blanchedalmond);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.info-tile h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.info-tile p,
.info-tile a {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.info-tile a:hover {
  color: var(--gold-600);
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  width: 100%;
  height: 420px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .map-frame {
    height: 300px;
  }
}

/* Rich text (CKEditor-authored admin content) */
.rich-text {
  /* color: var(--ink-700); */
  line-height: 1.75;
}

.rich-text-centered {
  max-width: 800px;
  margin: 0 auto;
}

.rich-text-centered--gap {
  margin-bottom: 32px;
}

.rich-text-centered--committee {
  margin-bottom: 48px;
}

.rich-text p {
  text-align: justify;
  margin-bottom: 1em;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.rich-text ul,
.rich-text ol {
  margin: 0 0 1em;
  padding-left: 1.4em;
}

.rich-text li {
  margin-bottom: 10px;
  /* margin-bottom: 0.4em; */
}

.rich-text a {
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rich-text strong,
.rich-text b {
  color: var(--maroon-900);
}

.rich-text img {
  border-radius: var(--radius-sm);
  margin: 1em 0;
}

.rich-text h1,
.rich-text h2,
.rich-text h3,
.rich-text h4 {
  margin: 1.2em 0 0.5em;
}

.rich-text blockquote {
  border-left: 3px solid var(--gold-500);
  padding-left: 18px;
  margin: 1em 0;
  color: var(--ink-500);
  font-style: italic;
}

.rich-text hr {
  border: none;
  border-top: 1px dashed var(--line);
  margin: 2em 0;
}

.rich-text table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}

@media (max-width: 767px) {
  .rich-text table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.rich-text table th,
.rich-text table td {
  padding: 5px 15px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  vertical-align: middle;
  text-align: left;
}

.rich-text table th {
  background: var(--maroon-900);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
}

.rich-text table tr:nth-child(even) td {
  background: var(--cream);
}

.on-dark.rich-text,
.section-navy .rich-text {
  color: rgba(255, 255, 255, 0.82);
}

.on-dark.rich-text a,
.section-navy .rich-text a {
  color: var(--gold-400);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-500);
}

.empty-state i {
  font-size: 2.4rem;
  color: var(--line);
  margin-bottom: 14px;
  display: block;
}

/* Footer */
.site-footer {
  position: relative;
  background: #001523;
  color: rgba(255, 255, 255);
  padding-top: 80px;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-400) 45%, var(--maroon-600));
}

/* Footer CTA bar */
.footer-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px 34px;
  margin-bottom: 52px;
  box-shadow: var(--shadow-lg);
}

.footer-cta-text h3 {
  color: #fff;
  font-size: 1.32rem;
  margin-top: 8px;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  transition: color .2s;
}

.footer-cta-phone:hover {
  color: var(--gold-400);
}

.footer-cta-phone .footer-contact-icon {
  margin-top: 0;
}

@media (max-width: 700px) {
  .footer-cta-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .footer-cta-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 420px) {
  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta-actions .btn {
    justify-content: center;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  /* grid-template-columns: 1.5fr 1fr 1fr 1.2fr; */
  gap: 40px 32px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line-dark);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
}

.footer-grid h5 {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.84rem;
}

.footer-grid h5 i {
  color: var(--gold-400);
  font-size: 0.95rem;
  margin-right: 6px;
}

.footer-grid h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  border-radius: var(--radius-pill);
}

.footer-grid ul li {
  margin-bottom: 13px;
}

.footer-grid>div>ul:not(.footer-contact)>li>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s var(--ease), transform .2s var(--ease), padding-left .2s var(--ease);
}

.footer-grid>div>ul:not(.footer-contact)>li>a::before {
  content: '\f061';
  font-family: 'Font Awesome 5 Free';
  color: var(--gold-400);
  flex: none;
  font-size: 0.9em;
  background-color: transparent;
  border: none;
  -webkit-transform: rotate(-41deg);
  -ms-transform: rotate(-41deg);
  transform: rotate(-41deg);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.footer-grid>div>ul:not(.footer-contact)>li>a:hover {
  color: #fff;
  padding-left: 2px;
}

.footer-grid>div>ul:not(.footer-contact)>li>a:hover::before {
  transform: translate(2px, -2px);
}

.footer-grid a:hover {
  color: var(--gold-400);
}

.footer-about .brand {
  margin-bottom: 4px;
}

.footer-about .brand-text .name {
  color: #fff;
}

.footer-about .brand-text .tagline {
  color: var(--gold-400);
  font-weight: bold;
}

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 14px;
  /* max-width: 34ch; */
}

.widget_title {
  font-size: 20px;
}

.footer-widget {
  margin-bottom: 25px;
}

.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
}

.widget_title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--title-font);
  line-height: 1em;
  margin: -0.12em 0 32px 0;
}

.footer-widget .widget_title {
  max-width: 270px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 20px 0;
  padding: 0 0 15px 0;
  position: relative;
  border-bottom: 1px solid var(--gold-400);
  font-size: 20px;
}

.footer-widget .widget_title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 68px;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#333), to(var(--gold-400)));
  background: -webkit-linear-gradient(right, #333 0%, var(--gold-400) 100%);
  background: -o-linear-gradient(right, #333 0%, var(--gold-400) 100%);
  background: linear-gradient(-90deg, #333 0%, var(--gold-400) 100%);
}

.footer-affiliation {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem; 
  font-weight: bold;
}

.footer-affiliation i {
  color: var(--gold-400);
  margin-right: 6px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease);
}

.footer-social a:hover,
.up-style-232:hover {
  transform: translateY(-3px);
}

/* Reach Us contact list */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact li>a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  flex: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gold-400);
  margin-top: 1px;
}

/* Branch directory */
.footer-branches {
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-branches>h5 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.84rem;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 12px 0;
}

.footer-branches>h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  border-radius: var(--radius-pill);
}

.footer-branches>h5 i {
  color: var(--gold-400);
  font-size: 0.95rem;
}

.branch-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.branch-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

.branch-card h6 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 16px;
}

.branch-card-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.branch-card-row:last-child {
  margin-bottom: 0;
}

.branch-card-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.branch-card-list a {
  transition: color .2s;
}

.branch-card-list a:hover {
  color: var(--gold-400);
}

.branch-hours-line {
  display: block;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 22px;
  font-size: 0.84rem;
  flex-wrap: wrap;
}

/* Large devices */
@media (max-width: 1199px) {
  .widget_title {
    font-size: 22px;
    margin: -0.12em 0 28px 0;
  }
}

@media (max-width: 767px) {
  .footer-widget .widget_title {
    margin: -0.12em 0 25px 0;
    padding: 0 0 11px 0;
  }
}

@media (max-width: 560px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

.footer-bottom a:hover {
  color: var(--gold-400);
}

/* Brand colors for social icons (topbar, footer, contact page) */
.social-facebook i {
  color: #1877f2;
}

.social-instagram i {
  color: #e1306c;
}

.social-youtube i {
  color: #ff0000;
}

.social-linkedin i {
  color: #0a66c2;
}

.social-whatsapp i {
  color: #25d366;
}

/* On hover, fill the circle with the platform's brand color and switch the icon to a light tone */
.social-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-instagram:hover {
  background: #e1306c;
  border-color: #e1306c;
}

.social-youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.social-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.social-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.social-facebook:hover i,
.social-instagram:hover i,
.social-youtube:hover i,
.social-linkedin:hover i,
.social-whatsapp:hover i {
  color: var(--blanchedalmond);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--maroon-900);
  color: var(--blanchedalmond);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: transform .3s, opacity .3s, background-color .3s, color .3s;
  z-index: 150;
}

.back-to-top i {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  transition: transform .25s var(--ease);
}

.back-to-top:hover i {
  transform: translateY(-2px);
}

.back-to-top:hover {
  background: var(--maroon-800);
  transform: translateY(-3px);
}

.back-to-top .progress-circle {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.back-to-top .progress-circle path {
  fill: none;
  stroke: var(--blanchedalmond);
  stroke-width: 4px;
  stroke-linecap: round;
  box-sizing: border-box;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float {
  display: none;
  position: fixed;
  right: 24px;
  bottom: 86px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  z-index: 998;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

@media (max-width: 560px) {
  .whatsapp-float {
    display: flex;
  }
}

/* AOS-lite fade defaults (used with [data-reveal]) */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible.animate__animated {
  transition: none;
}

@media (min-width: 901px) {
  .split-wide {
    grid-template-columns: 2fr 1fr;
  }
}

/* Split reverse helper */
.split.reverse .about-collage {
  order: 2;
}

@media (max-width: 900px) {
  .split.reverse .about-collage {
    order: -1;
  }
}

/* ==========================================================================
   Antigravity Premium Redesign — Colorful & Informatic Elements
   ========================================================================== */

:root {
  --wing-preprimary: #ec4899;
  /* Vibrant Pink */
  --wing-primary: #f97316;
  /* Vibrant Orange */
  --wing-middle: #10b981;
  /* Emerald Green */
  --wing-senior: #3b82f6;
  /* Royal Blue */

  --wing-preprimary-light: #fdf2f8;
  --wing-primary-light: #fff7ed;
  --wing-middle-light: #ecfdf5;
  --wing-senior-light: #eff6ff;
}

/* Curved Section Dividers */
.section-divider-curve {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 2.5%;
  background: transparent;
  pointer-events: none;
  z-index: 10;
}

.section-divider-curve svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.curve-top {
  transform: translateY(-98%);
}

.curve-bottom {
  transform: translateY(98%) scaleY(-1);
}

/* Announcement Marquee Ticker */
.marquee-ticker {
  background: var(--blanchedalmond);
  color: var(--maroon);
  border-bottom: 2px solid var(--maroon);
  font-size: 0.85rem;
  overflow: hidden;
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-radius: 0 0 20px 20px;
}

.marquee-ticker .ticker-container {
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.marquee-ticker .ticker-label {
  padding: 9px 16px;
  font-size: 1rem;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}


.marquee-ticker .ticker-wrap {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding-block: 8px;
  z-index: 1;
  margin-left: 10px;
}

.marquee-ticker .ticker-track {
  display: inline-flex;
  animation: marquee-scroll 60s linear infinite;
  /* animation: marquee-scroll 28s linear infinite; */
}

.marquee-ticker .ticker-track:hover {
  animation-play-state: paused;
}

.marquee-ticker .ticker-content {
  display: inline-flex;
  flex: none;
  font-weight: 500;
}

.marquee-ticker .ticker-content a {
  color: #000;
  margin-inline: 40px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
}

.marquee-ticker .ticker-content a:hover {
  color: var(--maroon);
}

.ticker-star-icon {
  font-size: 0.7em;
  color: #ac1414;
  /* color: var(--gold-400); */
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Wing Circular Selector Panels */
.wings-quick-selector {
  margin-top: -60px;
  position: relative;
  z-index: 20;
  padding-bottom: 20px;
}

.wings-quick-selector .grid {
  gap: 16px;
}

.wing-pill-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.wing-pill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-color, var(--gold-500));
  transition: width 0.3s;
}

.wing-pill-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.wing-pill-card:hover::before {
  width: 8px;
}

.wing-pill-card.pp {
  --accent-color: var(--wing-preprimary);
}

.wing-pill-card.pr {
  --accent-color: var(--wing-primary);
}

.wing-pill-card.md {
  --accent-color: var(--wing-middle);
}

.wing-pill-card.sc {
  --accent-color: var(--wing-senior);
}

.wing-pill-card.sn {
  --accent-color: var(--wing-senior);
}

.wing-pill-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wing-light, var(--cream));
  color: var(--accent-color);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.wing-pill-card:hover .wing-pill-icon {
  transform: scale(1.15) rotate(10deg);
  background: var(--accent-color);
  color: #fff;
}

.wing-pill-card.pp {
  --wing-light: var(--wing-preprimary-light);
}

.wing-pill-card.pr {
  --wing-light: var(--wing-primary-light);
}

.wing-pill-card.md {
  --wing-light: var(--wing-middle-light);
}

.wing-pill-card.sc {
  --wing-light: var(--wing-senior-light);
}

.wing-pill-card.sn {
  --wing-light: var(--wing-senior-light);
}

.wing-pill-info h4 {
  font-size: 1.02rem;
  color: var(--maroon-900);
  margin-bottom: 2px;
}

.wing-pill-info span {
  font-size: 0.8rem;
  color: var(--ink-500);
  font-weight: 600;
}

/* Interactive Tabs Showcase */
.tab-container {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  overflow: hidden;
}

.tab-headers {
  display: flex;
  background: var(--cream);
  border-bottom: 1.5px solid var(--line);
}

.tab-header-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 20px 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  color: var(--ink-700);
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}

@media (max-width: 900px) {
  .tab-headers {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .tab-headers::-webkit-scrollbar {
    display: none;
  }

  .tab-header-btn {
    flex: none;
    white-space: nowrap;
    padding-inline: 20px;
  }
}

.tab-header-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background-color 0.3s;
}

.tab-header-btn:hover {
  color: var(--maroon-900);
}

.tab-header-btn.is-active {
  background: #fff;
  color: var(--active-color);
}

.tab-header-btn.is-active::after {
  background: var(--active-color);
}

.tab-header-btn.pp {
  --active-color: var(--wing-preprimary);
}

.tab-header-btn.pr {
  --active-color: var(--wing-primary);
}

.tab-header-btn.md {
  --active-color: var(--wing-middle);
}

.tab-header-btn.sc {
  --active-color: var(--wing-senior);
}

.tab-header-btn.sn {
  --active-color: var(--wing-senior);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
  padding: 40px;
  animation: fadeIn 0.4s var(--ease);
}

.tab-panel.is-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wing-detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 780px) {
  .wing-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.wing-detail-body {
  position: relative;
}

.wing-detail-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wing-color);
  background: var(--wing-bg);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.wing-detail-body h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--maroon-900);
  margin-bottom: 14px;
}

.wing-detail-body p {
  color: var(--ink-700);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.wing-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

@media (max-width: 560px) {
  .wing-features-list {
    grid-template-columns: 1fr;
  }
}

.wing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-900);
}

.wing-feature-item i {
  color: var(--wing-color);
  font-size: 1.15rem;
}

.wing-detail-image-box {
  position: relative;
}

.wing-detail-image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* Wing detail template (pre-primary.php etc.) — page has no .tab-panel ancestor,
   so --wing-color is unset; these scoped rules keep this template's own values. */
.wing-curriculum-title {
  margin-bottom: 24px;
  color: var(--maroon-900);
}

.wing-curriculum-body {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

@media (max-width: 560px) {
  .wing-detail-body > .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

.wing-focus-title {
  margin-bottom: 20px;
  color: var(--maroon-900);
}

.wing-focus-list {
  margin-bottom: 40px;
}

.wing-focus-item {
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.wing-focus-item i {
  color: var(--gold-600);
  font-size: 1.25rem;
}

.wing-detail-image--lg {
  border-radius: var(--radius-lg);
}

.wing-decoration-circle {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--wing-color);
  opacity: 0.08;
  z-index: -1;
  bottom: -20px;
  right: -20px;
}

@media (max-width: 480px) {
  .wing-decoration-circle {
    right: 0;
  }
}

/* Wing detail color variations */
.tab-panel.pp {
  --wing-color: var(--wing-preprimary);
  --wing-bg: var(--wing-preprimary-light);
}

.tab-panel.pr {
  --wing-color: var(--wing-primary);
  --wing-bg: var(--wing-primary-light);
}

.tab-panel.md {
  --wing-color: var(--wing-middle);
  --wing-bg: var(--wing-middle-light);
}

.tab-panel.sc {
  --wing-color: var(--wing-senior);
  --wing-bg: var(--wing-senior-light);
}

.tab-panel.sn {
  --wing-color: var(--wing-senior);
  --wing-bg: var(--wing-senior-light);
}

/* Colorful Stats enhancements */
.section-navy .stat-item {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.section-navy .stat-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
  border-color: var(--glow-color);
  box-shadow: 0 10px 24px var(--shadow-color);
}

.section-navy .stat-item:nth-child(1) {
  --glow-color: var(--wing-preprimary);
  --shadow-color: rgba(236, 72, 153, 0.15);
}

.section-navy .stat-item:nth-child(2) {
  --glow-color: var(--wing-primary);
  --shadow-color: rgba(249, 115, 22, 0.15);
}

.section-navy .stat-item:nth-child(3) {
  --glow-color: var(--wing-middle);
  --shadow-color: rgba(16, 185, 129, 0.15);
}

.section-navy .stat-item:nth-child(4) {
  --glow-color: var(--wing-senior);
  --shadow-color: rgba(59, 130, 246, 0.15);
}

.section-navy .stat-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--glow-color, var(--gold-500));
}

.section-navy .stat-num {
  color: var(--glow-color, var(--gold-400));
}

.section-navy .stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 16px;
  background: var(--shadow-color) !important;
  color: var(--glow-color) !important;
}

/* Timeline Admission Process */
.admissions-roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 900px) {
  .admissions-roadmap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .admissions-roadmap {
    grid-template-columns: 1fr;
  }
}

.admissions-roadmap::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: var(--line);
  z-index: 1;
}

@media (max-width: 900px) {
  .admissions-roadmap::before {
    display: none;
  }
}

.roadmap-step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  border: 1.5px solid var(--line);
  position: relative;
  z-index: 2;
  transition: all 0.35s var(--ease);
}

.roadmap-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--step-color);
}

.roadmap-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--step-color);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px var(--shadow-color);
  border: 4px solid #fff;
  position: relative;
}

.roadmap-step h4 {
  font-size: 1.1rem;
  color: var(--maroon-900);
  margin-bottom: 8px;
}

.roadmap-step p {
  color: var(--ink-500);
  font-size: 0.88rem;
  line-height: 1.5;
}

.roadmap-step.step1 {
  --step-color: var(--wing-preprimary);
  --shadow-color: rgba(236, 72, 153, 0.3);
}

.roadmap-step.step2 {
  --step-color: var(--wing-primary);
  --shadow-color: rgba(249, 115, 22, 0.3);
}

.roadmap-step.step3 {
  --step-color: var(--wing-middle);
  --shadow-color: rgba(16, 185, 129, 0.3);
}

.roadmap-step.step4 {
  --step-color: var(--wing-senior);
  --shadow-color: rgba(59, 130, 246, 0.3);
}

/* Floating Sticky Action Dock */
.quick-action-dock {
  position: fixed;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
  padding-right: 8px;
  opacity: 1;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.quick-action-dock.is-hidden {
  opacity: 0;
  transform: translateY(-50%) translateX(16px);
  pointer-events: none;
}

.dock-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  position: relative;
  transition: all 0.3s var(--ease);
}

.dock-label {
  background: var(--dock-color, var(--maroon-900));
  color: #fff;
  padding: 10px 18px 10px 24px;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-md);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s var(--ease);
  position: absolute;
  right: 38px;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
}

.dock-item:hover .dock-label {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.dock-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dock-color, var(--maroon-900));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 2.5px solid #fff;
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 2;
}

.dock-item:hover .dock-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.dock-item.dock-admission {
  --dock-color: var(--wing-primary);
}

.dock-item.dock-contact {
  --dock-color: var(--wing-middle);
}

.dock-item.dock-portal {
  --dock-color: var(--wing-senior);
}

.dock-item.dock-happenings {
  --dock-color: var(--wing-preprimary);
}

@media (max-width: 560px) {
  .quick-action-dock {
    display: none;
    /* Hide on small mobile to avoid blocking content */
  }
}

/* Antigravity Aesthetics: Premium Section & Card Animations */
.people-card,
.media-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.people-card:hover,
.media-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08) !important;
}

.people-card .people-photo img,
.media-card .media img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.people-card:hover .people-photo img,
.media-card:hover .media img {
  transform: scale(1.06) !important;
}

/* Infrastructure page — card hover kept slightly snappier than the sitewide default */
.media-card--infra {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.media-card--infra:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}

.media-card--infra .media img {
  transition: transform 0.5s ease !important;
}

.media-card--infra:hover .media img {
  transform: scale(1.06) !important;
}

.infra-media {
  position: relative;
}

.infra-media-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--cream);
}

.infra-media-fallback i {
  font-size: 4rem;
  color: var(--gold-500);
  opacity: 0.8;
}

.infra-card-title {
  font-weight: 700;
}

.infra-card-desc {
  line-height: 1.6;
  color: var(--ink-700);
}

.infra-intro {
  max-width: 720px;
  margin-top: 16px;
}

.infra-empty-icon {
  font-size: 3rem;
  color: var(--gold-400);
}

.leadership-profile-card {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04) !important;
}

.leadership-profile-card:hover {
  border-color: rgba(201, 162, 39, 0.3) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(201, 162, 39, 0.06) !important;
}

.leader-overlay-badge {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Modal Window Style rules */
.career-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.career-modal.is-active {
  display: flex;
}

.career-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--line);
  overflow: hidden;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.career-modal.is-active .career-modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

.career-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.career-modal-header h3 {
  font-size: 1.25rem;
  color: var(--maroon-900);
  margin: 0;
}

.career-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink-400);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.career-modal-close:hover {
  color: var(--ink-900);
}

.career-modal-body {
  padding: 10px;
  /* padding: 24px; */
}

.career-form-group {
  margin-bottom: 10px;
  /* margin-bottom: 20px; */
}

.career-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--maroon-900);
  margin-bottom: 6px;
}

.career-form-input,
.career-form-select,
.career-form-textarea {
  width: 100%;
  padding: 5px 10px;
  /* padding: 10px 14px; */
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--maroon-950);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.career-form-input:focus,
.career-form-select:focus,
.career-form-textarea:focus {
  outline: 0;
  border-color: var(--wing-primary);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
}

.career-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.career-form-file {
  padding: 6px 10px;
  background: var(--cream);
  border: 1px dashed var(--ink-300);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.career-form-file input[type="file"] {
  width: 100%;
}

/* ==========================================================================
   Styles Migrated from Inline CSS & Style Tags
   ========================================================================== */

/* Testimonials / Collage Fallbacks Wing Theme Styles */
.about-collage-fallback.wing-pp {
  background: linear-gradient(135deg, var(--wing-preprimary), var(--maroon-900));
}

.about-collage-fallback.wing-pr {
  background: linear-gradient(135deg, var(--wing-primary), var(--maroon-900));
}

.about-collage-fallback.wing-md {
  background: linear-gradient(135deg, var(--wing-middle), var(--maroon-900));
}

.about-collage-fallback.wing-sc {
  background: linear-gradient(135deg, var(--wing-senior), var(--maroon-900));
}

/* Wing detail template — "no photo" placeholder look (distinct from the vibrant collage variant) */
.about-collage-fallback.wing-detail-fallback {
  height: 380px;
  background: var(--cream);
  border: 2px dashed var(--gold-400);
}

/* Document Row Hover (from mandatory-disclosure.php) */
.doc-row:hover {
  background-color: rgba(248, 250, 252, 0.7) !important;
}

/* Hero Background Images (from index.php) */
.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide .hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-slide::after {
  z-index: 2;
}

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

.hero-scroll {
  z-index: 3;
}

/* Stats educators theme styles (from index.php) */
.stat-educators {
  --glow-color: var(--wing-senior);
  --shadow-color: rgba(59, 130, 246, 0.1);
}

.stat-educators .stat-icon {
  color: var(--wing-senior);
  background: rgba(59, 130, 246, 0.1);
}

.stat-educators .stat-num {
  color: var(--wing-senior);
}

/* Generated Classes */
.up-style-1 {
  justify-content: center;
}

.up-style-2 {
  font-size: .6rem;
}

.up-style-3 {
  width: 100%;
  height: 100%;
  display: block;
}

.up-style-4 {
  color: var(--background);
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.up-style-5 {
  text-align: center;
}

.up-style-6 {
  background: linear-gradient(135deg, var(--maroon-950), var(--maroon-800) 50%, var(--gold-700));
  position: relative;
  padding-bottom: 90px;
}

.up-style-7 {
  margin-top: 40px;
}

.up-style-8 {
  padding: 16px 20px;
}

.up-style-9 {
  margin-top: 8px;
  font-size: .9rem;
}

.up-style-10 {
  color: rgba(255, 255, 255, .82);
  margin-top: 14px;
  max-width: 640px;
}

.up-style-11 {
  margin-top: 14px;
}

.up-style-12 {
  margin: 0;
  font-weight: 700;
}

.up-style-13 {
  font-size: 0.8rem;
  color: var(--ink-500);
}

.up-style-14 {
  font-size: 3.5rem;
  color: var(--ink-300);
}

.up-style-15 {
  background: linear-gradient(135deg, var(--maroon-950), var(--maroon-800) 50%, var(--wing-preprimary));
  position: relative;
  padding-bottom: 90px;
}

.up-style-16 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.up-style-17 {
  flex: 1;
  min-width: 280px;
  margin-bottom: 16px;
}

.up-style-18 {
  background: linear-gradient(135deg, var(--maroon-950), var(--maroon-800) 50%, var(--wing-middle));
  position: relative;
  padding-bottom: 90px;
}

.up-style-19 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--maroon-900);
}

.up-style-20 {
  text-decoration: none;
  color: inherit;
}

.up-style-21 {
  text-align: center;
  margin-top: 40px;
}

.up-style-22 {
  margin-top: 18px;
}

.up-style-23 {
  border-top: 4px solid var(--wing-primary);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.08);
  border-radius: var(--radius-md);
}

.up-style-24 {
  color: var(--wing-primary);
  background: var(--wing-primary-light);
}

.up-style-25 {
  border-top: 4px solid var(--wing-middle);
  box-shadow: 0 10px 30px rgba(42, 157, 143, 0.08);
  border-radius: var(--radius-md);
}

.up-style-26 {
  color: var(--wing-middle);
  background: var(--wing-middle-light);
}

.up-style-27 {
  max-width: 600px;
  margin: 10px auto 0;
}

.up-style-28 {
  margin-top: 40px;
  gap: 30px;
}

.up-style-29 {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
}

.up-style-30 {
  max-width: 800px;
}

.up-style-31 {
  margin-top: 10px;
}

.up-style-32 {
  margin-top: 30px;
}

.up-style-33 {
  align-items: flex-start;
}

.up-style-34 {
  color: var(--maroon-900);
}

.up-style-35 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-600);
  line-height: 1.5;
}

.up-style-36 {
  background: none;
  border: none;
  padding: 8px 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink-500);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.up-style-37 {
  padding: 18px 24px;
}

.up-style-38 {
  color: var(--gold-500);
  margin-right: 4px;
}

.up-style-39 {
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
}

.up-style-40 {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.up-style-41 {
  font-size: 3.5rem;
  color: var(--gold-500);
  opacity: 0.7;
}

.up-style-42 {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.up-style-43 {
  font-size: 1.25rem;
  color: var(--maroon-900);
  margin: 0 0 10px;
  font-weight: 700;
}

.up-style-44 {
  font-weight: 700;
  color: var(--maroon-900);
}

.up-style-45 {
  background: linear-gradient(120deg, var(--maroon-950), var(--maroon-800) 60%, var(--maroon-700));
}

.up-style-46 {
  margin-top: 24px;
}

.up-style-47 {
  padding-bottom: 54px;
}

.up-style-48 {
  font-size: 1.25rem;
}

.up-style-49 {
  font-size: 3rem;
  color: var(--ink-300);
}

.up-style-50 {
  margin-top: 16px;
  color: var(--maroon-900);
}

.up-style-51 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.up-style-52 {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin: 0 auto 24px;
}

.up-style-53 {
  height: 100%;
}

.up-style-54 {
  font-weight: 700;
  color: var(--gold-600);
  margin-top: 4px;
}

.up-style-55 {
  flex: 1.5;
}

@media (max-width: 991px) {
  .up-style-55 {
    margin-top: 36px;
  }
}

.up-style-56 {
  font-size: 5rem;
  color: var(--gold-200);
  line-height: 0.1;
  display: block;
  height: 30px;
  font-family: var(--font-display);
}

.up-style-57 {
  line-height: 1.7;
  font-size: 1.05rem;
  color: var(--ink-800);
}

.up-style-58 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.up-style-59 {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.up-style-60 {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.up-style-61 {
  padding: 24px;
  flex-grow: 1;
}

.up-style-62 {
  font-size: 20px;
  color: var(--maroon-900);
  margin: 0 0 15px;
}

.up-style-63 {
  background: none;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.up-style-64 {
  height: 52px;
  width: auto;
  object-fit: contain;
  transform: scale(1.15);
}

.up-style-65 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.up-style-66 {
  color: var(--maroon-950);
  height: 50px;
}

.up-style-67 {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.up-style-68 {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.up-style-69 {
  padding: 20px;
  text-align: center;
}

.up-style-70 {
  font-size: 1.1rem;
  color: var(--maroon-900);
  margin: 0 0 4px;
}

.up-style-71 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-600);
}

.up-style-72 {
  background-image: linear-gradient(160deg, rgba(10, 20, 40, 0.72), rgba(10, 20, 40, 0.6)), url(../images/banner/pic-2.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.up-style-73 {
  margin-top: 64px;
  max-width: 820px;
}

.up-style-74 {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

.up-style-75 {
  border-top: 4px solid var(--wing-preprimary);
  box-shadow: 0 10px 30px rgba(224, 82, 151, 0.08);
  border-radius: var(--radius-md);
}

.up-style-76 {
  color: var(--wing-preprimary);
  background: var(--wing-preprimary-light);
}

.up-style-77 {
  padding-bottom: 90px;
}

.up-style-78 {
  background: var(--maroon-950);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.up-style-79 {
  color: var(--maroon-950);
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotate(180deg);
}

.up-style-80 {
  position: relative;
  z-index: 2;
}

.up-style-84 {
  color: var(--maroon-950);
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.up-style-85 {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.up-style-86 {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.up-style-87 {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.up-style-88 {
  font-size: 1.1rem;
  color: var(--maroon-900);
  margin: 0 0 4px;
  font-weight: 700;
}

.up-style-89 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-600);
}

.up-style-90 {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--ink-500);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.up-style-91 {
  text-align: center;
  margin-top: 40px;
}

.up-style-92 {
  padding-bottom: 90px;
  background: var(--background);
}

.up-style-93 {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-600);
  line-height: 1.5;
}

.up-style-94 {
  text-align: center;
  margin-top: 45px;
}

.up-style-95 {
  max-width: 720px;
  margin-inline: auto;
  margin-top: 40px;
}

.up-style-96 {
  margin-left: 8px;
  font-size: 0.75rem;
  background: var(--gold-100);
  color: var(--gold-700);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.up-style-97 {
  margin-top: 8px;
  font-size: 1.15rem;
  color: var(--maroon-900);
}

.up-style-98 {
  margin-top: 6px;
  color: var(--ink-600);
  line-height: 1.5;
  font-size: 0.95rem;
}

.up-style-99 {
  background: linear-gradient(135deg, var(--maroon-950), var(--maroon-800) 50%, var(--wing-senior));
  position: relative;
}

.up-style-100 {
  position: relative;
  cursor: pointer;
}

.up-style-101 {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-600);
  display: flex;
  align-items: center;
  gap: 6px;
}

.up-style-102 {
  max-width: 720px;
  margin-inline: auto;
}

.up-style-103 {
  color: #fff;
}

.up-style-104 {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 10px auto 0;
}

.up-style-105 {
  margin-top: 24px;
}

.up-style-106 {
  text-align: center;
}

.up-style-107 {
  margin-bottom: 36px;
}

.up-style-108 {
  margin-bottom: 16px;
}

.up-style-109 {
  font-size: .85rem;
}

.up-style-110 {
  max-width: 820px;
  margin-inline: auto;
}

.up-style-111 {
  margin-top: 16px;
}

.up-style-112 {
  margin-top: 44px;
}

.up-style-113 {
  color: rgba(255, 255, 255, .78);
  margin-top: 12px;
}

.up-style-114 {
  align-items: start;
}

.up-style-115 {
  padding: 26px;
}

.up-style-116 {
  margin-bottom: 18px;
}

.up-style-117 {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex: none;
  background: linear-gradient(150deg, var(--maroon-800), var(--maroon-950));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .3);
}

.up-style-118 {
  font-weight: 700;
  font-size: .9rem;
  color: var(--maroon-900);
  line-height: 1.3;
}

.up-style-119 {
  font-size: .78rem;
  color: var(--ink-500);
  margin-top: 4px;
}

.up-style-120 {
  padding: 26px;
  margin-top: 24px;
  background: linear-gradient(150deg, var(--maroon-900), var(--maroon-950));
  border: none;
}

.up-style-121 {
  color: #fff;
  margin-bottom: 10px;
}

.up-style-122 {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  margin-bottom: 18px;
}

.up-style-123 {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.up-style-124 {
  flex: 1.2;
}

.up-style-125 {
  margin-bottom: 20px;
}

.up-style-126 {
  margin-bottom: 16px;
}

.up-style-127 {
  line-height: 1.6;
  margin-bottom: 24px;
}

.up-style-128 {
  flex: 0.8;
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.up-style-129 {
  color: var(--maroon-900);
  margin-bottom: 12px;
}

.up-style-130 {
  color: var(--gold-600);
  margin-right: 8px;
}

.up-style-131 {
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .up-style-128 {
    text-align: center;
    max-width: 480px;
    margin-inline: auto;
  }
}

.up-style-132 {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 16px;
  border-radius: var(--radius-md);
  max-width: 800px;
  margin: 24px auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.up-style-133 {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 16px;
  border-radius: var(--radius-md);
  max-width: 800px;
  margin: 24px auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.up-style-134 {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-title {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--maroon-900);
}

.job-department {
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-500);
}

.job-department i {
  color: var(--gold-500);
  width: 16px;
  text-align: center;
}

.job-qualification {
  margin: 0 0 14px;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-600);
}

.job-field-label {
  font-weight: 700;
  color: var(--maroon-900);
}

.job-description-label {
  margin: 0 0 6px;
  font-size: 0.9rem;
}

.up-style-140 {
  font-size: 0.94rem;
  color: var(--ink-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.up-style-141 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.up-style-142 {
  font-size: 0.85rem;
  color: var(--ink-500);
  font-weight: 600;
}

.up-style-143 {
  text-align: center;
  padding: 40px 0;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  max-width: 800px;
  margin: 40px auto 0;
}

.up-style-144 {
  max-width: 500px;
  margin: 8px auto 24px;
}

.up-style-145 {
  font-size: 0.78rem;
  color: var(--ink-500);
  display: block;
  margin-top: 4px;
}

.up-style-146 {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.up-style-147 {
  border: 1px solid var(--line);
  color: var(--maroon-900);
}

.up-style-148 {
  background-image: linear-gradient(160deg, rgba(10, 20, 40, 0.72), rgba(10, 20, 40, 0.6)), url('../images/banner/contact.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.up-style-149 {
  align-items: flex-start;
}

.up-style-150 {
  margin-bottom: 24px;
}

.up-style-151 {
  border-left: 4px solid var(--wing-preprimary);
  padding: 18px;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.up-style-152 {
  color: var(--wing-preprimary);
  background: var(--wing-preprimary-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.up-style-153 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-700);
  line-height: 1.4;
}

.up-style-154 {
  border-left: 4px solid var(--wing-primary);
  padding: 18px;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.up-style-155 {
  color: var(--wing-primary);
  background: var(--wing-primary-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.up-style-156 {
  border-left: 4px solid var(--wing-middle);
  padding: 18px;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.up-style-157 {
  color: var(--wing-middle);
  background: var(--wing-middle-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.up-style-158 {
  border-left: 4px solid var(--wing-senior);
  padding: 18px;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.up-style-159 {
  color: var(--wing-senior);
  background: var(--wing-senior-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.up-style-160 {
  margin-top: 6px;
  display: flex;
  gap: 8px;
}

.up-style-161 {
  margin-top: 28px;
}

.up-style-162 {
  margin-bottom: 22px;
}

.up-style-163 {
  font-size: 3.5rem;
  color: var(--wing-middle);
  opacity: 0.8;
}

.up-style-164 {
  max-width: 820px;
  margin-inline: auto;
  margin-top: 40px;
}

.up-style-165 {
  line-height: 1.6;
  font-size: 0.98rem;
  color: var(--ink-700);
}

.up-style-166 {
  margin-bottom: 48px;
}

.up-style-167 {
  margin-bottom: 20px;
  color: var(--maroon-900);
}

.up-style-168 {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  overflow-y: hidden;
}

.up-style-169 {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.up-style-170 {
  background: var(--maroon-900);
  color: #fff;
}

.up-style-171 {
  border-bottom: 1px solid var(--line);
}

.up-style-172 {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--maroon-900);
}

.up-style-173 {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--gold-600);
}

.up-style-174 {
  font-size: .85rem;
  text-align: center;
  margin-top: 24px;
}

.up-style-175 {
  display: flex !important;
  flex-direction: column !important;
  padding-block: 8px !important;
  gap: 8px !important;
  align-items: stretch !important;
}

.up-style-176 {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

.up-style-177 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  font-weight: 600 !important;
  color: var(--gold-400) !important;
  flex-wrap: wrap !important;
}

.up-style-178 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.up-style-179 {
  font-size: 0.7em;
  color: var(--gold-400);
}

.up-style-180 {
  position: relative;
  overflow: visible;
}

.up-style-181 {
  margin-top: 30px;
}

.up-style-182 {
  padding-top: 0;
}

.up-style-183 {
  position: static;
  margin-top: 32px;
}

.up-style-184 {
  padding: 26px;
  text-align: center;
}

.up-style-185 {
  font-size: 2rem;
  color: var(--gold-600);
  margin-bottom: 14px;
  display: block;
}

.up-style-186 {
  font-weight: 700;
  font-size: .9rem;
  color: var(--maroon-900);
}

.up-style-187 {
  background: var(--cream);
  border-left: 4px solid var(--gold-500);
  padding: 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 40px;
}

.up-style-188 {
  font-size: 1.1rem;
  color: var(--maroon-900);
  font-weight: 700;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.up-style-189 {
  color: var(--gold-600);
}

.up-style-190 {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-600);
  line-height: 1.6;
}

.up-style-191 {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.up-style-192 {
  background: none;
  border: none;
  padding: 8px 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--maroon-900);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.up-style-193 {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
}

.up-style-194 {
  overflow-x: auto;
}

.up-style-195 {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.up-style-196 {
  background: var(--maroon-950);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.up-style-197 {
  padding: 18px 24px;
  text-align: right;
}

.up-style-198 {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--maroon-900);
}

.up-style-199 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.up-style-200 {
  color: #ef4444;
  font-size: 1.45rem;
}

.up-style-201 {
  padding: 20px 15px;
  /* padding: 20px 24px; */
}

.up-style-202 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--maroon-800);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: inline-block;
}

.up-style-203 {
  padding: 20px 24px;
  color: var(--ink-600);
  font-weight: 500;
}

.up-style-204 {
  padding: 20px 24px;
  text-align: right;
}

.up-style-205 {
  font-size: 0.85rem;
  color: var(--ink-400);
  font-style: italic;
}

.up-style-206 {
  text-align: center;
  padding: 60px 0;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.up-style-207 {
  max-width: 500px;
  margin: 8px auto 0;
}

.up-style-208 {
  background: linear-gradient(135deg, var(--maroon-950), var(--maroon-800) 50%, var(--wing-primary));
  position: relative;
  padding-bottom: 90px;
}

.up-style-209 {
  font-size: 3.5rem;
  color: var(--wing-primary);
  opacity: 0.8;
}

.up-style-210 {
  text-align: center;
  padding: 60px 0;
}

.up-style-211 {
  margin-top: 15px;
}

.up-style-212 {
  color: var(--cream);
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.up-style-213 {
  gap: 32px;
}

.up-style-214 {
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.up-style-215 {
  color: var(--gold-500);
  margin-bottom: 16px;
}

.up-style-216 {
  font-style: italic;
  color: var(--ink-800);
  line-height: 1.6;
  margin-bottom: 24px;
}

.up-style-217 {
  display: flex;
  align-items: center;
  gap: 14px;
}

.up-style-218 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-700);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.up-style-219 {
  font-size: 0.8rem;
  color: var(--ink-500);
  font-weight: 600;
}

.up-style-220 {
  background: #fff;
}

.up-style-221 {
  color: var(--maroon-900);
}

.up-style-222 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.up-style-223 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.up-style-224 {
  color: var(--ink-700);
  text-decoration: none;
}

.up-style-225 {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 6/5;
  object-fit: cover;
}

.story-inline::after {
  content: "";
  display: table;
  clear: both;
}

.story-inline-img {
  float: right;
  width: 42%;
  max-width: 460px;
  margin: 4px 0 28px 40px;
}

@media (max-width: 768px) {
  .story-inline-img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 24px;
  }
}

.up-style-226 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.up-style-227 {
  font-size: 5.5rem;
  color: rgba(255, 255, 255, 0.25);
}

.up-style-228 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.up-style-229 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.up-style-230 {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 32px;
}

.blog-detail-title {
  margin-bottom: 8px;
}

.blog-detail-meta {
  color: var(--ink-500);
  margin-bottom: 24px;
}

.up-style-231 {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.up-style-232 {
  border: 1px solid var(--line);
  color: var(--maroon-800);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.up-style-233 {
  text-decoration: none;
  color: inherit;
}

.up-style-234 {
  max-height: 70px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.up-style-235 {
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
  transition: background 0.2s;
}

.up-style-236 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
}

.up-style-237 {
  margin-bottom: 28px;
}



.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 15px;
  background: transparent;
}

.site-header.bg-white {
  background: #fff;
}

.site-header.bg-black .main-nav a.nav-link {
  color: #000;
}

.site-header.bg-black .main-nav a.nav-link:hover,
.site-header.bg-black .main-nav a.nav-link.is-active {
  color: #000;
}

.site-header.is-solid {
  position: fixed;
  /* top: 0; */
  background: #fff;
  /* Optional */
  padding-top: 0px;
}

.is-solid .main-nav a.nav-link {
  color: #000;
}

.is-solid .main-nav a.nav-link .main-nav a.nav-link:hover {
  color: #000;
}

.is-solid.main-nav a.nav-link.is-active {
  color: #000;
}