/* ============================================================ BVM SCHOOL — PREMIUM LIGHT THEME Fonts: Outfit (display), Manrope (headings), Inter (body) Color: Deep Navy + Gold + Soft Cream ============================================================ */
/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --navy: #0B1D3A;
  --navy-mid: #152E56;
  --navy-light: #1E4080;
  --gold: #d7231c;
  --gold-light: #d7231c;
  --gold-pale: #FDF3DC;
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --gray-50: #F8F9FC;
  --gray-100: #F0F2F7;
  --gray-200: #E2E6EF;
  --gray-400: #9CA3B4;
  --gray-600: #4A5568;
  --gray-800: #1A202C;
  --red-accent: #E8443A;
  --font-display: 'Outfit', sans-serif;
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  --shadow-sm: 0 1px 4px rgba(11, 29, 58, .06);
  --shadow-md: 0 4px 20px rgba(11, 29, 58, .10);
  --shadow-lg: 0 12px 40px rgba(11, 29, 58, .14);
  --shadow-xl: 0 24px 64px rgba(11, 29, 58, .18);
  --trans: 0.3s cubic-bezier(.4, 0, .2, 1);
}

/* ── RESET & BASE ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

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

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

a:focus-visible {
  outline: 0;
}

.section-pad {
  padding: 96px 0;
}

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-family: var(--font-body);
  font-size: 12.5px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar-link {
  color: rgba(255, 255, 255, .75);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--trans);
}

.topbar-link:hover {
  color: var(--gold-light);
}

.topbar-link i {
  font-size: 11px;
  color: var(--gold);
}

.topbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.topbar-social {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  transition: background var(--trans), color var(--trans);
}

.topbar-social:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.main-navbar {
  padding: 14px 0;
  transition: box-shadow var(--trans), padding var(--trans);
  z-index: 1000;
  position: absolute;
  width: 100%;
  top: 46px;
}

.main-navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  position: sticky;
  background-color: #fff;
  top: 0;
}

/* Brand / Logo */
.brand-logo,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  gap: 1px;
}

.logo-letter {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.logo-letter.accent {
  color: var(--gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 2px;
}

.nav-links {
  gap: 4px;
}

.nav-links .nav-link {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 600;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--trans), background var(--trans);
  letter-spacing: .2px;
}

.nav-links .nav-link:hover {
  color: #d7231c !important;
}

.btn-apply {
  background: var(--gold);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  letter-spacing: .3px;
}

.btn-apply:hover {
  background: #fff;
  color: #d7231c;
  transform: translateY(-1px);
}

.main-navbar.scrolled a.nav-link {
  color: #0b1d3a !important;
}

.main-navbar.scrolled a.nav-link:hover {
  color: #d7231c !important;
}

.navbar-toggler {
    border: 0;
    border-radius: 0;
    padding: 0;
   
}
span.navbar-toggler-icon {
    background-image: url(../img/toggle.svg);
    position: relative;
    top: -5px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("../img/cross.svg");
/*    width: 35px;
    height: 35px;*/
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 200px 0 90px;
  background-image: url('../img/home-page.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

a.nav-link.active {
  color: #d7231c !important;
}

.hero-section::After,
.cta-section::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #0b1d3aad;
}

cta-section::after {
  background-color: #0b1d3ade;
}

.cta-section .row {
  position: relative;
  z-index: 1;
}

.hero-section .col-lg-12 {
  position: relative;
  z-index: 11;
}

.hero-actions a.btn.btn-hero-secondary {
  background-color: #fff;
}

.hero-content-row {
  min-height: 70vh;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid rgba(212, 152, 42, .3);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeSlideUp .6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -2px;
  animation: fadeSlideUp .7s ease .1s both;
}

.hero-title-highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 16.5px;
  color: #fff;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
  animation: fadeSlideUp .7s ease .2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideUp .7s ease .3s both;
}

.btn-hero-primary {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.btn-hero-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11, 29, 58, .25);
  color: var(--white);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--gray-200);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: border-color var(--trans), background var(--trans), transform var(--trans);
}

.btn-hero-secondary:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  color: var(--navy);
}

.btn-hero-secondary i {
  color: var(--gold);
  font-size: 18px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeSlideUp .7s ease .4s both;
  flex-wrap: wrap;
  justify-content: left;
}

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

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 3px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

/* Hero Image Stack */
.hero-image-stack {
  position: relative;
  height: 500px;
  animation: fadeSlideUp .8s ease .2s both;
}

.hero-img-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-main {
  width: 340px;
  height: 400px;
  top: 20px;
  left: 40px;
  z-index: 2;
}

.hero-img-secondary {
  width: 345px;
  height: 260px;
  top: 100px;
  right: 0;
  z-index: 3;
  border: 4px solid var(--white);
}

.hero-float-badge {
  position: absolute;
  bottom: 30px;
  left: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  border-left: 3px solid var(--gold);
}

.hero-float-badge i {
  color: var(--gold);
  font-size: 18px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  animation: fadeSlideUp 1s ease .8s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  animation: scrollPulse 1.5s ease infinite;
}

/* ── FEATURES STRIP ──────────────────────────────────────── */
.features-strip {
  background: var(--navy);
  padding: 0;
}

.features-row {
  border-radius: 0;
  overflow: hidden;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: background var(--trans);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: rgba(255, 255, 255, .04);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.feature-text h6 {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.feature-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin: 0;
  line-height: 1.4;
}

/* ── SECTION SHARED ELEMENTS ─────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-label.light {
  color: var(--gold-light);
}

.section-label.light::before {
  background: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.title-accent {
  color: var(--gold);
}

.section-body {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.btn-primary-custom {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.btn-primary-custom:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 29, 58, .2);
  color: var(--white);
}

.btn-outline-custom {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--trans), color var(--trans), transform var(--trans);
}

.btn-outline-custom:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section {
    background: var(--white);
    overflow: hidden;
}

.about-images-grid {
  position: relative;
  height: 520px;
}

.about-img-1 {
  position: absolute;
  width: 70%;
  top: 0;
  left: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-2 {
  position: absolute;
  width: 52%;
  height: 280px;
  bottom: 0;
  right: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--white);
}

.about-img-1 img,
.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-img-1:hover img,
.about-img-2:hover img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 0px;
  left: 70px;
  transform: translate(-50%, -50%);
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  min-width: 100px;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.badge-text {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.about-feature-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-800);
}

.about-feature-item i {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}

/* ── PROGRAMS SECTION ────────────────────────────────────── */
.programs-section {
  background: var(--gray-50);
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--trans), box-shadow var(--trans);
  height: 100%;
}

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

.program-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.program-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11, 29, 58, .6));
}

.program-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-card-body {
  padding: 28px;
}

.program-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
}

.program-card-body h5 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.program-card-body p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 18px;
}

.program-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans), color var(--trans);
}

.program-link:hover {
  color: var(--gold);
  gap: 10px;
}

/* ── SERVICES SECTION ────────────────────────────────────── */
.services-section {
  background: var(--white);
  padding-top: 0;
}

.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.service-card-accent {
  background: var(--navy);
  border-color: var(--navy);
}

.service-card-accent:hover {
  background: var(--navy-mid);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0b1d3a;
  margin: 0 auto 18px;
}

.service-card-accent .service-icon {
  background: rgba(212, 152, 42, .2);
  color: var(--gold-light);
}

.service-card h5 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card-accent h5 {
  color: var(--white);
}

.service-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.service-card-accent p {
  color: rgba(255, 255, 255, .65);
}

/* ── GALLERY SECTION ─────────────────────────────────────── */
.gallery-section {
  background: var(--gray-50);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

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

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 58, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
  color: var(--white);
  font-size: 28px;
}

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

/* ── VOICE / MANAGER ─────────────────────────────────────── */
.voice-section {
    background: var(--white);
    overflow: hidden;
}
.voice-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 500px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.voice-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.voice-quote {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.65;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  font-style: normal;
}

.voice-sayings {
  margin-bottom: 28px;
}

.saying-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6;
}

.saying-item i {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  /* margin-top: 2px; */
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
}

.voice-author-info strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.voice-author-info span {
  font-size: 12px;
  color: var(--gray-400);
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background-image: url(../img/school-children.jpeg);
  background-size: cover;
  background-repeat: NO-REPEAT;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212, 152, 42, .12), transparent), radial-gradient(ellipse 40% 60% at 10% 50%, rgba(30, 64, 128, .4), transparent);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.cta-title-accent {
  color: var(--gold-light);
}

.cta-body {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: rgba(255, 255, 255, .65);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

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

.btn-cta-primary {
  background: var(--gold);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.btn-cta-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 152, 42, .35);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, .25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--trans), background var(--trans), transform var(--trans);
}

.btn-cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── CONTACT STRIP ───────────────────────────────────────── */
.contact-strip {
  background: var(--gray-50);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  height: 100%;
}

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

.contact-card-accent {
  background: var(--navy);
  border-color: var(--navy);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin: 0 auto 16px;
}

.contact-card-accent .contact-icon {
  background: rgba(212, 152, 42, .2);
  color: var(--gold-light);
}

.contact-card h6 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.contact-card-accent h6 {
  color: rgba(255, 255, 255, .5);
}

.contact-card p {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.contact-card-accent p,
.contact-card-accent p a {
  color: var(--white);
}

.contact-card p a {
  color: var(--navy);
  transition: color var(--trans);
}

.contact-card p a:hover {
  color: var(--gold);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.main-footer {
  background: var(--navy);
  padding-top: 80px;
  overflow: hidden;
}

.footer-top {
  padding-bottom: 60px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-about {
  font-size: 13.5px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  transition: background var(--trans), color var(--trans), transform var(--trans);
}

.footer-social:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
  transition: color var(--trans), padding-left var(--trans);
  display: inline-block;
}

a.navbar-brand.brand-logo img,
a.footer-brand img {
  width: 80px;
}

ul.navbar-nav.ms-auto.nav-links {
  margin: 0 auto !important;
  gap: 25px;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-newsletter-text {
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-newsletter {
  display: flex;
  gap: 0;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, .12);
}

.footer-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
  outline: none;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.btn-newsletter {
  background: var(--gold);
  border: none;
  padding: 12px 18px;
  color: var(--navy);
  font-size: 15px;
  cursor: pointer;
  transition: background var(--trans);
}

.btn-newsletter:hover {
  background: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: #fff;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: #fff;
  transition: color var(--trans);
}

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

.nav-links .nav-link:hover {
  color: #d7231c;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 60px 0 80px;
  }
  section#home-section {
    padding-top: 160px;
}
.navbar-collapse {
    background-color: #fff;
}
.navbar-collapse a.nav-link {
    color: #000 !important;
}
a.btn.btn-apply.ms-3 {
    display: none;
}
.main-navbar.scrolled span.navbar-toggler-icon {
    filter: invert(1);
}
.main-navbar {
    top: 56px;
}
ul.navbar-nav.ms-auto.nav-links {
    gap: 10px;
}
  .hero-content-row {
    min-height: auto;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .about-images-grid {
    height: 360px;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .voice-image-wrap {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 30px 0;
  }

  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

 .feature-item {
    padding: 20px 16px;
    border: 0;
}
  .about-images-grid {
    height: 280px;
  }

  .about-img-badge {
    padding: 12px 14px;
  }

  .badge-num {
    font-size: 26px;
  }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .hero-stats {
    gap: 18px;
  }

  .hero-stat-num {
    font-size: 22px;
  }

  .cta-section {
    padding: 64px 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .gallery-item-tall,
  .gallery-item-wide {
    grid-row: span 1;
    grid-column: span 1;
  }

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

/*************************************************** about us page css ************************/
/* ── PAGE HERO ─────────────────────────── */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  background-image: url('../img/home-page.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 29, 58, .88) 0%, rgba(11, 29, 58, .65) 100%);
}

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

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 20px;
}

.page-hero-breadcrumb a {
  color: #fff;
  transition: color var(--trans);
}

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

.page-hero-breadcrumb i {
  font-size: 10px;
  color: var(--gold);
}

.page-hero-breadcrumb span {
  color: var(--gold);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 18px;
  animation: fadeSlideUp .6s ease both;
}

.page-hero-title span {
  color: var(--gold);
}

.page-hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  max-width: 540px;
  line-height: 1.75;
  animation: fadeSlideUp .7s ease .1s both;
}

/* ── STORY SECTION ─────────────────────── */
.story-section {
    background: var(--white);
    overflow: hidden;
}
.story-text-col {}

.story-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}

.story-img-badge .badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.story-img-badge .badge-text {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 29, 58, .35) 0%, transparent 50%);
}

/* Mission / Vision / Values cards */
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.mvv-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  transition: transform var(--trans), box-shadow var(--trans);
}

.mvv-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.mvv-card-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.mvv-card-body strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 5px;
}

.mvv-card-body p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ── DIFFERENCE SECTION ────────────────── */
.difference-section {
  background: var(--gray-50);
}

.diff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.diff-card:hover::before {
  transform: scaleX(1);
}

.diff-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
}

.diff-card h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.diff-card p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ── STATS BAR ─────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 56px 0;
}

.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stats-bar-item {
  text-align: center;
}

.stats-bar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}

.stats-bar-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  display: block;
}

.stats-bar-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, .1);
}

/* ── LEADERSHIP SECTION ────────────────── */
.leadership-section {
  background: var(--white);
}

.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  height: 100%;
}

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

.leader-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.leader-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.leader-card-img .leader-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid rgba(255, 255, 255, .2);
}

.leader-card-body {
  padding: 22px 24px;
}

.leader-card-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.leader-card-body .leader-role {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.leader-card-body p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Featured leader (manager) */
.leader-card-featured {
  border-color: var(--gold);
  border-width: 2px;
}

.leader-card-featured .leader-card-img {
  height: 280px;
}

/* ============================================================
       BVM SCHOOL — ADMISSIONS PAGE — INTERNAL CSS
       Fonts: Outfit (display), Manrope (headings), Inter (body)
       Color: Deep Navy + Red/Gold + Soft Cream
       ============================================================ */

/* ── ADMISSION PROCESS SECTION ───────────────────────────── */
.process-section {
    background: var(--white);
    overflow: hidden;
}

.steps-container {
  position: relative;
  margin-top: 20px;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% - 1px);
  width: 2px;
  height: calc(100% - 72px);
  background: linear-gradient(to bottom, var(--gold), rgba(215, 35, 28, .15));
}

.step-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 0 0 40px;
}

.step-item:last-child {
  padding-bottom: 0;
}

.step-num-wrap {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  display: flex;
  justify-content: center;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(215, 35, 28, .35);
  position: relative;
  z-index: 2;
  transition: transform var(--trans), box-shadow var(--trans);
}

.step-item:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(215, 35, 28, .45);
}

.step-card {
  flex: 1;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  position: relative;
}

.step-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.step-card::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--gray-100);
}

.step-card:hover::before {
  border-right-color: var(--gray-200);
}

.step-tag {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.step-card h5 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ── IMPORTANT DATES SECTION ─────────────────────────────── */
.dates-section {
  background: var(--gray-50);
}

.dates-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.dates-header {
  background: var(--navy);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.dates-header-icon {
  width: 48px;
  height: 48px;
  background: rgba(215, 35, 28, .2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #f87171;
}

.dates-header h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.dates-header p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  margin: 4px 0 0;
}

.dates-body {
  padding: 8px 0;
}

.date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--trans);
}

.date-row:last-child {
  border-bottom: none;
}

.date-row:hover {
  background: var(--gray-50);
}

.date-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 10px;
}

.date-label i {
  color: var(--gold);
  font-size: 14px;
}

.date-value {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  background: var(--gray-50);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
}

.date-value.highlight {
  background: rgba(215, 35, 28, .1);
  color: var(--gold);
}

/* ── ELIGIBILITY SECTION ─────────────────────────────────── */
.eligibility-section {
  background: var(--white);
}

.elig-table-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.elig-table {
  width: 100%;
  border-collapse: collapse;
}

.elig-table thead {
  background: var(--navy);
}

.elig-table thead th {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .7);
  padding: 18px 24px;
  text-align: left;
}

.elig-table thead th:first-child {
  color: var(--gold-light);
}

.elig-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--trans);
}

.elig-table tbody tr:last-child {
  border-bottom: none;
}

.elig-table tbody tr:hover {
  background: var(--gray-50);
}

.elig-table tbody td {
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-800);
}

.elig-table tbody td:first-child {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
}

.elig-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
}

/* ── DOCUMENTS SECTION ───────────────────────────────────── */
.documents-section {
  background: var(--gray-50);
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.doc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative;
  overflow: hidden;
}

.doc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

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

.doc-card:hover::after {
  transform: scaleX(1);
}

.doc-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.doc-info strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.doc-info span {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--gray-400);
}

/* ── NOTICES SECTION ─────────────────────────────────────── */
.notices-section {
  background: var(--white);
}

.notice-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative;
  overflow: hidden;
}

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

.notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(215, 35, 28, .1);
  color: var(--gold);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.notice-card h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.notice-card p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.notice-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ── CONTACT FORM SECTION ────────────────────────────────── */
.enquiry-section {
  background: var(--gray-50);
}

.form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.form-header {
  background: var(--navy);
  padding: 36px 40px;
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.form-header p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin: 0;
}

.form-body {
  padding: 36px 40px;
}

.form-label-custom {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
  display: block;
}

.form-control-custom {
  width: 100%;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-800);
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
  outline: none;
  -webkit-appearance: none;
}

.form-control-custom:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(215, 35, 28, .1);
}

.form-control-custom::placeholder {
  color: var(--gray-400);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 110px;
}

.form-group {
  margin-bottom: 22px;
}

.btn-submit {
  background: var(--gold);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.btn-submit:hover {
  background: #b81c16;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(215, 35, 28, .35);
}

/* Info sidebar */
.info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
}

.info-card-header h6 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin: 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-item i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-item-body {
  flex: 1;
}

.info-item-body strong {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.info-item-body span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.info-item-body a {
  color: var(--navy);
  transition: color var(--trans);
}

.info-item-body a:hover {
  color: var(--gold);
}

.quick-links-card {
  background: var(--navy);
  border: none;
}

.quick-links-card .info-card-header h6 {
  color: #fff;
}

.quick-link-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, .8);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: background var(--trans), color var(--trans), transform var(--trans);
  cursor: pointer;
}

.quick-link-btn:last-child {
  margin-bottom: 0;
}

.quick-link-btn:hover {
  background: rgba(215, 35, 28, .25);
  color: #fff;
  transform: translateX(4px);
}

.quick-link-btn i {
  font-size: 12px;
  color: var(--gold);
}

/* ── CONTACT STRIP ───────────────────────────────────────── */
.contact-strip {
  background: var(--gray-50);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  height: 100%;
}

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

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin: 0 auto 16px;
}

.contact-card h6 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.contact-card p a {
  color: var(--navy);
  transition: color var(--trans);
}

.contact-card p a:hover {
  color: var(--gold);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .steps-container::before {
    display: none;
  }

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

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

  .form-header,
  .form-body {
    padding: 24px 22px;
  }

  .date-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .elig-table tbody td,
  .elig-table thead th {
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .step-item {
    flex-direction: column;
  }
.story-img-badge{
  display: none;
}
  .step-num-wrap {
    width: auto;
    justify-content: flex-start;
  }

  .steps-container::before {
    display: none;
  }
}

/* ============================================================
       BVM SCHOOL — COURSES PAGE — INTERNAL CSS
       Fonts: Outfit (display), Manrope (headings), Inter (body)
       Color: Deep Navy + Red + Soft Cream
       ============================================================ */

/* ── STREAM TABS NAV ─────────────────────────────────────── */
.streams-section {
  background: var(--white);
}

.stream-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 8px;
  margin-bottom: 48px;
  border: 1px solid var(--gray-100);
}

.stream-tab {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--radius-lg);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
  transition: background var(--trans), color var(--trans), box-shadow var(--trans);
  border: none;
  background: transparent;
}

.stream-tab i {
  font-size: 16px;
}

.stream-tab:hover {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.stream-tab.active {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.stream-tab.active i {
  color: var(--gold);
}

/* ── STREAM PANELS ───────────────────────────────────────── */
.stream-panel {
  display: none;
  animation: fadeSlideUp .4s ease both;
}

.stream-panel.active {
  display: block;
}

/* Stream Hero Card */
.stream-hero-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}

.stream-hero-inner {
  padding: 48px 48px 48px;
  position: relative;
  z-index: 2;
}

.stream-hero-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(215, 35, 28, .08);
  pointer-events: none;
}

.stream-hero-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 40%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  pointer-events: none;
}

.stream-level-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(215, 35, 28, .2);
  border: 1px solid rgba(215, 35, 28, .35);
  color: #f87171;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.stream-hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.stream-hero-title span {
  color: var(--gold);
}

.stream-hero-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 28px;
}

.stream-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stream-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .8);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
}

.stream-tag-pill i {
  font-size: 12px;
  color: var(--gold);
}

.stream-hero-icon {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
}

/* Subject Grid */
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.subject-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.subject-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}

.subject-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.subject-info strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.subject-info span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Career paths */
.career-section-inner {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
}

.career-section-inner h6 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 18px;
}

.career-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.career-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}

.career-tag:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.career-tag i {
  font-size: 12px;
  color: var(--gold);
}

/* ── PROGRAMS OVERVIEW SECTION ───────────────────────────── */
.programs-overview {
  background: var(--gray-50);
}

.program-overview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  height: 100%;
}

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

.program-overview-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.program-overview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.program-overview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11, 29, 58, .6));
}

.program-overview-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-overview-body {
  padding: 26px 24px;
}

.program-overview-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
}

.program-overview-body h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.program-overview-body p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.program-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans), color var(--trans);
}

.program-link:hover {
  color: var(--gold);
  gap: 10px;
}

/* ── CO-CURRICULAR SECTION ───────────────────────────────── */
.cocurr-section {
  background: var(--white);
}

.cocurr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cocurr-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  position: relative;
  overflow: hidden;
}

.cocurr-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--trans);
}

.cocurr-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.cocurr-card:hover::before {
  transform: scaleX(1);
}

.cocurr-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin: 0 auto 16px;
}

.cocurr-card h6 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.cocurr-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ── BOARD INFO SECTION ──────────────────────────────────── */
.board-section {
  background: var(--gray-50);
}

.board-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.board-card-header {
  background: var(--navy);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.board-header-icon {
  width: 52px;
  height: 52px;
  background: rgba(215, 35, 28, .2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #f87171;
}

.board-card-header h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.board-card-header p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin: 4px 0 0;
}

.board-card-body {
  padding: 36px 40px;
}

.board-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.board-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}

.board-point i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.board-point-body strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.board-point-body span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-600);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1199px) {
  .cocurr-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .container-xl {
    max-width: 95% !important;
}
}

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

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

  .board-points {
    grid-template-columns: 1fr;
  }

  .stream-hero-icon {
    display: none;
  }

  .stream-hero-inner {
    padding: 32px 28px;
  }
}

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

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

  .stream-tabs {
    gap: 6px;
  }

  .stream-tab {
    font-size: 12px;
    padding: 10px 12px;
  }

  .board-card-header,
  .board-card-body {
    padding: 22px 22px;
  }

  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
.cocurr-grid {
    display: flex;
    flex-wrap: wrap;
}

  .stream-tab span {
    display: none;
  }

  .stream-tab {
    min-width: auto;
    padding: 12px;
    flex: 0 0 auto;
  }
  .footer-top {
    padding-bottom: 30px;
}
}


/* ── FILTER BAR ──────────────────────────────────────────── */
.gallery-section {
    background: var(--white);
    overflow: hidden;
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: all var(--trans);
}

.filter-btn i {
  font-size: 14px;
}

.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.filter-btn.active i {
  color: var(--gold);
}

/* ── GALLERY GRID ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans);
}

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

.gallery-item img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

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

/* Wide items (span 2 cols) */
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-caption {
    display: none;
}
.gdesc-inner {
    display: none;
}

/* Hover Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 29, 58, .75) 0%, rgba(11, 29, 58, .2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--trans);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

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

.gallery-zoom-btn {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: background var(--trans), transform var(--trans);
}

.gallery-item:hover .gallery-zoom-btn {
  transform: scale(1.1);
  background: var(--gold);
  border-color: var(--gold);
}

.gallery-caption {
  align-self: flex-start;
}

.gallery-caption-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.gallery-caption-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* ── EMPTY STATE (when filter matches nothing) ───────────── */
.gallery-empty {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.gallery-empty.show {
  display: block;
}

.gallery-empty i {
  font-size: 48px;
  color: var(--gray-200);
  margin-bottom: 16px;
  display: block;
}

.gallery-empty p {
  font-family: var(--font-head);
  color: var(--gray-400);
  font-size: 15px;
}

/* ── EVENTS SECTION ──────────────────────────────────────── */
.events-section {
  background: var(--gray-50);
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.event-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.event-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11, 29, 58, .55));
}

.event-card-body {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(215, 35, 28, .1);
  color: var(--gold);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.event-card-body h5 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.event-card-body p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ── VIDEO SECTION ───────────────────────────────────────── */
.video-section {
  background: var(--white);
}

.video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--navy);
  aspect-ratio: 16/7;
}

.video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(215, 35, 28, .5);
  animation: pulse 2s ease infinite;
  transition: transform var(--trans), background var(--trans);
}

.play-btn:hover {
  transform: scale(1.1);
  background: #b81c16;
}

.video-play-overlay h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: -.5px;
}

.video-play-overlay p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  text-align: center;
}

/* ── GLIGHTBOX CUSTOM ────────────────────────────────────── */
.glightbox-clean .gclose {
  background: var(--gold) !important;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: var(--navy) !important;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(215, 35, 28, .5);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(215, 35, 28, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(215, 35, 28, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-item.show {
  animation: fadeIn .35s ease both;
}

.gallery-item.hide {
  display: none;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1199px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item.tall img {
    height: 400px;
  }
}

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

  .gallery-item.tall img {
    height: 360px;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item.wide img {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

 /* .gallery-item img,
  .gallery-item.tall img {
    height: 180px;
  }*/

  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
 .gallery-grid {
    gap: 12px;
    display: flex;
    flex-wrap: wrap;
}
.gallery-item {
    width: 100%;
}
}

.hero-quick-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
  animation: fadeSlideUp .7s ease .2s both;
}

.hero-quick-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(6px);
  transition: background var(--trans), transform var(--trans);
}

.hero-quick-card:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

.hero-quick-card i {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.hero-quick-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.hero-quick-card span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
}

/* ── SECTION SHARED ──────────────────────────────────────── */
/* ── CONTACT INFO SECTION ────────────────────────────────── */
.contact-info-section {
  background: var(--white);
}

.info-card-big {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}

.info-card-big::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  border-radius: 4px 0 0 4px;
}

.info-card-big:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.info-card-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
}

.info-card-big h5 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.info-card-big p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.info-card-big a {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--trans);
}

.info-card-big a:hover {
  color: var(--gold);
}

.info-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(215, 35, 28, .1);
  color: var(--gold);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}

/* ── ENQUIRY FORM SECTION ────────────────────────────────── */
.enquiry-section {
    background: var(--gray-50);
    overflow: hidden;
}

.form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.form-header {
  background: var(--navy);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.form-header::after {
  content: '\F22D';
  font-family: 'bootstrap-icons';
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 100px;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.form-header p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  margin: 0;
}

.form-body {
  padding: 40px 40px;
}

.form-label-custom {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
  display: block;
}

.form-control-custom {
  width: 100%;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-800);
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
  outline: none;
  -webkit-appearance: none;
}

.form-control-custom:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(215, 35, 28, .1);
}

.form-control-custom::placeholder {
  color: var(--gray-400);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 120px;
}

select.form-control-custom {
  cursor: pointer;
}

.form-group {
  margin-bottom: 22px;
}

.btn-submit {
  background: var(--gold);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.btn-submit:hover {
  background: #b81c16;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(215, 35, 28, .35);
}

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-family: var(--font-head);
  font-size: 14px;
  color: #15803d;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

/* ── INFO SIDEBAR ────────────────────────────────────────── */
.info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.sidebar-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
}

.sidebar-card-header h6 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin: 0;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-100);
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-row i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.info-row-body {
  flex: 1;
}

.info-row-body strong {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.info-row-body span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.info-row-body a {
  color: var(--navy);
  transition: color var(--trans);
}

.info-row-body a:hover {
  color: var(--gold);
}

/* Quick links dark card */
.sidebar-card-dark {
  background: var(--navy);
  border: none;
}

.sidebar-card-dark .sidebar-card-header h6 {
  color: #fff;
}

.sidebar-card-dark .sidebar-card-icon {
  background: rgba(215, 35, 28, .2);
  color: #f87171;
}

.quick-link-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, .8);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: background var(--trans), color var(--trans), transform var(--trans);
  cursor: pointer;
}

.quick-link-btn:last-child {
  margin-bottom: 0;
}

.quick-link-btn:hover {
  background: rgba(215, 35, 28, .25);
  color: #fff;
  transform: translateX(4px);
}

.quick-link-btn i {
  font-size: 12px;
  color: var(--gold);
}

/* ── MAP SECTION ─────────────────────────────────────────── */
.map-section {
  background: var(--white);
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  outline: 1px solid var(--gray-200);
  height: 460px;
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 10;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--gold);
}

.map-badge i {
  color: var(--gold);
  font-size: 20px;
}

.map-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.map-badge span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-400);
}

.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  margin-top: 12px;
  transition: background var(--trans), transform var(--trans);
}

.map-open-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {

  .form-header,
  .form-body {
    padding: 26px 24px;
  }

  .map-wrap {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .hero-quick-cards {
    flex-direction: column;
  }

  .hero-quick-card {
    width: 100%;
  }

  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .map-badge {
    left: 12px;
    bottom: 12px;
    padding: 10px 14px;
  }
}

