/* ==========================================================================
   MIMT Foundation - Pixel-Perfect Reference UI Design System
   Theme: Midnight Sapphire (#0B192C), Royal Navy (#1E3E62), Academic Gold (#F59E0B), Clean White (#FFFFFF)
   ========================================================================== */

:root {
  --font-primary: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', var(--font-primary);

  /* Brand Colors - Exact Logo Palette (#14b6b8 Cyan Teal, #5eead4 Mint Glow, #84aa48 Brand Green) */
  --color-navy-darkest: #072627;
  --color-navy-dark: #0d383a;
  --color-navy-main: #14b6b8;
  --color-navy-light: #20c4c6;
  --color-navy-subtle: #ebf9f9;

  /* Accent Buttons Green (#84aa48) */
  --color-gold: #84aa48;
  --color-gold-bright: #95bd55;
  --color-gold-dark: #6e8e39;
  --color-gold-light: #f1f7e8;

  /* Accent Hover & Glow Mint (#5eead4) */
  --color-teal-accent: #5eead4;
  --color-teal-light: #e0fbf7;
  --color-cyan-bright: #5eead4;

  /* Backgrounds & Neutrals */
  --color-bg-body: #FFFFFF;
  --color-bg-alt: #F4F9F9;
  --color-bg-subtle: #EBF5F5;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  /* Borders & Shadows */
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-navy: 0 10px 30px rgba(20, 182, 184, 0.25);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Layout */
  --container-max: 1260px;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--color-bg-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-body);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

.site-body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.site-main {
  flex: 1 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

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

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.45rem, 2.6vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }

p {
  color: var(--text-body);
  margin-bottom: 0.75rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-navy-main);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--color-gold-dark);
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

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

.site-main {
  flex: 1 0 auto;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--color-gold);
  color: var(--text-dark);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 20px;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gold { color: var(--color-gold) !important; }
.text-navy { color: var(--color-navy-dark) !important; }
.text-white { color: #FFFFFF !important; }
.text-muted { color: var(--text-muted) !important; }
.text-success { color: #10B981 !important; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.hide { display: none !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-navy {
  background: var(--color-navy-dark);
  color: #FFFFFF;
}

.btn-navy:hover {
  background: var(--color-navy-main);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-gold {
  background: #84aa48;
  color: #FFFFFF;
  font-weight: 700;
  border: 1px solid #73963e;
  box-shadow: 0 4px 14px rgba(132, 170, 72, 0.35);
}

.btn-gold:hover {
  background: #73963e;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(132, 170, 72, 0.45);
}

.btn-white-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-white-outline:hover {
  background: #FFFFFF;
  color: var(--color-navy-dark);
}

.btn-outline-navy {
  background: transparent;
  color: var(--color-navy-main);
  border: 1.5px solid var(--color-navy-main);
}

.btn-outline-navy:hover {
  background: var(--color-navy-main);
  color: #FFFFFF;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.85rem 1.85rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */

.top-announcement-bar {
  background: var(--color-navy-darkest);
  color: #FFFFFF;
  padding: 0.45rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-text {
  color: #FEF3C7;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   MAIN TOP HEADER WITH 3-COLUMN LAYOUT
   ========================================================================== */

.main-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
}

.header-3col-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .header-3col-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.75rem;
  }
}

/* Logo (Aligned to Left) */
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 0;
  padding-left: 0;
}

.logo-flower-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-navy-main) 0%, var(--color-navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-bright);
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(11, 25, 44, 0.2);
  flex-shrink: 0;
}

.logo-img-custom {
  max-height: 52px;
  height: auto;
  width: auto;
  max-width: 260px;
  border-radius: 6px;
  object-fit: contain;
  display: block;
}

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

.logo-main-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy-dark);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.logo-sub-text {
  font-size: 0.7rem;
  color: var(--color-gold-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 0.05rem;
}

/* Search Bar (Reference 1 Style - Pill with Darker Border & Right Inner Icon) */
.header-search-wrapper {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .header-search-wrapper {
    display: block;
  }
}

.header-search-form {
  display: flex;
  align-items: center;
  background: #F3F4F6;
  border: 1.5px solid #94A3B8;
  border-radius: var(--radius-full);
  padding: 0.38rem 0.6rem 0.38rem 1.25rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.header-search-form:focus-within {
  border-color: var(--color-navy-main);
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.15);
  background: #FFFFFF;
}

.header-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  color: var(--text-dark);
  outline: none;
}

.header-search-input::placeholder {
  color: #64748B;
  font-size: 0.85rem;
}

.search-submit-icon-btn {
  background: transparent;
  color: #475569;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  border-radius: 50%;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.search-submit-icon-btn:hover {
  color: var(--color-navy-main);
  transform: scale(1.1);
}

/* Autocomplete Dropdown */
.search-autocomplete-dropdown {
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 280px;
  overflow-y: auto;
  z-index: 200;
  padding: 0.5rem 0;
}

.search-item-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-subtle);
}

.search-item-link:hover {
  background: var(--color-navy-subtle);
  color: var(--color-navy-main);
}

/* Right Action Buttons (Reference 1 Style) */
.header-action-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-left: auto;
}

.btn-header-action {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
}

.btn-header-apply {
  background: #84aa48;
  color: #FFFFFF;
  border: 1.5px solid #6e8e39;
  box-shadow: 0 2px 10px rgba(132, 170, 72, 0.3);
  font-weight: 800;
}

.btn-header-apply:hover {
  background: #73963e;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(132, 170, 72, 0.45);
}

.btn-header-login {
  background: #FFFFFF;
  color: var(--color-navy-main);
  border: 1.5px solid var(--color-navy-main);
  display: none;
}

@media (min-width: 992px) {
  .btn-header-login {
    display: inline-flex;
  }
}

.btn-header-login:hover {
  background: var(--color-navy-main);
  color: #FFFFFF;
  border-color: var(--color-navy-main);
}

.btn-header-support {
  background: #FFFFFF;
  color: var(--color-navy-main);
  border: 1.5px solid var(--color-navy-main);
  display: none;
}

@media (min-width: 640px) {
  .btn-header-support {
    display: inline-flex;
  }
}

.btn-header-support:hover {
  background: var(--color-navy-main);
  color: #FFFFFF;
  border-color: var(--color-navy-main);
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background: var(--color-navy-dark);
  border-radius: 2px;
}

/* Sub-Nav Category Ribbon */
.sub-nav-ribbon {
  background: #FFFFFF;
  border-bottom: 1px solid #DDE3ED;
  position: sticky;
  top: 90px;
  z-index: 99;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: none;
}

@media (min-width: 992px) {
  .sub-nav-ribbon {
    display: block;
  }
}

.sub-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 2.5rem;
  margin: 0;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.sub-nav-list::-webkit-scrollbar {
  display: none;
}

.sub-nav-link {
  font-family: var(--font-primary);
  font-size: 0.93rem;
  font-weight: 600;
  color: #4B5563;
  position: relative;
  padding: 0.95rem 1.15rem;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  background: transparent;
  transition: color 0.15s ease;
}

/* Gold underline ONLY via ::after — no box */
.sub-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.15rem;
  right: 1.15rem;
  height: 3px;
  background: var(--color-teal-accent);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.sub-nav-link:hover {
  color: var(--color-navy-main);
  font-weight: 700;
  background: transparent;
}

.sub-nav-link:hover::after {
  transform: scaleX(0.65);
  opacity: 0.5;
}

.sub-nav-link.active {
  color: var(--color-navy-main);
  font-weight: 800;
  background: transparent;
}

.sub-nav-link.active::after {
  transform: scaleX(1);
  opacity: 1;
}


/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility var(--transition-normal);
}

.mobile-drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.mobile-drawer.open .drawer-overlay {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #FFFFFF;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-close {
  background: transparent;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

.drawer-body {
  padding: 1.25rem;
  overflow-y: auto;
}

.mobile-nav-list li {
  margin-bottom: 0.4rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.6rem 0.5rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-subtle);
}

/* ==========================================================================
   SECTION 1: SPLIT HIGH-IMPACT HERO (THE WORLD'S DIGITAL CAMPUS)
   ========================================================================== */

/* ==========================================================================
/* ==========================================================================
   SECTION 1: FULL-BLEED HERO (CLEAN WHITE THEME WITH RIGHT PORTAL)
   ========================================================================== */

.hero-world-section {
  background-color: #0c4347;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 3rem 0 3.85rem 0;
}

@media (min-width: 992px) {
  .hero-world-section {
    min-height: 550px;
    padding: 3.5rem 0 4.25rem 0;
    background-position: right center;
    background-size: cover;
  }
}

@media (min-width: 1400px) {
  .hero-world-section {
    min-height: 570px;
    background-position: right center;
  }
}

.hero-content-layer {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-left-column {
  max-width: 490px;
  padding-top: 1.25rem;
}

.hero-welcome-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #B2F5EA;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.hero-world-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.hero-world-sub {
  font-size: 0.78rem;
  color: #E2E8F0;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 460px;
  font-weight: 400;
}

/* 4 Mini Cards in Hero (Shifted down below paragraph with generous breathing room) */
.hero-mini-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 0.5rem;
  margin-bottom: 2.4rem;
  max-width: 490px;
}

@media (min-width: 540px) {
  .hero-mini-cards-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-mini-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.7rem 0.35rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-decoration: none;
}

.hero-mini-card:hover {
  transform: translateY(-3px);
  background: #FFFFFF;
  border-color: #14b6b8;
  box-shadow: 0 8px 20px rgba(20, 182, 184, 0.3);
}

.mini-card-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #EBF9F9;
  border: 1px solid #CCF2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.3rem;
  color: #14b6b8;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.hero-mini-card:hover .mini-card-icon {
  background: #14b6b8;
  border-color: #14b6b8;
  color: #FFFFFF;
  transform: scale(1.06);
}

.mini-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.hero-mini-card:hover .mini-card-label {
  color: #008080;
}

/* Hero Action Buttons - Side by Side (Positioned lower down with clean spacing) */
.hero-cta-buttons-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-hero-primary {
  background: #84AA48;
  color: #FFFFFF;
  border: 1.5px solid #84AA48;
  border-radius: var(--radius-full);
  padding: 0.55rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 3px 12px rgba(132, 170, 72, 0.28);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-primary:hover {
  background: #6E9136;
  border-color: #6E9136;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(110, 145, 54, 0.45);
}

.btn-hero-secondary {
  background: #FFFFFF;
  color: #0284C7;
  border: 1.5px solid #38BDF8;
  border-radius: var(--radius-full);
  padding: 0.55rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 3px 12px rgba(2, 132, 199, 0.12);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-secondary:hover {
  background: #0284C7;
  border-color: #0284C7;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

/* ==========================================================================
   SECTION 2: STATS COUNTER BAR (4 BOXES MATCHING REFERENCE WITH VIBRANT CYAN HOVER)
   ========================================================================== */

.stats-bar-floating-section {
  margin-top: 0;
  position: relative;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 0;
}

.stats-ribbon-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .stats-ribbon-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .stats-ribbon-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-clean-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.6rem 1.5rem;
  background: #FFFFFF;
  border-right: 1px solid #E2E8F0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

@media (min-width: 992px) {
  .stat-clean-box:last-child {
    border-right: none;
  }
}

/* Vibrant UI Theme Hover (Matches Logo #14b6b8 - No Dark Color) */
.stat-clean-box:hover {
  background: #14b6b8;
  border-color: #14b6b8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(20, 182, 184, 0.3);
  z-index: 2;
}

.stat-circle-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #ebf9f9;
  border: 2px solid #b2ecec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14b6b8;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stat-clean-box:hover .stat-circle-icon {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #14b6b8;
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.stat-prefix-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 0.2rem;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.stat-clean-box:hover .stat-prefix-label {
  color: #FFFFFF;
}

.stat-main-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.05;
  border-bottom: 2.5px solid #84aa48;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.stat-clean-box:hover .stat-main-number {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}

.stat-suffix-label {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 600;
  margin-top: 0.15rem;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.stat-clean-box:hover .stat-suffix-label {
  color: #f0fdfa;
}

/* ==========================================================================
   SECTION 3: AVAILABLE COURSES GRID (MODERN VISUAL CARD DESIGN)
   ========================================================================== */

.available-courses-section {
  padding: 4.5rem 0 5rem 0;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.available-courses-header {
  text-align: center;
  margin-bottom: 3rem;
}

.available-courses-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: #0D383A;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.available-courses-subtitle {
  font-size: 0.98rem;
  color: #64748B;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
  font-weight: 500;
}

.available-courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
}

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

@media (max-width: 768px) {
  .available-courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

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

.available-course-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
  cursor: pointer;
}

.available-course-card:hover {
  transform: translateY(-6px);
  border-color: #14B6B8;
  box-shadow: 0 16px 36px rgba(13, 56, 58, 0.14);
}

.available-course-cover-wrap {
  width: 100%;
  height: 155px;
  position: relative;
  overflow: hidden;
  background: #07152B;
}

.available-course-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.available-course-card:hover .available-course-cover-img {
  transform: scale(1.08);
}

.available-course-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 43, 0.3) 0%, transparent 60%);
}

.available-course-content {
  padding: 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.available-course-name {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 0.35rem 0;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.available-course-card:hover .available-course-name {
  color: #0D383A;
}

.available-course-desc {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.45;
  margin: 0 0 1rem 0;
  flex-grow: 1;
}

.available-course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid #F1F5F9;
  color: #0D9488;
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.available-course-card:hover .available-course-footer {
  color: #14B6B8;
}

.available-course-footer svg {
  transition: transform 0.2s ease;
}

.available-course-card:hover .available-course-footer svg {
  transform: translateX(4px);
}

/* ==========================================================================
   SECTION 4: CURVED GLOBAL EDUCATION CALLOUT BANNER (1:1 Reference Match)
   ========================================================================== */

.curved-callout-banner {
  background: #022421 url('../images/global-education-banner-widescreen.jpg') no-repeat right center;
  background-size: cover;
  border-radius: 20px;
  padding: 2.25rem 2.75rem 1.35rem 2.75rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(2, 36, 33, 0.25);
}

.curved-banner-content {
  max-width: 520px;
  position: relative;
  z-index: 5;
}

.curved-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.3vw, 1.85rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.curved-banner-subtitle {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.45;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.curved-banner-btn-row {
  margin-bottom: 1.85rem;
}

.btn-global-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #84aa48;
  color: #FFFFFF;
  border: 1.5px solid #6e8e39;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.6rem 1.65rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(132, 170, 72, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-global-explore:hover {
  background: #73963e;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(115, 150, 62, 0.5);
}

/* Bottom Features Row matching Reference Image 1 */
.curved-banner-features-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 0.5rem;
  position: relative;
  z-index: 5;
}

.banner-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.banner-feature-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .curved-callout-banner {
    padding: 1.75rem 1.25rem 1.25rem 1.25rem;
    background-position: center right;
  }
  .curved-banner-btn-row {
    margin-bottom: 1.5rem;
  }
  .curved-banner-features-row {
    gap: 0.85rem 1rem;
  }
}

/* ==========================================================================
   SECTION 5: ACCREDITATIONS BAR (SMOOTH INFINITE AUTO-SCROLL CAROUSEL)
   ========================================================================== */

.accreditations-ticker-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0.75rem 0 1.75rem 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.accreditations-ticker-track {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  width: max-content;
  animation: accMarquee 26s linear infinite;
  will-change: transform;
}

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

@keyframes accMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

.acc-white-box {
  flex: 0 0 290px;
  width: 290px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 22px;
  padding: 1.75rem 1.35rem 1.6rem 1.35rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
  cursor: pointer;
}

.acc-white-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 42px rgba(13, 56, 58, 0.16), 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: #0D383A;
}

.acc-icon-badge-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.acc-svg-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F1F5F9;
  border: 1.5px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.acc-white-box:hover .acc-svg-icon-circle {
  background: #E6F4F4;
  border-color: #14B6B8;
  transform: scale(1.08);
}

.acc-logo-img {
  max-height: 42px;
  max-width: 90px;
  object-fit: contain;
}

.acc-badge-bold {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #0D383A;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: color 0.25s ease;
}

.acc-white-box:hover .acc-badge-bold {
  color: #14B6B8;
}

.acc-title-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.acc-white-box:hover .acc-title-text {
  color: #0D383A;
}

.acc-desc-text {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.45;
  font-weight: 500;
}

/* ==========================================================================
   SECTION 6: WHY CHOOSE US? MIMT FOUNDATION (CENTERPIECE SHOWCASE)
   ========================================================================== */

.why-choose-us-section {
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 4.5rem 0;
  position: relative;
}

.why-choose-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  font-weight: 900;
  color: #0F172A;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.why-choose-subtitle {
  font-size: 0.96rem;
  color: #64748B;
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
}

.why-choose-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}

@media (min-width: 992px) {
  .why-choose-showcase-grid {
    grid-template-columns: 1.18fr 0.95fr 1.18fr;
    gap: 1.75rem;
  }
}

.why-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-feature-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 1.35rem 1.45rem;
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
  position: relative;
}

.why-feature-card:hover {
  transform: translateY(-6px);
  border-color: #CBD5E1;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16), 0 8px 18px rgba(0, 0, 0, 0.06);
}

.why-card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.why-feature-card:hover .why-card-icon-box {
  transform: scale(1.1);
}

.why-card-text {
  flex-grow: 1;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
  margin-bottom: 0.35rem;
  transition: color 0.2s ease;
}

.why-feature-card:hover .why-card-title {
  color: #0D383A;
}

.why-card-desc {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.48;
  font-weight: 500;
  margin: 0;
}

/* Center Logo Medallion */
.why-center-medallion-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.why-logo-circle-medallion {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 10px solid #FFFFFF;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14), 0 4px 16px rgba(0, 0, 0, 0.04), inset 0 0 18px rgba(13, 56, 58, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.85rem;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-logo-circle-medallion:hover {
  transform: scale(1.03);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.2);
}

.why-medallion-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: logoPulseGently 3.5s ease-in-out infinite;
}

@keyframes logoPulseGently {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.09);
  }
}

/* ==========================================================================
   SECTION 8: APPROVED ONLINE & DISTANCE EDUCATION UNIVERSITIES
   ========================================================================== */

.approved-universities-section {
  padding: 4.5rem 0 4.5rem 0;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  overflow: hidden;
}

.uni-marquee-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.uni-marquee-sub {
  font-size: 0.95rem;
  color: #64748B;
  font-weight: 500;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
}

.universities-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0 2rem 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.universities-marquee-track {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  width: max-content;
  animation: uniMarquee 34s linear infinite;
  will-change: transform;
}

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

@keyframes uniMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

.uni-card-box {
  flex: 0 0 245px;
  width: 245px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 1.4rem 1.2rem 1.3rem 1.2rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12), 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
  cursor: pointer;
}

.uni-card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.22), 0 8px 18px rgba(0, 0, 0, 0.08);
  border-color: #CBD5E1;
}

.uni-logo-box {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  border-radius: 12px;
  padding: 0.5rem;
  transition: background 0.2s ease;
}

.uni-card-box:hover .uni-logo-box {
  background: #FFFFFF;
}

.uni-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.uni-placeholder-logo {
  font-weight: 800;
  font-size: 0.8rem;
  color: #0D383A;
  font-family: var(--font-heading);
}

.uni-courses-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  background: #F0FDF4;
  border: 1px solid #DCFCE7;
  color: #166534;
  font-weight: 800;
  font-size: 0.78rem;
  border-radius: 9999px;
}

.uni-name-text {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
  margin: 0;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.uni-card-box:hover .uni-name-text {
  color: #0D383A;
}

/* ==========================================================================
   SECTION 9: ALUMNI SUCCESS STORIES SHOWCASE (AUTO-SCROLLING MARQUEE)
   ========================================================================== */

.alumni-success-section {
  padding: 4.5rem 0 5rem 0;
  background: #022421;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.alumni-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}

.alumni-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.7vw, 2.35rem);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.alumni-sub-heading {
  font-size: 0.95rem;
  color: #CBD5E1;
  font-weight: 500;
  max-width: 620px;
  margin: 0;
}

.testimonial-carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0D383A;
  border: 1.5px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-nav-btn:hover {
  background: #14B6B8;
  border-color: #14B6B8;
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(20, 182, 184, 0.5);
}

.testimonial-slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0 1.5rem 0;
}

.testimonial-cards-track {
  display: flex;
  flex-direction: row;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.testimonial-cards-track::-webkit-scrollbar {
  display: none;
}

.testimonial-poster-card {
  flex: 0 0 calc(33.333% - 1.2rem);
  min-width: 290px;
  max-width: 360px;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
}

.testimonial-poster-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}

.testimonial-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .testimonial-poster-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 640px) {
  .testimonial-poster-card {
    flex: 0 0 90%;
  }
}

/* ==========================================================================
   SECTION 9: CAMPUS LIFE MOSAIC GRID
   ========================================================================== */

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

@media (min-width: 768px) {
  .campus-mosaic-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mosaic-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  background: linear-gradient(135deg, var(--color-navy-main) 0%, var(--color-navy-dark) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #FFFFFF;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.mosaic-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(20, 182, 184, 0.25);
}

.mosaic-item-caption {
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  transition: color var(--transition-fast);
}

.mosaic-item:hover .mosaic-item-caption {
  color: var(--color-teal-accent);
}

/* ==========================================================================
   SECTION 10: KNOWLEDGE HUB / BLOG CARDS
   ========================================================================== */

.knowledge-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .knowledge-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .knowledge-hub-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-item-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-fast);
}

.blog-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(20, 182, 184, 0.15);
  border-color: var(--color-navy-main);
}

.blog-thumb-header {
  height: 130px;
  background: linear-gradient(135deg, var(--color-navy-main) 0%, var(--color-navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-item-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-navy-main);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.blog-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.blog-item-card:hover .blog-card-title {
  color: var(--color-navy-main);
}

.blog-card-excerpt {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* ==========================================================================
   SECTION 11: 2-COLUMN FAQ & LEAD CALLBACK FORM
   ========================================================================== */

.faq-lead-split-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 920px) {
  .faq-lead-split-row {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.faq-accordion-box {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item-white,
.faq-item-card {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  overflow: visible;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-btn-trigger {
  width: 100%;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading, var(--font-primary));
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-body-collapse {
  padding: 0 1.25rem 1.25rem 1.25rem;
  overflow: visible;
}

.lead-callback-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.form-clean-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
  outline: none;
}

.form-clean-input:focus {
  border-color: var(--color-navy-main);
}

.form-clean-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  resize: vertical;
  outline: none;
}

/* ==========================================================================
   SECTION 12: RICH FOREST TEAL FOOTER
   ========================================================================== */

.site-footer-sapphire {
  background: #022421;
  color: #CBD5E1;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
  border-top: 4px solid var(--color-teal-accent);
}

.footer-social-header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.footer-social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-icon-btn:hover {
  background: #14B6B8;
  border-color: #14B6B8;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(20, 182, 184, 0.4);
}

.footer-sapphire-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-sapphire-grid {
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
  }
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.footer-desc-p {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.6;
}

.footer-title-h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-links-list li {
  margin-bottom: 0.5rem;
}

.footer-links-list a {
  color: #CBD5E1;
  font-size: 0.85rem;
}

.footer-links-list a:hover {
  color: var(--color-cyan-bright);
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #64748B;
}

@media (min-width: 640px) {
  .footer-bottom-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Floating WhatsApp Quick Connect */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform var(--transition-normal);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  color: #FFFFFF;
}

/* Admin Dashboard Specific Styles */
.admin-tab-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.admin-tab-btn {
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.admin-tab-btn.active {
  color: var(--color-navy-dark);
  border-bottom-color: var(--color-navy-main);
}

.admin-form-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   SECTION 2: FULL-WIDTH STATS RIBBON (EXACT AMITY 1:1 REPLICATION - TEAL THEME)
   ========================================================================== */

.stats-bar-fullwidth-section {
  width: 100%;
  background: #FFFFFF;
  border-top: 1.5px solid #CBD5E1;
  border-bottom: 1.5px solid #CBD5E1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 10;
}

.stats-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
  background: #FFFFFF;
}

.stat-clean-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem 1.35rem;
  border-right: 1.5px solid #CBD5E1;
  background: #FFFFFF;
  cursor: pointer;
  min-height: 100px;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.stat-clean-box:first-child {
  border-left: 1.5px solid #CBD5E1;
}

.stat-clean-box:last-child {
  border-right: 1.5px solid #CBD5E1;
}

.stat-circle-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #ebf9f9;
  border: 2px solid #b2ecec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-main);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.stat-text-block {
  display: flex;
  flex-direction: column;
}

.stat-prefix-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.15rem;
  transition: color 0.3s ease;
}

.stat-main-number-wrap {
  display: inline-flex;
  align-items: baseline;
}

.stat-main-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.05;
  letter-spacing: -0.01em;
  padding-bottom: 2px;
  border-bottom: 2.5px solid #84aa48;
  transition: all 0.3s ease;
}

.stat-suffix-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.2;
  margin-top: 0.15rem;
  transition: color 0.3s ease;
}

/* Hover State - Exact Flush Full Column Vibrant Cyan #14b6b8 (No Dark Color) */
.stat-clean-box:hover {
  background: #14b6b8;
  border-color: #14b6b8;
}

.stat-clean-box:hover .stat-prefix-label {
  color: #FFFFFF;
}

.stat-clean-box:hover .stat-main-number {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}

.stat-clean-box:hover .stat-suffix-label {
  color: #f0fdfa;
}

.stat-clean-box:hover .stat-circle-icon {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #14b6b8;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) {
  .stats-ribbon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-clean-box:nth-child(2) {
    border-right: none;
  }
  .stat-clean-box:nth-child(1),
  .stat-clean-box:nth-child(2) {
    border-bottom: 1px solid #E2E8F0;
  }
}

@media (max-width: 640px) {
  .stats-ribbon-grid {
    grid-template-columns: 1fr;
  }
  .stat-clean-box {
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
    justify-content: flex-start;
    padding: 1.5rem 1.5rem;
  }
  .stat-clean-box:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   SECTION 14: TWO-COLUMN FAQ & EXPERT CONSULTATION CARD
   ========================================================================== */

.faq-section-wrapper {
  background: #F8FAFC;
}

.faq-lead-split-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 960px) {
  .faq-lead-split-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.faq-accordion-box {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  overflow: visible;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-card.active,
.faq-item-card:hover {
  border-color: #14B6B8;
  box-shadow: 0 6px 18px rgba(13, 56, 58, 0.08);
}

.faq-btn-trigger {
  width: 100%;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-q-text {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 750;
  color: #0D383A;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-item-card.active .faq-q-text {
  color: #0D383A;
}

.faq-icon-arrow {
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item-card.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: #14B6B8;
}

.faq-body-collapse {
  padding: 0 1.25rem 1.25rem 1.25rem;
  overflow: visible;
}

.faq-a-text {
  font-size: 0.95rem;
  line-height: 1.68;
  color: #475569;
  margin: 0;
  white-space: normal;
  word-break: normal;
}

.lead-callback-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.form-clean-input,
.form-clean-textarea {
  width: 100%;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #0F172A;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-clean-input:focus,
.form-clean-textarea:focus {
  border-color: #14B6B8;
  box-shadow: 0 0 0 3px rgba(20, 182, 184, 0.15);
}

.form-clean-textarea {
  resize: vertical;
  min-height: 80px;
}

/* ==========================================================================
   SECTION 13: STUDENTS FEEDBACK (GRAPHIC CARDS SLIDER)
   ========================================================================== */

.feedback-showcase-section {
  background: #FFFFFF;
  position: relative;
}

.feedback-carousel-container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 45px;
}

.feedback-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D383A;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
}

.feedback-nav-prev {
  left: -8px;
}

.feedback-nav-next {
  right: -8px;
}

.feedback-nav-arrow:hover {
  background: #0D383A;
  color: #FFFFFF;
  border-color: #0D383A;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(13, 56, 58, 0.22);
}

.feedback-cards-track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0.35rem 1.25rem 0.35rem;
}

.feedback-cards-track::-webkit-scrollbar {
  display: none;
}

.feedback-graphic-card {
  flex: 0 0 calc(33.333% - 1.2rem);
  min-width: 320px;
  max-width: 380px;
  scroll-snap-align: start;
  border-radius: 22px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border: 1.5px solid #E2E8F0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feedback-graphic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13, 56, 58, 0.14);
}

.feedback-card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.feedback-card-text-fallback {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #F8FAFC;
}

.feedback-quote-icon {
  font-size: 3rem;
  color: #14B6B8;
  line-height: 1;
  font-family: Georgia, serif;
}

.feedback-quote-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
  margin: 0.75rem 0 1.5rem 0;
  flex-grow: 1;
}

.feedback-student-footer strong {
  display: block;
  font-size: 1.05rem;
  color: #0D383A;
}

.feedback-student-footer span {
  font-size: 0.82rem;
  color: #64748B;
}

.feedback-dots-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.feedback-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #CBD5E1;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.feedback-dot.active {
  background: #0D383A;
  width: 28px;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .feedback-graphic-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: 290px;
  }
  .feedback-carousel-container {
    padding: 0 35px;
  }
}

@media (max-width: 640px) {
  .feedback-graphic-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .feedback-carousel-container {
    padding: 0 25px;
  }
  .feedback-nav-arrow {
    width: 38px;
    height: 38px;
  }
}

/* ==========================================================================
   REGISTRATION PAGE UI (MODERN & PREMIUM - EXACT MOCKUP MATCH)
   ========================================================================== */

.reg-hero-section {
  background: linear-gradient(180deg, #EBF7F5 0%, #F5FBF9 100%);
  padding: 3.5rem 0 4rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 92, 83, 0.08);
}

.reg-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.reg-hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #D2F1EB;
  color: #005C53;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.reg-hero-main-title {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #0A2540;
  line-height: 1.15;
  margin-bottom: 1.15rem;
  font-family: var(--font-heading);
}

.reg-hero-main-title span {
  color: #005C53;
}

.reg-hero-description {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #475569;
  max-width: 540px;
  margin-bottom: 2rem;
}

.reg-hero-features-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  align-items: center;
}

.reg-feature-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 43, 73, 0.04);
  flex: 1;
  min-width: 0;
}

.reg-feature-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reg-feature-icon-box.icon-secure {
  background: #E6F7F4;
  color: #005C53;
}

.reg-feature-icon-box.icon-quick {
  background: #FEF3C7;
  color: #D97706;
}

.reg-feature-icon-box.icon-support {
  background: #E0E7FF;
  color: #4F46E5;
}

.reg-feature-title {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  white-space: nowrap;
}

.reg-feature-sub {
  display: block;
  font-size: 0.72rem;
  color: #64748B;
  white-space: nowrap;
}

.reg-hero-illustration-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reg-hero-student-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 92, 83, 0.08));
}

/* ==========================================================================
   MAIN CONTENT: SIDEBAR + CARDS GRID
   ========================================================================== */

.reg-main-section {
  background: #FAFDFD;
  padding: 3.5rem 0 4.5rem 0;
}

.reg-layout-grid {
  display: grid;
  grid-template-columns: 275px 1fr;
  gap: 2.25rem;
  align-items: flex-start;
}

.reg-sidebar-wrapper {
  position: sticky;
  top: 90px;
}

.reg-sidebar-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 43, 73, 0.05);
  overflow: hidden;
}

.reg-sidebar-top-header {
  background: linear-gradient(135deg, #005C53 0%, #063935 100%);
  color: #FFFFFF;
  padding: 1.35rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reg-sidebar-top-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reg-sidebar-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
}

.reg-sidebar-subtitle {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.reg-sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.15rem 1.15rem;
  margin: 0;
}

.reg-nav-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.95rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.reg-nav-btn-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.reg-nav-btn:hover {
  background: #F0FAF8;
  color: #005C53;
}

.reg-nav-btn.is-active {
  background: linear-gradient(135deg, #005C53 0%, #00453E 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 92, 83, 0.25);
}

.reg-nav-btn.is-active .reg-arrow {
  color: #FFFFFF;
  transform: translateX(3px);
}

.reg-arrow {
  color: #94A3B8;
  transition: transform 0.2s ease;
}

.reg-promo-box {
  background: linear-gradient(135deg, #E6F7F4 0%, #D4F2EC 100%);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  margin: 0 1.15rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 92, 83, 0.1);
}

.reg-promo-graphic-wrap {
  width: 100%;
  max-width: 140px;
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.reg-promo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.reg-promo-content {
  margin-bottom: 0.85rem;
}

.reg-promo-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #003D37;
  margin-bottom: 0.25rem;
}

.reg-promo-desc {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.35;
  margin: 0;
}

.reg-promo-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #005C53;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reg-promo-arrow-btn:hover {
  background: #003D37;
  transform: scale(1.1);
}

/* Header bar above cards */
.reg-cards-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.reg-cards-heading-group {
  display: flex;
  align-items: center;
}

.reg-heading-dash {
  width: 24px;
  height: 3.5px;
  border-radius: 4px;
  background: #005C53;
  margin-right: 0.75rem;
}

.reg-cards-heading {
  font-size: 1.38rem;
  font-weight: 700;
  color: #002B49;
  margin: 0;
}

.reg-sub-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #005C53;
  text-decoration: none;
  transition: color 0.2s ease;
}

.reg-sub-cta-link:hover {
  color: #003D37;
  text-decoration: underline;
}

/* 4 Cards (2x2 Grid) */
.reg-cards-2col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.reg-modern-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 18px rgba(0, 43, 73, 0.04);
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: stretch;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-height: 250px;
  position: relative;
}

.reg-modern-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 43, 73, 0.09);
  border-color: #B4E6DC;
}

.reg-modern-card.card-focused {
  border-color: #005C53;
  box-shadow: 0 12px 30px rgba(0, 92, 83, 0.15);
}

.reg-card-info-col {
  padding: 1.6rem 1rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.reg-card-character-col {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.reg-card-character-col .reg-card-img {
  width: 100%;
  height: 100%;
  max-height: 250px;
  object-fit: contain;
  object-position: center bottom;
  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.3s ease;
}

.reg-modern-card:hover .reg-card-character-col .reg-card-img {
  transform: scale(1.05);
}

.reg-card-top-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.85rem;
}

.reg-card-icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reg-card-icon-badge.badge-teal {
  background: #E6F7F4;
  color: #005C53;
}

.reg-card-icon-badge.badge-purple {
  background: #F3E8FF;
  color: #7C3AED;
}

.reg-card-icon-badge.badge-blue {
  background: #E0F2FE;
  color: #0284C7;
}

.reg-card-icon-badge.badge-amber {
  background: #FEF3C7;
  color: #D97706;
}

.reg-popular-badge {
  background: #005C53;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.7rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

.reg-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #002B49;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.reg-card-description {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #64748B;
  margin-bottom: 1.25rem;
}

.btn-reg-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: #005C53;
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.6rem 1.35rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.btn-reg-pill:hover {
  background: #00453E;
  transform: translateX(2px);
  box-shadow: 0 4px 14px rgba(0, 92, 83, 0.3);
}

/* Wide Bottom CTA Banner */
.reg-bottom-cta-banner {
  background: linear-gradient(135deg, #005C53 0%, #042F2C 100%);
  border-radius: 18px;
  color: #FFFFFF;
  padding: 2rem 2.5rem;
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 12px 30px rgba(0, 92, 83, 0.18);
  overflow: hidden;
  position: relative;
}

.reg-bottom-cta-left {
  flex: 1.15;
}

.reg-bottom-cta-right {
  flex: 0.85;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.reg-cta-cap-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

.reg-bottom-cta-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #A7E3D8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.reg-bottom-cta-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.reg-bottom-cta-sub {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.btn-reg-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: #FFFFFF;
  color: #005C53;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.6rem 1.45rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.btn-reg-cta-white:hover {
  background: #E6F7F4;
  transform: translateX(3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   MODAL ADMISSION FORM
   ========================================================================== */

.admission-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 38, 39, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admission-modal-container {
  background: #FFFFFF;
  border-radius: 24px;
  width: 100%;
  max-width: 620px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: modalPop 0.25s ease-out;
  border: 1px solid rgba(0, 92, 83, 0.1);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.admission-modal-header {
  background: linear-gradient(135deg, #005C53 0%, #0D383A 100%);
  color: #FFFFFF;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-heading-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.modal-heading-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.admission-modal-close {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.admission-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.admission-modal-body {
  padding: 2rem;
  max-height: 75vh;
  overflow-y: auto;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.text-danger {
  color: #EF4444;
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.95rem;
  border-radius: 10px;
  border: 1px solid #CBD5E1;
  font-size: 0.92rem;
  color: #0F172A;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #005C53;
  box-shadow: 0 0 0 3px rgba(0, 92, 83, 0.15);
}

.modal-form-footer {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-privacy-note {
  font-size: 0.8rem;
  color: #64748B;
  margin: 0;
  text-align: center;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .reg-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .reg-hero-pill-badge {
    margin: 0 auto 1.25rem auto;
  }
  .reg-hero-description {
    margin: 0 auto 2rem auto;
  }
  .reg-hero-features-row {
    justify-content: center;
  }
  .reg-layout-grid {
    grid-template-columns: 1fr;
  }
  .reg-sidebar-wrapper {
    position: static;
  }
  .reg-sidebar-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reg-cards-2col-grid {
    grid-template-columns: 1fr;
  }
  .reg-sidebar-nav {
    grid-template-columns: 1fr;
  }
  .modal-form-grid {
    grid-template-columns: 1fr;
  }
  .reg-bottom-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

/* =========================================================================
   REDESIGNED REGISTRATION MASTER FORM & FEE PAYMENT SECTION (Exact UI Match)
   ========================================================================= */
.reg-master-form-wrapper {
  margin-top: 3.5rem;
  margin-bottom: 3rem;
}

.reg-master-form-container {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 43, 73, 0.08);
  border: 1px solid #E2E8F0;
  overflow: hidden;
}

.reg-form-standalone-page .reg-master-form-wrapper {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.reg-form-standalone-page .reg-master-form-container {
  margin-top: 0 !important;
  border-top: none !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.reg-master-hero-header {
  background: linear-gradient(135deg, #003630 0%, #005C53 50%, #042F2C 100%);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.reg-master-hero-header::before,
.reg-master-hero-header::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  opacity: 0.08;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.reg-master-hero-header::before {
  top: 15px;
  left: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E");
}

.reg-master-hero-header::after {
  bottom: 10px;
  right: 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M22 10v6M2 10l10-5 10 5-10 5z'/%3E%3Cpath d='M6 12v5c3 3 9 3 12 0v-5'/%3E%3C/svg%3E");
}

.reg-master-main-title {
  font-family: var(--font-heading, 'Outfit', serif);
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.reg-master-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.5rem auto 0.75rem;
  max-width: 140px;
}

.reg-master-divider::before,
.reg-master-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.4);
}

.reg-master-divider-icon {
  color: #B4E6DC;
  font-size: 0.85rem;
}

.reg-master-sub-text {
  font-size: 0.95rem;
  color: #E6F7F4;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

.reg-master-form-body {
  padding: 2.5rem 2.25rem;
}

.reg-form-block-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1.5px solid #F1F5F9;
}

.reg-block-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #E6F7F4;
  color: #005C53;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reg-block-heading {
  font-size: 1.12rem;
  font-weight: 800;
  color: #005C53;
  letter-spacing: -0.01em;
  margin: 0;
}

.reg-form-row-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-bottom: 1.25rem;
}

.reg-form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-bottom: 1.25rem;
}

.reg-form-row-addr-pin {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 1.15rem;
  margin-bottom: 1.25rem;
}

.reg-form-row-1col {
  margin-bottom: 1.5rem;
}

.reg-field-group {
  display: flex;
  flex-direction: column;
}

.reg-field-label {
  font-size: 0.83rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.4rem;
}

.reg-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.reg-input-control {
  width: 100%;
  padding: 0.72rem 1rem;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 9px;
  font-size: 0.88rem;
  color: #0F172A;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.reg-input-control:focus {
  border-color: #005C53;
  box-shadow: 0 0 0 3px rgba(0, 92, 83, 0.12);
}

.reg-input-wrap.has-icon-right .reg-input-control {
  padding-right: 2.5rem;
}

.reg-input-wrap.has-icon-left .reg-input-control {
  padding-left: 2.5rem;
}

.reg-input-icon-right {
  position: absolute;
  right: 12px;
  color: #94A3B8;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reg-input-icon-left {
  position: absolute;
  left: 12px;
  color: #00828a;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Educational Details Nested Cards */
.reg-edu-card-wrap {
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.6rem 1.25rem 1.15rem;
  margin-bottom: 1.75rem;
  position: relative;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
}

.reg-edu-card-wrap:hover {
  border-color: #CBD5E1;
}

.reg-edu-badge-header {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1.5px solid #B4E6DC;
  color: #005C53;
  padding: 0.18rem 0.95rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 6px rgba(0, 92, 83, 0.06);
  white-space: nowrap;
}

.reg-edu-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.btn-reg-master-submit {
  width: 100%;
  padding: 0.95rem 2rem;
  background: #005C53;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 92, 83, 0.25);
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  margin-top: 0.5rem;
}

.btn-reg-master-submit:hover {
  background: #00453E;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 92, 83, 0.35);
}

/* =========================================================================
   FEE PAYMENT SHOWCASE SECTION
   ========================================================================= */
.reg-fee-showcase-card {
  margin-top: 3rem;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 43, 73, 0.06);
  padding: 2.75rem 2.5rem 2.25rem;
}

.reg-fee-header-group {
  text-align: center;
  margin-bottom: 2.25rem;
}

.reg-fee-main-title {
  font-family: var(--font-heading, 'Outfit', serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.reg-fee-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.4rem auto 0;
  max-width: 120px;
}

.reg-fee-divider::before,
.reg-fee-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: #CBD5E1;
}

.reg-fee-content-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.reg-fee-upi-highlight {
  font-size: 0.95rem;
  color: #1E293B;
  margin-bottom: 1.15rem;
  font-weight: 600;
}

.reg-fee-upi-num {
  color: #005C53;
  font-weight: 800;
  font-size: 1.05rem;
}

.reg-fee-bank-sub {
  font-size: 0.88rem;
  color: #475569;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.reg-fee-bank-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  margin-bottom: 1.5rem;
}

.reg-fee-bank-table tr {
  border-bottom: 1px solid #E2E8F0;
}

.reg-fee-bank-table tr:last-child {
  border-bottom: none;
}

.reg-fee-bank-table tr:nth-child(even) {
  background: #F8FAFC;
}

.reg-fee-bank-table tr:nth-child(odd) {
  background: #F0FDF4;
}

.reg-fee-bank-table td {
  padding: 0.85rem 1.15rem;
  font-size: 0.88rem;
}

.reg-fee-bank-table td:first-child {
  font-weight: 700;
  color: #334155;
  width: 42%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.reg-fee-bank-table td:last-child {
  font-weight: 800;
  color: #0F172A;
}

.reg-fee-support-note {
  font-size: 0.86rem;
  color: #64748B;
  font-weight: 600;
}

.reg-fee-support-note a {
  color: #005C53;
  font-weight: 800;
  text-decoration: none;
}

.reg-fee-support-note a:hover {
  text-decoration: underline;
}

/* Right Scan & Pay Card */
.reg-fee-qr-box {
  background: #FFFFFF;
  border: 1.5px solid #005C53;
  border-radius: 16px;
  padding: 1.6rem 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 92, 83, 0.08);
}

.reg-fee-qr-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #005C53;
  color: #FFFFFF;
  padding: 0.22rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0, 92, 83, 0.2);
}

.reg-fee-qr-brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin-top: 0.4rem;
  margin-bottom: 0.15rem;
  letter-spacing: 0.02em;
}

.reg-fee-qr-tid {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 700;
  margin-bottom: 1rem;
}

.reg-fee-qr-img-wrap {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.5rem;
  display: inline-block;
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.reg-fee-qr-img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.reg-fee-qr-scan-hint {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 0.95rem;
  line-height: 1.35;
}

.reg-fee-payment-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.6rem;
  border-top: 1px solid #F1F5F9;
}

.reg-fee-app-pill {
  height: 20px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .reg-form-row-4col, .reg-edu-grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .reg-fee-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .reg-form-standalone-page {
    padding-top: 0;
  }
  .reg-master-form-wrapper {
    padding: 0.5rem 0 2.5rem !important;
  }
  .reg-master-form-container {
    border-radius: 14px;
  }
  .reg-master-hero-header {
    padding: 2rem 1.25rem 1.75rem;
  }
  .reg-form-row-4col, .reg-edu-grid-4col, .reg-form-row-2col, .reg-form-row-addr-pin {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .reg-master-form-body {
    padding: 1.25rem 0.85rem;
  }
  .reg-fee-showcase-card {
    padding: 1.5rem 0.85rem;
    border-radius: 14px;
    margin-top: 2rem;
  }
  .reg-master-main-title {
    font-size: 1.5rem;
  }
  .reg-fee-main-title {
    font-size: 1.35rem;
  }
  .reg-fee-bank-table td {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
  }
  .reg-fee-bank-table td:first-child {
    width: 48%;
  }
  .reg-fee-qr-box {
    padding: 1.4rem 0.75rem 1rem;
  }
  .reg-fee-qr-img {
    max-width: 180px;
  }
}


