@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   BVM GLOBAL DESIGN SYSTEM FOR CREA CHILDREN'S ACADEMY
   Architecture: Heritage Forest Emerald, Warm Ochre Gold, Ivory White
   Reference: https://bvmglobal.org/campuses/bengaluru
   ========================================================================== */

:root {
  /* BVM Signature Heritage Greens */
  --bvm-green-deepest: #04180d;
  --bvm-green-dark: #072616;
  --bvm-green-primary: #0a351f;
  --bvm-green-rich: #0e4529;
  --bvm-green-vibrant: #135835;
  --bvm-green-accent: #198754;
  --bvm-green-soft: #eaf5ee;
  --bvm-green-tint: #f3f8f5;

  /* BVM Signature Ochre Gold & Amber */
  --bvm-gold-primary: #d4a343;
  --bvm-gold-dark: #b88628;
  --bvm-gold-light: #e8bd63;
  --bvm-gold-soft: #fbf6ec;

  /* Neutrals & Surfaces */
  --bvm-white: #ffffff;
  --bvm-bg-page: #fbfdfb;
  --bvm-bg-alt: #f4f7f4;
  --bvm-bg-card: #ffffff;

  /* Typography Colors */
  --bvm-text-dark: #111827;
  --bvm-text-body: #374151;
  --bvm-text-muted: #6b7280;
  --bvm-text-light: #9ca3af;
  --bvm-text-white: #ffffff;

  /* Borders */
  --bvm-border-light: #e5e7eb;
  --bvm-border-subtle: #edf2ee;
  --bvm-border-green: rgba(10, 53, 31, 0.15);
  --bvm-border-dark: rgba(255, 255, 255, 0.12);

  /* Professional Corporate Typography Families */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --bvm-shadow-xs: 0 1px 2px rgba(4, 24, 13, 0.05);
  --bvm-shadow-sm: 0 2px 8px rgba(4, 24, 13, 0.06);
  --bvm-shadow-md: 0 8px 24px rgba(4, 24, 13, 0.08);
  --bvm-shadow-lg: 0 16px 36px rgba(4, 24, 13, 0.12);
  --bvm-shadow-xl: 0 24px 56px rgba(4, 24, 13, 0.18);

  /* Radii */
  --bvm-radius-xs: 4px;
  --bvm-radius-sm: 8px;
  --bvm-radius-md: 14px;
  --bvm-radius-lg: 22px;
  --bvm-radius-full: 9999px;

  /* Layout */
  --container-max: 1240px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bvm-bg-page);
  color: var(--bvm-text-body);
  font-size: 13.5px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--bvm-text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

/* ==========================================================================
   BVM SIGNATURE DASHED EYEBROW (BVM GLOBAL REFERENCE SIGNATURE)
   ========================================================================== */
.bvm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bvm-green-rich);
  margin-bottom: 0.75rem;
}

.bvm-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.bvm-eyebrow.centered::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.bvm-eyebrow.gold {
  color: var(--bvm-gold-primary);
}

.bvm-eyebrow.white {
  color: #a7f3d0;
}

/* BVM SECTION HEADINGS */
.bvm-section-header {
  margin-bottom: 1.75rem;
}

.bvm-section-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--bvm-text-dark);
  letter-spacing: -0.015em;
  margin-top: 0.25rem;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.bvm-section-subtitle {
  font-size: 0.925rem;
  color: var(--bvm-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   BUTTONS (BVM GLOBAL REFERENCE STYLE)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.65rem;
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 700;
  border-radius: var(--bvm-radius-xs);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-bvm-green {
  background-color: var(--bvm-green-primary);
  color: var(--bvm-text-white);
  border-color: var(--bvm-green-primary);
  box-shadow: 0 4px 12px rgba(10, 53, 31, 0.25);
}

.btn-bvm-green:hover {
  background-color: var(--bvm-green-rich);
  border-color: var(--bvm-green-rich);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 53, 31, 0.35);
}

.btn-bvm-outline-white {
  background-color: transparent;
  color: var(--bvm-text-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-bvm-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--bvm-text-white);
  transform: translateY(-2px);
}

.btn-bvm-outline-green {
  background-color: transparent;
  color: var(--bvm-green-primary);
  border-color: var(--bvm-green-primary);
}

.btn-bvm-outline-green:hover {
  background-color: var(--bvm-green-soft);
  transform: translateY(-2px);
}

.btn-bvm-gold {
  background: linear-gradient(135deg, var(--bvm-gold-primary) 0%, var(--bvm-gold-dark) 100%);
  color: #04180d;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(212, 163, 67, 0.35);
}

.btn-bvm-gold:hover {
  background: linear-gradient(135deg, var(--bvm-gold-light) 0%, var(--bvm-gold-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 163, 67, 0.45);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2.15rem;
  font-size: 1rem;
}

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.bvm-topbar {
  background-color: var(--bvm-green-deepest);
  color: #cbd5e1;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0;
}

.bvm-topbar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bvm-topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bvm-pill-notice {
  background: var(--bvm-gold-primary);
  color: #04180d;
  font-weight: 800;
  font-size: 0.725rem;
  padding: 0.15rem 0.6rem;
  border-radius: var(--bvm-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.bvm-topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.bvm-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
}

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

/* ==========================================================================
   NORMAL CLEAN HEADER BAR (INLINE LOGO & BRANDING)
   ========================================================================== */
.bvm-header-wrap {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #edf2ee;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.bvm-header-nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

/* NORMAL CLEAN BRAND INLINE */
.bvm-hanging-crest-box {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  transform: none !important;
  z-index: 10;
  transition: var(--transition);
}

.bvm-hanging-crest-box:hover {
  transform: none !important;
  box-shadow: none !important;
  opacity: 0.9;
}

.bvm-crest-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.bvm-crest-titles {
  display: flex;
  flex-direction: column;
}

.bvm-crest-main-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  color: var(--bvm-green-primary);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.bvm-crest-sub-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  color: var(--bvm-gold-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* BVM NAVIGATION LINKS */
.bvm-nav-menu-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.bvm-nav-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.65rem 0.95rem;
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--bvm-text-dark);
  border-radius: var(--bvm-radius-xs);
  transition: var(--transition);
  white-space: nowrap;
}

.bvm-nav-link-item:hover {
  color: var(--bvm-green-primary);
  background-color: var(--bvm-green-tint);
}

.bvm-nav-link-item.active {
  color: var(--bvm-green-primary);
  font-weight: 700;
  border-bottom: 2px solid var(--bvm-green-primary);
  border-radius: 0;
}

.bvm-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bvm-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--bvm-green-primary);
  cursor: pointer;
  padding: 0.4rem;
}

.bvm-mobile-close {
  display: none !important;
}

/* ==========================================================================
   BVM FOREST GREEN HERO SECTION
   Reference: Deep Forest Green background, crisp serif headline, dual CTAs
   ========================================================================== */
.bvm-hero-section {
  background: linear-gradient(135deg, var(--bvm-green-deepest) 0%, var(--bvm-green-dark) 50%, var(--bvm-green-primary) 100%);
  color: #ffffff;
  padding: 2.75rem 0 3.25rem;
  position: relative;
  overflow: hidden;
}

.bvm-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(circle at 85% 30%, rgba(212, 163, 67, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(19, 88, 53, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.bvm-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.bvm-hero-copy {
  max-width: 680px;
}

.bvm-hero-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

.bvm-hero-title span.accent-serif {
  color: var(--bvm-gold-light);
  font-style: italic;
}

.bvm-hero-subtitle {
  font-size: 0.975rem;
  color: #d1fae5;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.bvm-board-pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--bvm-radius-xs);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 2.25rem;
  text-transform: uppercase;
}

.bvm-hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.bvm-hero-cta-group .btn-bvm-green {
  background-color: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.bvm-hero-cta-group .btn-bvm-green:hover {
  background-color: #22c55e;
  border-color: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.5);
}

.bvm-hero-trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  color: #cbd5e1;
}

.bvm-trust-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.bvm-trust-point svg {
  color: var(--bvm-gold-light);
}

/* BVM HERO RIGHT FRAME (REAL CAMPUS BUILDING WITH BVM CARD) */
.bvm-hero-visual-frame {
  position: relative;
}

.bvm-hero-main-img-box {
  border-radius: var(--bvm-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.bvm-hero-main-img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.bvm-hero-floating-stat {
  position: absolute;
  bottom: -1.75rem;
  left: 2rem;
  background: #ffffff;
  color: var(--bvm-text-dark);
  padding: 1.25rem 1.75rem;
  border-radius: var(--bvm-radius-md);
  box-shadow: var(--bvm-shadow-xl);
  display: flex;
  align-items: center;
  gap: 1.15rem;
  border: 1px solid var(--bvm-border-light);
}

.bvm-floating-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--bvm-radius-sm);
  background: var(--bvm-green-soft);
  color: var(--bvm-green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.bvm-floating-stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bvm-green-primary);
  line-height: 1;
}

.bvm-floating-stat-lbl {
  font-size: 0.775rem;
  color: var(--bvm-text-muted);
  font-weight: 600;
  margin-top: 2px;
}

/* ==========================================================================
   BVM SIGNATURE: "PROUD MOMENTS" (STUDENT ACHIEVEMENTS BOARD)
   Reference: 10th & 12th Student Achievements banner with toppers cards
   ========================================================================== */
.bvm-proud-moments-section {
  padding: 2.25rem 0;
  background-color: #ffffff;
}

.bvm-achievers-board-wrapper {
  background: linear-gradient(180deg, #fbfcfb 0%, #f3f7f4 100%);
  border-radius: var(--bvm-radius-lg);
  border: 1px solid var(--bvm-border-light);
  padding: 3rem 2.5rem;
  box-shadow: var(--bvm-shadow-sm);
}

.bvm-achievers-inner-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--bvm-border-light);
}

.bvm-banner-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bvm-green-primary);
  letter-spacing: 0.02em;
}

.bvm-banner-sub {
  font-size: 0.85rem;
  color: var(--bvm-gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bvm-achievers-grid {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 2rem;
  align-items: center;
}

/* LEFT BADGE: BOARD RESULTS */
.bvm-result-shield-badge {
  background: linear-gradient(135deg, #b88628 0%, #d4a343 100%);
  color: #04180d;
  padding: 2.5rem 1.5rem;
  border-radius: var(--bvm-radius-md);
  text-align: center;
  box-shadow: 0 10px 24px rgba(212, 163, 67, 0.3);
}

.bvm-shield-star {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.bvm-result-shield-badge h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: #04180d;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.bvm-result-shield-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

/* MIDDLE: TOPPER CARDS */
.bvm-toppers-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bvm-topper-card {
  background: #ffffff;
  border-radius: var(--bvm-radius-sm);
  border: 1px solid var(--bvm-border-light);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--bvm-shadow-xs);
  transition: var(--transition);
}

.bvm-topper-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bvm-shadow-md);
  border-color: var(--bvm-green-primary);
}

.bvm-topper-photo {
  height: 160px;
  background: var(--bvm-bg-alt);
  overflow: hidden;
}

.bvm-topper-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bvm-topper-info {
  background: var(--bvm-green-primary);
  color: #ffffff;
  padding: 0.85rem 0.5rem;
}

.bvm-topper-name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.bvm-topper-score {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bvm-gold-light);
  margin-top: 2px;
}

.bvm-topper-subject {
  font-size: 0.7rem;
  color: #d1fae5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* RIGHT: PASS RATE METRIC BOXES */
.bvm-stats-column-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bvm-stat-metric-pill {
  background: #ffffff;
  border-radius: var(--bvm-radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  border: 1px solid var(--bvm-border-light);
  box-shadow: var(--bvm-shadow-xs);
}

.bvm-stat-metric-pill strong {
  font-family: var(--font-sans);
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--bvm-green-primary);
  display: block;
  line-height: 1.1;
}

.bvm-stat-metric-pill span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bvm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.35rem;
}

/* ==========================================================================
   BVM SIGNATURE: "ABOUT THE SCHOOL" (LEARNING MEETS PURPOSE)
   Reference: Split layout with narrative on left and campus building on right
   ========================================================================== */
.bvm-about-section {
  padding: 2.25rem 0;
  background-color: var(--bvm-bg-alt);
}

.bvm-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.bvm-about-copy h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--bvm-text-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.bvm-about-lead {
  font-size: 0.95rem;
  color: var(--bvm-text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.bvm-about-body {
  font-size: 0.95rem;
  color: var(--bvm-text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.bvm-key-highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.bvm-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bvm-green-primary);
}

.bvm-highlight-item svg {
  color: var(--bvm-gold-primary);
  flex-shrink: 0;
}

.bvm-building-frame {
  border-radius: var(--bvm-radius-lg);
  overflow: hidden;
  box-shadow: var(--bvm-shadow-lg);
  border: 6px solid #ffffff;
  position: relative;
}

.bvm-building-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.bvm-building-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 24, 13, 0.9) 100%);
  color: #ffffff;
  padding: 2rem 1.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ==========================================================================
   BVM SIGNATURE: "FROM THE DESK OF THE PRINCIPAL"
   Reference: Large italic quote, narrative, and warm headmistress portrait
   ========================================================================== */
.bvm-principal-section {
  padding: 2.25rem 0;
  background-color: #ffffff;
}

.bvm-principal-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.bvm-principal-copy h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--bvm-text-dark);
  margin-bottom: 1.15rem;
}

.bvm-principal-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bvm-green-rich);
  line-height: 1.6;
  padding-left: 1.25rem;
  border-left: 3px solid var(--bvm-gold-primary);
  margin-bottom: 1.25rem;
}

.bvm-principal-text {
  font-size: 0.95rem;
  color: var(--bvm-text-body);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.bvm-principal-signoff {
  margin-top: 1.5rem;
}

.bvm-principal-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bvm-green-primary);
}

.bvm-principal-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bvm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.bvm-principal-portrait-box {
  border-radius: var(--bvm-radius-lg);
  overflow: hidden;
  box-shadow: var(--bvm-shadow-lg);
  border: 1px solid var(--bvm-border-light);
}

.bvm-principal-portrait-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
}

/* ==========================================================================
   BVM SIGNATURE: "ACADEMIC PROGRAMMES" (CURRICULUM & METHODOLOGY)
   Reference: Centered header, clean academic cards with age bands
   ========================================================================== */
.bvm-curriculum-section {
  padding: 2.25rem 0;
  background-color: var(--bvm-bg-alt);
}

.bvm-curriculum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bvm-curriculum-card {
  background: #ffffff;
  border-radius: var(--bvm-radius-md);
  border: 1px solid var(--bvm-border-light);
  overflow: hidden;
  box-shadow: var(--bvm-shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.bvm-curriculum-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bvm-shadow-lg);
  border-color: var(--bvm-green-primary);
}

.bvm-curriculum-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.bvm-curriculum-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bvm-curriculum-card:hover .bvm-curriculum-card-img img {
  transform: scale(1.08);
}

.bvm-curriculum-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bvm-green-primary);
  color: #ffffff;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--bvm-radius-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bvm-curriculum-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bvm-curriculum-body h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--bvm-text-dark);
  margin-bottom: 0.5rem;
}

.bvm-curriculum-body p {
  font-size: 12.5px;
  color: var(--bvm-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.bvm-curriculum-footer {
  border-top: 1px solid var(--bvm-border-light);
  padding-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bvm-green-primary);
}

/* ==========================================================================
   STEAM INNOVATION SECTION (TRICHY PIONEER SINCE 2016)
   ========================================================================== */
.bvm-steam-section {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--bvm-green-deepest) 0%, var(--bvm-green-dark) 100%);
  color: #ffffff;
}

.bvm-steam-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.bvm-steam-copy h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.bvm-steam-copy p {
  font-size: 0.95rem;
  color: #d1fae5;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.bvm-steam-letters-row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.bvm-steam-row-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.95rem 1.25rem;
  border-radius: var(--bvm-radius-sm);
  transition: var(--transition);
}

.bvm-steam-row-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--bvm-gold-primary);
  transform: translateX(6px);
}

.bvm-letter-badge {
  width: 40px;
  height: 40px;
  border-radius: var(--bvm-radius-xs);
  background: var(--bvm-gold-primary);
  color: #04180d;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bvm-steam-text-item strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
}

.bvm-steam-text-item span {
  font-size: 0.825rem;
  color: #cbd5e1;
}

.bvm-steam-media-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.bvm-steam-media-duo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--bvm-radius-md);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   PHILANTHROPY & MANITHAM TRUST (80G GIVING)
   ========================================================================== */
.bvm-philanthropy-section {
  padding: 2.25rem 0;
  background-color: #ffffff;
}

.bvm-philanthropy-wrapper {
  background: linear-gradient(135deg, #072616 0%, #0d3a24 60%, #134e32 100%);
  border-radius: var(--bvm-radius-lg);
  padding: 3rem 2.5rem;
  color: #ffffff;
  box-shadow: var(--bvm-shadow-xl);
}

.bvm-philanthropy-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.bvm-philanthropy-copy h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.bvm-philanthropy-copy p {
  font-size: 0.95rem;
  color: #d1fae5;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.bvm-impact-stats-row {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.25rem;
}

.bvm-impact-stat strong {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--bvm-gold-light);
  display: block;
  line-height: 1;
}

.bvm-impact-stat span {
  font-size: 0.825rem;
  color: #a7f3d0;
  display: block;
  margin-top: 0.35rem;
}

.bvm-sponsor-action-card {
  background: #ffffff;
  color: var(--bvm-text-dark);
  border-radius: var(--bvm-radius-md);
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.bvm-sponsor-action-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--bvm-green-primary);
  margin-bottom: 0.35rem;
}

.bvm-rate-box {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.15rem;
  margin: 1.15rem 0;
  border: 1px solid #e2e8f0;
}

.bvm-rate-box strong {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--bvm-green-primary);
  display: block;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bvm-rate-box span {
  font-size: 0.8rem;
  color: var(--bvm-text-muted);
  display: block;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ==========================================================================
   CAMPUS INFRASTRUCTURE (ECOSYSTEM)
   ========================================================================== */
.bvm-campus-section {
  padding: 6rem 0;
  background-color: var(--bvm-bg-alt);
}

.bvm-campus-triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bvm-campus-card {
  background: #ffffff;
  border-radius: var(--bvm-radius-md);
  border: 1px solid var(--bvm-border-light);
  overflow: hidden;
  box-shadow: var(--bvm-shadow-xs);
  transition: var(--transition);
}

.bvm-campus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bvm-shadow-md);
  border-color: var(--bvm-green-primary);
}

.bvm-campus-card-img {
  height: 220px;
  overflow: hidden;
}

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

.bvm-campus-card-body {
  padding: 1.75rem;
}

.bvm-campus-card-body h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--bvm-text-dark);
  margin-bottom: 0.5rem;
}

.bvm-campus-card-body p {
  font-size: 12.5px;
  color: var(--bvm-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   MODERN CORPORATE 4-COLUMN FOOTER
   Normal text: 12-13px | Headings: 14-16px | Tech Credit: Judah Code Technologies
   ========================================================================== */
.bvm-footer {
  background-color: var(--bvm-green-deepest);
  color: #94a3b8;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.bvm-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1.15fr 1fr;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
}

.bvm-footer-school-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  letter-spacing: -0.01em;
}

.bvm-footer-desc {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0.65rem 0 0.85rem;
}

.bvm-footer-pill-wrap {
  margin-bottom: 0.85rem;
}

.bvm-footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  background: var(--bvm-green-rich);
  color: #ffffff;
  border: 1px solid rgba(212, 163, 67, 0.45);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(4, 24, 13, 0.35);
}

.bvm-footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.85rem;
}

.bvm-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s ease;
  text-decoration: none;
}

.bvm-social-btn:hover {
  background: var(--bvm-gold-primary);
  color: #04180d;
  border-color: var(--bvm-gold-primary);
  transform: translateY(-2px);
}

.bvm-footer-col-title {
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.bvm-footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 2.5px;
  background: var(--bvm-gold-primary);
  border-radius: 1px;
}

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

.bvm-footer-list li {
  margin-bottom: 0.55rem;
}

.bvm-footer-list a {
  color: #94a3b8;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s;
}

.bvm-footer-list a:hover {
  color: var(--bvm-gold-light);
  transform: translateX(2px);
}

.bvm-footer-contact-item {
  display: flex;
  gap: 8px;
  margin-bottom: 0.65rem;
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.55;
  align-items: flex-start;
}

.bvm-footer-contact-item svg {
  color: var(--bvm-gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
  width: 14px;
  height: 14px;
}

.bvm-footer-contact-item a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.bvm-footer-contact-item a:hover {
  color: var(--bvm-gold-primary);
}

.bvm-footer-newsletter-text {
  font-size: 12.5px;
  color: #94a3b8;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.bvm-footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bvm-footer-newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #ffffff;
  transition: all 0.2s;
}

.bvm-footer-newsletter-input::placeholder {
  color: #64748b;
}

.bvm-footer-newsletter-input:focus {
  outline: none;
  border-color: var(--bvm-gold-primary);
  box-shadow: 0 0 0 2px rgba(212, 163, 67, 0.25);
}

.bvm-footer-newsletter-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--bvm-gold-primary) 0%, var(--bvm-gold-dark) 100%);
  color: #04180d;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.bvm-footer-newsletter-btn:hover {
  background: linear-gradient(135deg, var(--bvm-gold-light) 0%, var(--bvm-gold-primary) 100%);
  transform: translateY(-1px);
}

.bvm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  font-size: 12px;
  color: #94a3b8;
}

.bvm-footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bvm-footer-credits {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 480px) {
  .bvm-footer-credits {
    white-space: nowrap;
  }
}

.bvm-footer-credits a,
.tech-credit-link {
  color: #fbbf24 !important; /* Prominent bright amber-gold highlight */
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: var(--transition);
  display: inline;
}

.bvm-footer-credits a:hover,
.tech-credit-link:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* ==========================================================================
   POPUP ADMISSION BROCHURE MODAL (BVM GLOBAL SIGNATURE POPUP)
   ========================================================================== */
.bvm-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 24, 13, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.bvm-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.bvm-modal-card {
  background: #ffffff;
  border-radius: var(--bvm-radius-lg);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2.5rem;
  position: relative;
}

.bvm-modal-backdrop.open .bvm-modal-card {
  transform: translateY(0) scale(1);
}

.bvm-modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bvm-bg-alt);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bvm-text-muted);
  font-size: 1.25rem;
  font-weight: 700;
  transition: var(--transition);
}

.bvm-modal-close-btn:hover {
  background: #e5e7eb;
  color: var(--bvm-green-primary);
}

/* Forms */
.form-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--bvm-text-dark);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--bvm-border-light);
  border-radius: var(--bvm-radius-xs);
  background: #ffffff;
  color: var(--bvm-text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--bvm-green-primary);
  box-shadow: 0 0 0 3px rgba(10, 53, 31, 0.15);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast-message {
  background: var(--bvm-green-deepest);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--bvm-radius-xs);
  box-shadow: var(--bvm-shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  pointer-events: auto;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 4px solid var(--bvm-gold-primary);
}

.toast-message.show {
  transform: translateX(0);
  opacity: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bvm-green-primary);
  color: #ffffff;
  border: 1px solid rgba(212, 163, 67, 0.4);
  box-shadow: 0 4px 14px rgba(4, 24, 13, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--bvm-green-rich);
  border-color: var(--bvm-gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(4, 24, 13, 0.6);
}

/* ==========================================================================
   CORPORATE REDESIGN COMPONENTS: FORMS, SPONSORSHIP TIERS, BANK DETAILS
   Professional standards: 12-14px body/labels, 16-18px subheads, crisp borders
   ========================================================================== */

/* Corporate Status & Category Badges */
.corp-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.corp-badge-emerald {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.corp-badge-gold {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.corp-badge-slate {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
}

/* --- 1. CORPORATE IN-PAGE FORM CARD --- */
.corp-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
  padding: 2rem 2.25rem;
  position: relative;
}

.corp-form-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.corp-form-title {
  font-family: var(--font-sans);
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: #0f172a;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.corp-form-subtitle {
  font-size: 0.8125rem; /* 13px */
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.corp-form-group {
  margin-bottom: 1rem;
}

.corp-field-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.4rem;
}

.corp-field-label .req {
  color: #dc2626;
  font-weight: 700;
}

.corp-input,
.corp-select,
.corp-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  transition: all 0.2s ease;
  line-height: 1.5;
}

.corp-input::placeholder,
.corp-textarea::placeholder {
  color: #94a3b8;
  font-size: 13px;
}

.corp-input:focus,
.corp-select:focus,
.corp-textarea:focus {
  outline: none;
  border-color: #0f4c3a;
  box-shadow: 0 0 0 3px rgba(15, 76, 58, 0.12);
  background: #ffffff;
}

.corp-btn-submit {
  width: 100%;
  background: #0f4c3a;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(15, 76, 58, 0.2);
}

.corp-btn-submit:hover {
  background: #0a351f;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(15, 76, 58, 0.25);
}

.corp-form-footer-note {
  font-size: 11.5px;
  color: #64748b;
  text-align: center;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* --- DOCUMENT ENCLOSURES CHECKLIST (RURAL ADMISSIONS) --- */
.corp-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.corp-checklist-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s;
}

.corp-checklist-item:hover {
  border-color: #cbd5e1;
}

.corp-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.corp-checklist-text {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
}

.corp-support-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0f4c3a;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
}

.corp-support-box strong {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #0f172a;
  display: block;
}

.corp-support-box p {
  font-size: 12.5px;
  color: #475569;
  margin: 0.25rem 0 0;
  line-height: 1.5;
}

/* --- 2. CORPORATE SPONSORSHIP TIERS --- */
.corp-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2rem;
}

.corp-tier-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.85rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.corp-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.corp-tier-card.featured {
  border: 2px solid #d97706;
  box-shadow: 0 10px 30px -4px rgba(217, 119, 6, 0.15);
}

.corp-tier-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -4px rgba(217, 119, 6, 0.22);
}

.corp-tier-top-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #d97706;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.35);
  white-space: nowrap;
}

.corp-tier-header {
  margin-bottom: 1.25rem;
}

.corp-tier-title {
  font-family: var(--font-sans);
  font-size: 1.15rem; /* ~18px */
  font-weight: 700;
  color: #0f172a;
  margin: 0.65rem 0 0.25rem;
}

.corp-tier-desc {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  min-height: 38px;
}

.corp-tier-price-box {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  padding: 1rem 1.15rem;
  margin: 1.15rem 0 1.25rem;
  text-align: left;
}

.corp-tier-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.corp-tier-currency {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f4c3a;
}

.corp-tier-card.featured .corp-tier-currency {
  color: #b45309;
}

.corp-tier-amount {
  font-family: var(--font-sans);
  font-size: 2rem; /* 32px, crisp */
  font-weight: 800;
  color: #0f4c3a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.corp-tier-card.featured .corp-tier-amount {
  color: #b45309;
}

.corp-tier-period {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.corp-tier-fx {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  margin-top: 0.35rem;
  display: block;
}

.corp-tier-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.corp-tier-check-item {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: #334155;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.corp-tier-check-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #059669;
}

.corp-tier-cta-box {
  margin-top: auto;
}

.corp-tier-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.corp-tier-btn-primary {
  background: #0f4c3a;
  color: #ffffff;
  border: 1px solid #0f4c3a;
}

.corp-tier-btn-primary:hover {
  background: #0a351f;
  color: #ffffff;
  transform: translateY(-1px);
}

.corp-tier-btn-gold {
  background: #d97706;
  color: #ffffff;
  border: 1px solid #d97706;
}

.corp-tier-btn-gold:hover {
  background: #b45309;
  color: #ffffff;
  transform: translateY(-1px);
}

.corp-tier-btn-outline {
  background: #ffffff;
  color: #0f4c3a;
  border: 1px solid #cbd5e1;
}

.corp-tier-btn-outline:hover {
  background: #f8fafc;
  border-color: #0f4c3a;
  color: #0f4c3a;
  transform: translateY(-1px);
}

.corp-tier-tax-note {
  font-size: 11px;
  color: #64748b;
  text-align: center;
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* --- 3. CORPORATE BANK TRANSFER CARD --- */
.corp-bank-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  position: relative;
}

.corp-bank-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.corp-bank-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.corp-bank-subtitle {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

.corp-bank-table {
  display: flex;
  flex-direction: column;
}

.corp-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-family: var(--font-sans);
}

.corp-bank-row:last-child {
  border-bottom: none;
  padding-bottom: 0.25rem;
}

.corp-bank-key {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.corp-bank-val {
  font-size: 13.5px;
  font-weight: 600;
  color: #0f172a;
  text-align: right;
  line-height: 1.35;
}

.corp-bank-val a {
  color: #0f4c3a;
  text-decoration: none;
}

.corp-bank-val a:hover {
  text-decoration: underline;
}

.corp-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.corp-compliance-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0f4c3a;
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1.25rem;
}

.corp-compliance-card strong {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  display: block;
  margin-bottom: 0.35rem;
}

.corp-compliance-card p {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Footer Brand Crest High-Contrast Styles */
.bvm-footer .bvm-hanging-crest-box {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 10px !important;
  padding: 0.65rem 1rem !important;
  display: inline-flex !important;
  box-shadow: none !important;
  transform: none !important;
}

.bvm-footer .bvm-crest-main-title {
  color: #ffffff !important;
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

.bvm-footer .bvm-crest-sub-title {
  color: #fbbf24 !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
}

/* Generic Corporate Responsive Multi-Column Grids */
.corp-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.corp-quad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.corp-faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}


