/* AmeriBridge University - Design System */
:root {
  /* Colors */
  --ab-navy: #001F3F;
  --ab-navy-2: #07142E;
  --ab-gold: #FFC72C;
  --ab-teal: #0097B2;
  --ab-bg: #F4F6FA;
  --ab-white: #FFFFFF;
  --ab-text: #111827;
  --ab-muted: #6B7280;
  --ab-border: #E5E7EB;
  --ab-soft-gold: rgba(255, 199, 44, 0.14);
  --ab-soft-teal: rgba(0, 151, 178, 0.12);
  --ab-shadow: 0 18px 50px rgba(0, 31, 63, 0.10);
  --ab-radius: 24px;
  --ab-radius-sm: 12px;
  
  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', var(--font-main);
  
  /* Spacing */
  --section-padding: clamp(40px, 8vw, 100px);
  --container-width: 1440px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
}

body {
  font-family: var(--font-main);
  background-color: var(--ab-bg);
  color: var(--ab-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

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

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  gap: 10px;
}

.btn-primary {
  background-color: var(--ab-gold);
  color: var(--ab-navy);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 199, 44, 0.3);
}

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

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

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

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(7, 20, 46, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sections */
section {
  padding: var(--section-padding) 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--ab-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  min-height: 104px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: auto;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 31, 63, 0.08);
}

.navbar .container {
  width: 100%;
  max-width: none;
  padding-left: clamp(24px, 4vw, 72px);
  padding-right: clamp(24px, 4vw, 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
}

.logo {
  height: 92px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  transition: all 0.4s ease;
}

.navbar.scrolled .logo {
  height: 72px;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  width: auto;
  height: 92px;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.navbar.scrolled .logo img {
  max-height: 72px;
}

/* Image fallback styling */
.logo img[alt] {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ab-navy);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.6vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.nav-item {
  position: relative;
  white-space: nowrap;
}

.nav-link {
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.9rem);
  color: var(--ab-navy);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

.nav-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--ab-teal);
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 280px;
  background: var(--ab-white);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 31, 63, 0.12);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 31, 63, 0.05);
  z-index: 10;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ab-navy);
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background-color: var(--ab-bg);
  color: var(--ab-teal);
  padding-left: 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

.lang-switch {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ab-navy);
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--ab-bg);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lang-switch:hover {
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
}

.nav-actions .nav-link {
  font-size: 0.85rem;
  color: var(--ab-navy);
}

.nav-actions .btn-primary {
  padding: clamp(10px, 1.2vw, 12px) clamp(16px, 1.5vw, 24px);
  font-size: clamp(0.85rem, 1vw, 0.9rem);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 199, 44, 0.2);
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--ab-navy);
  cursor: pointer;
  padding: 5px;
}

.mobile-only {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f0f4f8 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--ab-soft-teal) 0%, transparent 70%);
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--ab-soft-gold);
  color: #B8860B;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero h1 span {
  display: block;
  color: var(--ab-teal);
}

.hero p {
  font-size: 1.25rem;
  color: var(--ab-muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ab-navy);
}

.hero-badge i {
  color: var(--ab-teal);
}

.hero-visual {
  position: relative;
}

.hero-img-wrapper {
  border-radius: var(--ab-radius);
  overflow: hidden;
  box-shadow: 20px 40px 80px rgba(0, 31, 63, 0.15);
  position: relative;
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.floating-card {
  position: absolute;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--ab-shadow);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
  animation: float 4s ease-in-out infinite;
}

.card-1 { top: 10%; left: -40px; background: var(--ab-white); animation-delay: 0s; }
.card-2 { bottom: 20%; right: -30px; background: var(--ab-navy); color: white; animation-delay: 1s; }
.card-3 { bottom: -10%; left: 10%; background: var(--ab-teal); color: white; animation-delay: 2s; }

.floating-card h4 { font-size: 1.25rem; color: inherit; }
.floating-card p { font-size: 0.85rem; color: inherit; opacity: 0.9; margin: 0; }

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

/* Stats Section */
.stats {
  background: var(--ab-navy);
  padding: 40px 0;
  margin-top: -50px;
  position: relative;
  z-index: 20;
}

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

.stat-item {
  text-align: center;
  color: var(--ab-white);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--ab-gold);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* ============================================================
   English Program Launch Section — Premium Blue Design
   ============================================================ */

/* Outer wrapper: provides the page-level background context */
.english-launch {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(25, 165, 195, 0.20),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(255, 190, 35, 0.14),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #031E38 0%,
      #06385F 48%,
      #02182E 100%
    );
}

/* ---- Decorative light accents (behind content) ---- */
.english-launch::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -40px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.english-launch::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.10) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Inner wrapper — two-column layout */
.english-launch-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* ---- LEFT COLUMN ---- */
.english-launch-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding-left: calc(max(24px, (100vw - 1440px) / 2 + 24px));
  padding-right: clamp(40px, 6vw, 80px);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

/* Badge — Glassmorphism on dark */
.english-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFD05A;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: 1px solid rgba(255, 195, 38, 0.35);
  width: fit-content;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.english-launch-badge i {
  color: var(--ab-gold);
  font-size: 0.65rem;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

@media (prefers-reduced-motion: reduce) {
  .english-launch-badge i { animation: none; }
}

/* Title — White with teal highlight */
.english-launch-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  margin: 0;
}

.english-launch-highlight {
  color: #5ED5E8;
  display: block;
}

/* Subtitle — Soft white */
.english-launch-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}

/* Key Info Pills — Glass on dark */
.english-launch-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 4px 0;
}

.english-launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.english-launch-pill i {
  color: #5ED5E8;
  font-size: 0.9rem;
}

.english-launch-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(94, 213, 232, 0.4);
}

/* CTA Buttons */
.english-launch-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}

/* Primary — Gold gradient */
.english-launch-btn-primary {
  font-size: 1rem;
  padding: 15px 32px;
  background: linear-gradient(135deg, #FFD044 0%, #F7B313 100%);
  color: var(--ab-navy);
  border: none;
  box-shadow: 0 14px 34px rgba(255, 184, 0, 0.28);
  letter-spacing: 0.2px;
  font-weight: 700;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.english-launch-btn-primary:hover {
  box-shadow: 0 18px 42px rgba(255, 184, 0, 0.38);
  transform: translateY(-3px);
}

.english-launch-btn-primary:focus-visible {
  outline: 2px solid var(--ab-gold);
  outline-offset: 3px;
}

/* Secondary — Translucent white */
.english-launch-btn-secondary {
  font-size: 1rem;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.english-launch-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.40);
  color: #FFFFFF;
}

.english-launch-btn-secondary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

/* Clarity note — Translucent on dark */
.english-launch-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  border-left: 3px solid rgba(255, 255, 255, 0.18);
  padding-left: 12px;
}

/* ---- RIGHT COLUMN ---- */
.english-launch-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: calc(max(24px, (100vw - 1440px) / 2 + 24px));
}

.english-launch-img-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--ab-radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.english-launch-img-wrap::after {
  display: none;
}

.english-launch-img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Removed hover transform to keep it like a hero background */

/* Floating intake badge on image — inverted for dark section */
.english-launch-floating-badge {
  position: absolute;
  bottom: 32px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ab-navy);
  border-radius: 14px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.2px;
  white-space: nowrap;
  z-index: 5; /* Above the ::after gradient overlay */
}

.english-launch-floating-badge i {
  color: #F7B313;
  font-size: 0.8rem;
}

/* ---- RESPONSIVE ---- */

/* Tablet: two columns if space allows */
@media (max-width: 1024px) {
  .english-launch-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

@media (max-width: 820px) {
  .english-launch-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .english-launch-content {
    order: 1;
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
    padding-top: clamp(48px, 6vw, 80px);
    padding-bottom: clamp(32px, 6vw, 60px);
  }

  .english-launch-visual {
    order: 2;
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
    padding-bottom: clamp(32px, 6vw, 60px);
  }

  .english-launch-img-wrap {
    border-radius: var(--ab-radius);
  }

  .english-launch-img-wrap::after {
    display: none;
  }

  .english-launch-img {
    border-radius: var(--ab-radius);
    aspect-ratio: 16 / 9;
    object-position: center;
  }

  .english-launch-floating-badge {
    left: 16px;
    bottom: 16px;
  }

  .english-launch-title {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
  }
}

@media (max-width: 600px) {
  .english-launch-content {
    padding-top: clamp(40px, 8vw, 60px);
    padding-bottom: clamp(24px, 5vw, 40px);
    padding-left: 20px;
    padding-right: 20px;
  }

  .english-launch-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .english-launch-ctas .btn {
    text-align: center;
    width: 100%;
  }

  .english-launch-pills {
    gap: 8px;
  }

  .english-launch-pill {
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .english-launch-floating-badge {
    font-size: 0.8rem;
    padding: 10px 14px;
    left: 10px;
    bottom: 12px;
  }
}


/* Why Section */
.why-grid {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

.why-card {
  background: var(--ab-white);
  padding: 32px;
  border-radius: var(--ab-radius);
  border: 1px solid var(--ab-border);
  transition: all 0.3s ease;
  opacity: 1 !important; /* Force visibility */
  transform: none !important; /* Reset any stuck animations */
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--ab-shadow);
  border-color: var(--ab-teal);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.why-card h3 { margin-bottom: 15px; }
.why-card p { color: var(--ab-muted); }

/* Programs Section */
.programs {
  background: #f8fafc;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}

/* Reset previous centering */
.program-card:nth-child(4) {
  grid-column: auto;
}

@media (max-width: 1024px) {
  .program-grid { gap: 32px; }
}

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

@media (max-width: 1200px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card:nth-child(4) { grid-column: auto; }
}

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

.program-card {
  background: var(--ab-white);
  border-radius: var(--ab-radius);
  overflow: hidden;
  border: 1px solid var(--ab-border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  opacity: 1 !important;
}

.program-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background-color: var(--ab-navy);
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  font-size: 0;
  transition: transform 0.6s ease;
}

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

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

.program-header {
  padding: 30px;
  background: linear-gradient(135deg, rgba(0,31,63,0.95) 0%, rgba(0,68,100,0.9) 55%, rgba(0,151,178,0.85) 100%);
  color: var(--ab-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.program-header h3 {
  color: var(--ab-white);
}

.program-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--ab-white);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.program-card h3 { font-size: 1.5rem; margin-bottom: 10px; }

.program-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.program-meta i {
  color: var(--ab-gold);
}

.program-content {
  padding: 30px;
  flex-grow: 1;
}

.program-content p {
  color: var(--ab-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.program-footer {
  padding: 20px 30px 30px;
  display: flex;
  gap: 15px;
}

/* Certificates */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

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

.cert-card {
  background: var(--ab-white);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--ab-border);
  transition: all 0.3s ease;
  opacity: 1 !important;
}

.cert-card:hover {
  border-color: var(--ab-gold);
  background: #fffcf0;
}

.cert-code {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ab-muted);
  margin-bottom: 8px;
}

.cert-card h4 { font-size: 1.1rem; margin-bottom: 15px; }

.cert-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--ab-muted);
  margin-bottom: 20px;
}

.cert-info span { display: flex; align-items: center; gap: 5px; }

/* LMS Experience Redesign */
.lms {
  background: var(--ab-bg);
  padding: var(--section-padding) 0;
}

.lms-wrapper {
  background: linear-gradient(180deg, #001F3F 0%, #050E1D 100%);
  position: relative;
  border-radius: 40px;
  padding: 80px 60px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 31, 63, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Diffuse Turquoise Glow at top */
.lms-wrapper::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.15) 0%, rgba(0, 151, 178, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

.lms .section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.lms .section-title h2 {
  color: var(--ab-white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.lms .section-title p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.6;
}

.lms-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lms-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lms-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.lms-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
  border-color: var(--ab-teal);
}

.lms-feature i {
  width: 44px;
  height: 44px;
  background: var(--ab-gold);
  color: var(--ab-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 199, 44, 0.3);
}

.lms-feature h4 {
  color: var(--ab-white) !important;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.lms-mockup img {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

@media (max-width: 1100px) {
  .lms-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .lms-wrapper { padding: 60px 40px; }
  .lms-mockup img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .lms-wrapper {
    border-radius: 24px;
    padding: 40px 20px;
  }
  .lms .section-title h2 { font-size: 1.8rem; }
  .lms-mockup img {
    height: 300px;
  }
}

/* Timeline */
.timeline {
  position: relative;
  padding: 60px 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-number {
  width: 50px;
  height: 50px;
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 800;
  font-size: 1.2rem;
  border: 2px solid var(--ab-teal);
}

.timeline-item h4 { font-size: 0.95rem; margin-bottom: 0; }

/* Calendar */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.calendar-card {
  background: var(--ab-white);
  padding: 30px;
  border-radius: var(--ab-radius);
  border-left: 5px solid var(--ab-navy);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.calendar-card h3 { color: var(--ab-teal); margin-bottom: 10px; }
.calendar-card p { font-weight: 700; font-size: 1.1rem; margin-bottom: 0; }

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--ab-white);
  border-radius: var(--ab-radius-sm);
  margin-bottom: 15px;
  border: 1px solid var(--ab-border);
  overflow: hidden;
}

.faq-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-question:hover { background: #fafafa; }

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0, 1, 0, 1);
  color: var(--ab-muted);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 30px 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Footer */
footer {
  background: var(--ab-navy-2);
  color: var(--ab-white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: inline-block;
  height: 110px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 100%;
  width: auto;
  max-height: 110px;
  object-fit: contain;
  display: block;
}

.footer-col h4 {
  color: var(--ab-gold);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.footer-col p { opacity: 0.7; font-size: 0.9rem; margin-bottom: 20px; }

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

.footer-links a {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--ab-gold);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

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

/* Mobile Responsive */
@media (max-width: 1440px) {
  .logo img { height: 86px; max-width: 240px; }
  .nav-links { gap: 24px; }
}

@media (max-width: 1320px) {
  .logo img { height: 78px; max-width: 230px; }
  .nav-links { gap: 18px; }
  .nav-actions { gap: 12px; }
  .nav-link { font-size: 0.85rem; }
}

@media (max-width: 1180px) {
  .nav-links, .nav-actions .nav-link, .nav-actions .lang-switch { display: none; }
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .navbar .container { display: flex; justify-content: space-between; }
  .nav-actions { margin-left: auto; gap: 12px; }
  .mobile-only { display: block; }
  .logo img { height: 72px; max-width: 220px; }
}

/* Mobile Menu Panel */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--ab-white);
  padding: 100px 40px 40px;
  box-shadow: -20px 0 60px rgba(0, 31, 63, 0.1);
  z-index: 999;
  gap: 0;
  overflow-y: auto;
}

.nav-links.active .nav-item {
  width: 100%;
  border-bottom: 1px solid var(--ab-border);
}

.nav-links.active .nav-link {
  font-size: 1.1rem;
  padding: 15px 0;
  justify-content: space-between;
}

.nav-links.active .dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  width: 100%;
  box-shadow: none;
  border: none;
  padding: 0 0 15px 15px;
  display: none;
}

.nav-links.active .nav-item.open .dropdown {
  display: block;
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 3.5rem; }
  .hero p { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { display: none; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .calendar-grid { grid-template-columns: 1fr; }
  
  .lms-content { grid-template-columns: 1fr; }
  .lms-mockup { order: -1; }
  
  .hero h1 { font-size: 2.5rem; }
}

/* Final CTA Premium Section */
.final-cta {
  padding: 100px 0;
  background-color: var(--ab-bg);
}

.cta-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  padding: 100px 40px;
  text-align: center;
  color: var(--ab-white);
  background: url('../images/study-group-learning-library.jpg') no-repeat center center;
  background-size: cover;
  box-shadow: 0 40px 80px rgba(0, 31, 63, 0.15);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, rgba(0, 31, 63, 0.9) 0%, rgba(7, 20, 46, 0.7) 100%);
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.4); /* Vignetting */
  z-index: 1;
}

/* Atmospheric Glow */
.cta-card::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.25) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 151, 178, 0.2);
  backdrop-filter: blur(5px);
}

.cta-content h2 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--ab-white);
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 800;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cta-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e5e7eb;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.cta-buttons .btn {
  padding: 18px 45px;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-buttons .btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-primary:hover {
  box-shadow: 0 20px 40px rgba(255, 199, 44, 0.4);
}

@media (max-width: 992px) {
  .final-cta { padding: 60px 0; }
  .cta-card { padding: 80px 30px; border-radius: 32px; }
  .cta-content h2 { font-size: 2.5rem; }
}

@media (max-width: 600px) {
  .cta-card { border-radius: 24px; padding: 60px 20px; }
  .cta-buttons { flex-direction: column; gap: 15px; }
  .cta-buttons .btn { width: 100%; }
}

/* Student Life Premium Section */
.student-life {
  background-color: var(--ab-bg);
  padding: 80px 0;
}

.sl-wrapper {
  background: linear-gradient(135deg, var(--ab-navy-2) 0%, #000 100%);
  border-radius: 40px;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 31, 63, 0.3);
}

/* Atmospheric Glow */
.sl-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.sl-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.sl-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 151, 178, 0.1);
  border: 1px solid rgba(0, 151, 178, 0.3);
  color: var(--ab-teal);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.sl-header h2 {
  color: var(--ab-white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.sl-header p {
  color: #a0aec0;
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
}

.sl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.sl-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 45px 35px;
  border-radius: 32px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.sl-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 151, 178, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sl-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
}

.sl-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  filter: blur(15px);
  opacity: 0.3;
  z-index: -1;
}

.sl-icon-teal { background: var(--ab-soft-teal); color: var(--ab-teal); }
.sl-icon-teal::after { background: var(--ab-teal); }

.sl-icon-gold { background: var(--ab-soft-gold); color: var(--ab-gold); }
.sl-icon-gold::after { background: var(--ab-gold); }

.sl-icon-teal-gold { 
  background: linear-gradient(135deg, var(--ab-soft-teal), var(--ab-soft-gold)); 
  color: var(--ab-white); 
}
.sl-icon-teal-gold::after { background: var(--ab-teal); }

.sl-card h3 {
  color: var(--ab-white);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.sl-card p {
  color: #cbd5e0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.sl-stat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ab-teal);
  letter-spacing: 0.05em;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

@media (max-width: 1200px) {
  .sl-wrapper { padding: 80px 40px; }
  .sl-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sl-card:last-child { grid-column: span 2; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .sl-wrapper { padding: 60px 25px; border-radius: 30px; }
  .sl-grid { grid-template-columns: 1fr; }
  .sl-card:last-child { grid-column: auto; max-width: none; }
  .sl-header { margin-bottom: 40px; }
  .sl-card { padding: 35px 25px; }
}

/* Testimonials Premium Marquee */
.testimonials {
  padding: 100px 0;
  background: var(--ab-bg);
  overflow: hidden;
}

.tm-header {
  text-align: center;
  margin-bottom: 60px;
}

.tm-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tm-header h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 20px;
  color: var(--ab-navy);
}

.tm-header p {
  color: var(--ab-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.tm-marquee-wrapper {
  position: relative;
  width: 100%;
  padding: 20px 0 60px;
}

/* Side Fades */
.tm-marquee-fade-left, .tm-marquee-fade-right {
  position: absolute;
  top: 0;
  width: 15vw;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.tm-marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--ab-bg) 0%, rgba(244, 246, 250, 0) 100%);
}

.tm-marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--ab-bg) 0%, rgba(244, 246, 250, 0) 100%);
}

.tm-marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: tm-scroll 45s linear infinite;
  padding: 20px 0;
}

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

@keyframes tm-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); }
}

.tm-card {
  width: 420px;
  background: var(--ab-white);
  padding: 40px;
  border-radius: 32px;
  border: 1px solid var(--ab-border);
  box-shadow: 0 10px 30px rgba(0, 31, 63, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.tm-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--ab-teal);
  box-shadow: 0 20px 40px rgba(0, 31, 63, 0.1);
}

.tm-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.tm-stars {
  color: var(--ab-gold);
  font-size: 0.9rem;
  display: flex;
  gap: 4px;
}

.tm-quote {
  font-size: 2rem;
  color: var(--ab-teal);
  opacity: 0.15;
}

.tm-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ab-text);
  font-style: italic;
  margin-bottom: 35px;
  flex-grow: 1;
}

.tm-user {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid var(--ab-border);
}

.tm-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--ab-navy) 0%, var(--ab-teal) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 151, 178, 0.2);
}

.tm-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--ab-navy);
}

.tm-info span {
  font-size: 0.85rem;
  color: var(--ab-muted);
  display: block;
}

/* Reduced Motion Fallback */
@media (prefers-reduced-motion: reduce) {
  .tm-marquee-track {
    animation: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    width: 100%;
    padding: 20px;
  }
  .tm-card { width: auto; }
}

@media (max-width: 768px) {
  .tm-card { width: 320px; padding: 30px; }
  .tm-marquee-fade-left, .tm-marquee-fade-right { width: 10vw; }
  .tm-text { font-size: 1.05rem; }
}

/* About Page Specific Styles - Modern Banner */
.about-banner-section {
  padding-top: 140px;
  background-color: var(--ab-bg);
}

.about-banner {
  position: relative;
  height: 520px;
  border-radius: 40px;
  overflow: hidden;
  background: url('../images/about_hero_banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 31, 63, 0.15);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 31, 63, 0.9) 0%, rgba(7, 20, 46, 0.8) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 30px;
  color: white;
}

.banner-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--ab-gold);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.banner-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 800;
}

.banner-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.banner-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--ab-navy);
  border-color: white;
}

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-tag.gold {
  background: var(--ab-soft-gold);
  color: #B8860B;
}

.story-text p {
  margin-bottom: 20px;
  color: var(--ab-muted);
  font-size: 1.1rem;
}

.story-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ab-navy);
  border-left: 4px solid var(--ab-gold);
  padding-left: 20px;
  margin-top: 40px;
  font-style: italic;
}

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

.story-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--ab-soft-gold);
  z-index: -1;
  border-radius: 50%;
}

/* Mission & Vision */
.mission-vision {
  padding-top: 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  padding: 50px;
  background: var(--ab-white);
  border-radius: var(--ab-radius);
  border: 1px solid var(--ab-border);
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--ab-shadow);
  border-color: var(--ab-teal);
}

.mv-icon {
  width: 60px;
  height: 60px;
  background: var(--ab-bg);
  color: var(--ab-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--ab-white);
  padding: 40px;
  border-radius: var(--ab-radius);
  border: 1px solid var(--ab-border);
  transition: all 0.3s ease;
}

.value-card:hover {
  background: var(--ab-navy);
  border-color: var(--ab-navy);
}

.value-card:hover h3, .value-card:hover p {
  color: white;
}

.value-card:hover .value-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ab-gold);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

/* Different Section */
.dark-atmospheric {
  background: var(--ab-navy-2);
  padding: var(--section-padding) 0;
  position: relative;
}

.diff-wrapper {
  background: rgba(255, 255, 255, 0.02);
  padding: 80px 60px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.diff-wrapper::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.diff-card {
  padding: 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(0, 151, 178, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 151, 178, 0.1);
}

.diff-card h3 {
  color: #FFFFFF !important;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.diff-card p {
  color: #E5E7EB !important; /* Very light grey for readability */
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.diff-icon {
  font-size: 2.2rem;
  margin-bottom: 25px;
  display: inline-block;
}

.diff-icon.teal { color: var(--ab-teal); }
.diff-icon.gold { color: var(--ab-gold); }

.text-white { color: #FFFFFF !important; }
.text-white-muted { 
  color: rgba(255, 255, 255, 0.75) !important; 
  max-width: 800px; 
  margin: 0 auto; 
  font-size: 1.1rem;
}

/* Academic Focus */
.focus-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.focus-tag {
  padding: 12px 28px;
  background: var(--ab-white);
  border: 1px solid var(--ab-border);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ab-navy);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 31, 63, 0.05);
}

.focus-tag:hover {
  background: var(--ab-teal);
  color: white;
  border-color: var(--ab-teal);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 151, 178, 0.2);
}

.academic-desc {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  color: var(--ab-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Philosophy Section - Premium Showcase */
.philosophy-section {
  background: #fdfdfe;
  padding: 120px 0;
}

.phi-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

.phi-visual {
  position: relative;
  width: 100%;
}

.mockup-container {
  position: relative;
  border-radius: 32px;
  padding: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f7fa 100%);
  box-shadow: 
    0 40px 100px rgba(0, 31, 63, 0.12),
    0 10px 30px rgba(0, 151, 178, 0.05);
  border: 1px solid rgba(0, 31, 63, 0.05);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-container:hover {
  transform: translateY(-5px);
}

.mockup-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 10;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--ab-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.phi-mockup {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  object-fit: contain;
}

.mockup-reflection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.phi-visual::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0, 31, 63, 0.1) 0%, transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

.phi-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 45px;
}

.phi-mini-card {
  display: flex;
  gap: 20px;
}

.phi-mini-card i {
  width: 40px;
  height: 40px;
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.phi-mini-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
.phi-mini-card p { font-size: 0.9rem; color: var(--ab-muted); margin: 0; line-height: 1.5; }

/* Community */
.comm-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.comm-list {
  margin-top: 35px;
  padding: 0;
}

.comm-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--ab-navy);
  font-size: 1.1rem;
}

.comm-list i { 
  color: var(--ab-teal); 
  font-size: 1.3rem;
}

.comm-img-wrapper {
  position: relative;
  border-radius: var(--ab-radius);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 31, 63, 0.15);
}

.comm-label {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--ab-gold);
  color: var(--ab-navy);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(255, 199, 44, 0.3);
}

/* Standards */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.standard-card {
  background: var(--ab-white);
  padding: 40px 30px;
  border-radius: var(--ab-radius);
  border: 1px solid var(--ab-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.standard-card:hover {
  transform: translateY(-10px);
  border-color: var(--ab-gold);
  box-shadow: var(--ab-shadow);
}

.standard-icon {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.standard-icon.gold { color: var(--ab-gold); }
.standard-icon.teal { color: var(--ab-teal); }

.standard-card h3 { font-size: 1.2rem; margin-bottom: 15px; }
.standard-card p { font-size: 0.95rem; color: var(--ab-muted); margin: 0; line-height: 1.6; }

/* Programs Page Specific Styles */
.highlight-gold {
  color: var(--ab-gold);
  font-weight: 700;
}

/* Premium Title Block V2 */
.centered-v2 {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.premium-capsule {
  background: rgba(255, 199, 44, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 199, 44, 0.2);
  color: var(--ab-gold) !important;
  padding: 8px 24px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 199, 44, 0.1);
}

.centered-v2 h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* Dynamic Keyword Styling */
.dynamic-keyword {
  color: var(--ab-gold);
  display: inline-block;
  font-family: 'Outfit', sans-serif; /* Elegant display font */
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 280px; 
  text-align: center;
  font-weight: 800;
  letter-spacing: -1px;
  font-size: 1.15em; /* Slightly larger as requested */
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .dynamic-keyword {
    min-width: 200px;
    font-size: 1.1em;
  }
}

/* Animation classes applied via JS */
.keyword-exit {
  opacity: 0;
  transform: translateY(-15px); /* Slide up while exiting */
}

.keyword-entry {
  opacity: 0;
  transform: translateY(15px); /* Start from bottom while entering */
}

@media (prefers-reduced-motion: reduce) {
  .dynamic-keyword {
    transition: none !important;
    transform: none !important;
  }
}

/* Overview Section */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.overview-card {
  padding: 40px;
  background: #FFFFFF;
  border-radius: var(--ab-radius);
  border: 1px solid #E6EDF3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 151, 178, 0.3);
}

.overview-card h3 {
  color: #032B4F;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.overview-card p {
  color: #64748B;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 25px;
}

/* Grad Programs */
.premium-gradient {
  background: linear-gradient(135deg, var(--ab-navy-2) 0%, #001F3F 100%);
  position: relative;
  overflow: hidden;
}

.premium-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(0, 151, 178, 0.1) 0%, transparent 50%);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.program-card-v2 {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-card-v2:hover {
  transform: translateY(-10px);
}

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

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

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ab-teal);
  color: white;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.card-badge.gold {
  background: var(--ab-gold);
  color: var(--ab-navy);
}

.card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--ab-muted);
}

.card-meta i { color: var(--ab-teal); margin-right: 5px; }

.program-card-v2 h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--ab-navy);
}

.program-card-v2 p {
  font-size: 0.95rem;
  color: var(--ab-muted);
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.card-footer {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.card-footer .btn {
  flex: 1;
  padding: 12px 10px;
  font-size: 0.85rem;
}

/* PhD Section Refinement */
.phd-section.dark-atmospheric {
  background: #001F3F; /* Solid AmeriBridge Navy */
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.phd-section.dark-atmospheric::before {
  display: none; /* Remove light gradient */
}

.phd-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.phd-content h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-top: 15px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.subtitle-large {
  font-size: 1.3rem;
  margin-bottom: 60px;
  max-width: 700px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85) !important;
}

.phd-program-card {
  padding: 48px;
  border-radius: 24px;
  background: #071a33; /* Solid slightly lighter navy */
  border: 1px solid rgba(0, 151, 178, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.phd-card-header {
  margin-bottom: 32px;
}

.phd-type {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phd-status-badge {
  background: #FFC72C;
  color: #001F3F;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-block;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(255, 199, 44, 0.2);
}

.phd-type h3 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 15px;
  font-weight: 800;
}

.phd-meta-row {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.phd-meta-row span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phd-description {
  margin-bottom: 40px;
}

.phd-description p {
  color: #E5E7EB;
  font-size: 1.1rem;
  line-height: 1.7;
}

.phd-card-actions {
  display: flex;
  gap: 20px;
}

.phd-card-actions .btn {
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 700;
  flex: 1;
  text-align: center;
}

.btn-gold {
  background: #FFC72C !important;
  color: #001F3F !important;
  border: none;
}

.btn-outline-teal {
  border: 2px solid #0097B2 !important;
  color: #FFFFFF !important;
  background: transparent;
}

.btn-outline-teal:hover {
  background: rgba(0, 151, 178, 0.1);
}

/* PhD Visual */
.phd-visual {
  height: 100%;
}

.phd-visual-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 151, 178, 0.3);
  height: 100%;
  display: flex;
}

.phd-visual-container img {
  width: 100%;
  height: 100%;
  max-height: 700px; /* Constrain image height */
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

.phd-visual-container:hover img {
  transform: scale(1.05);
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(7, 20, 46, 0.2) 0%, rgba(7, 20, 46, 0.7) 100%);
}

.floating-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-badge i { color: var(--ab-gold); font-size: 1.3rem; }

.visual-glow-effect {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* Certificates */
.cert-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.cert-item-premium {
  background: white;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
}

.cert-item-premium:hover {
  transform: scale(1.03);
  border-color: var(--ab-teal);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.cert-code {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ab-teal);
  margin-bottom: 10px;
}

.cert-item-premium h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--ab-navy);
}

.cert-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--ab-muted);
}

.cert-status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cert-status.open { background: #dcfce7; color: #166534; }
.cert-status.upcoming { background: #fef9c3; color: #854d0e; }

/* Timeline V2 Replacement - Student Journey Grid */
.section-journey .journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.journey-card {
  background: rgba(3, 43, 79, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px 24px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 151, 167, 0.4);
  background: rgba(3, 43, 79, 0.6);
}

.journey-card .step-number {
  width: 32px;
  height: 32px;
  background: var(--ab-gold);
  color: var(--ab-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin: 0 0 20px 0;
}

.journey-card .step-icon {
  font-size: 2rem;
  color: #0097A7;
  margin-bottom: 20px;
  background: transparent;
  border: none;
  width: auto;
  height: auto;
  backdrop-filter: none;
  display: block;
}

.journey-card h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
  text-align: left;
}

.journey-card p {
  color: #C8D6E5;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

@media (max-width: 1024px) {
  .section-journey .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-journey .journey-grid {
    grid-template-columns: 1fr;
  }
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 30px;
  height: 30px;
  background: var(--ab-gold);
  color: var(--ab-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin: 0 auto 10px;
  font-size: 0.8rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ab-teal);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.timeline-step h4 { color: white; margin-bottom: 10px; font-size: 1.1rem; }
.timeline-step p { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; line-height: 1.4; }

/* Comparison */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.comp-card {
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 24px;
  border: 1px solid #E6EDF3;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.comp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 151, 178, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.comp-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #032B4F;
}

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

.comp-card li {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.5;
}

.comp-card li:last-child {
  margin-bottom: 0;
}

.comp-card li strong { 
  color: #032B4F;
  font-weight: 700;
}

/* Guidance */
.guidance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.guidance-card {
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--ab-border);
  text-align: center;
}

.guidance-card i {
  font-size: 2rem;
  color: var(--ab-teal);
  margin-bottom: 25px;
}

.guidance-card.highlight {
  background: var(--ab-soft-teal);
  border-color: var(--ab-teal);
}

.guidance-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

/* Compact LMS list */
.phi-cards-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

/* Requirements */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.req-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #E6EDF3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  height: 100%;
  transition: all 0.3s ease;
}

.req-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 31, 63, 0.08);
  border-color: var(--ab-teal);
}

.req-card h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--ab-navy);
}

.req-card p {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--ab-teal);
}

.req-card ul {
  list-style: none;
  padding: 0;
}

.req-card li {
  margin-bottom: 15px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ab-muted);
}

.req-card i { color: var(--ab-navy); font-size: 0.9rem; }

/* Calendar */
.calendar-wrapper {
  background: #f1f5f9;
  padding: 80px 60px;
  border-radius: 40px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.cal-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cal-card i {
  font-size: 2rem;
  color: var(--ab-gold);
  margin-bottom: 20px;
}

.cal-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.cal-card p { color: var(--ab-muted); margin: 0; }

.calendar-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--ab-muted);
}

.calendar-note i { color: var(--ab-teal); margin-right: 8px; }

/* Responsive adjustments for Programs */
@media (max-width: 1200px) {
  .programs-grid, .overview-grid, .comparison-grid, .cert-grid-full, .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-v2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .timeline-v2::before { display: none; }
  
  .phd-wrapper { grid-template-columns: 1fr; gap: 50px; }
  
  .phd-visual {
    height: 400px;
  }
  
  .guidance-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .programs-grid, .overview-grid, .comparison-grid, .cert-grid-full, .requirements-grid, .calendar-grid, .guidance-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-v2 { grid-template-columns: repeat(2, 1fr); }
  
  .phd-details-card { padding: 30px 20px; }
  
  .phd-visual {
    height: 300px;
  }
  
  .phd-milestones { grid-template-columns: 1fr; }
  
}

@media (max-width: 480px) {
  .timeline-v2 { grid-template-columns: 1fr; }
  
  .phd-actions { flex-direction: column; }
}

/* Responsive About */
@media (max-width: 1200px) {
  .about-hero-grid, .story-grid, .phi-grid, .comm-grid {
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .about-hero-grid, .story-grid, .phi-grid, .comm-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .about-hero-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .hero-badges, .hero-btns, .cta-actions, .comm-list {
    justify-content: center;
  }
  
  .comm-list li { justify-content: center; }
  
  .mv-grid, .diff-grid, .phi-cards {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-hero { padding-top: 140px; }
  
  .about-card-1 { left: 0; }
  .about-card-2 { right: 0; }
}

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

@media (max-width: 600px) {
  .standards-grid {
    grid-template-columns: 1fr;
  }
  
  .about-banner { height: auto; min-height: 400px; padding: 60px 20px; border-radius: 30px; }
  
  .banner-content h1 { font-size: 2.2rem; }
  
  .banner-content p { font-size: 1rem; }
  
  .cta-banner { padding: 60px 24px; }
  
  .diff-wrapper { padding: 50px 24px; }
  
  .cta-actions { flex-direction: column; }
  
  .hero-btns { flex-direction: column; }
  
  .focus-tag { padding: 10px 20px; font-size: 0.85rem; }
}


/* Admissions Page Styles */

.apply-timeline-section {
  position: relative;
  padding: 140px 0 100px;
  background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
  border-radius: 40px;
  overflow: hidden;
  margin: 80px 0;
}

.apply-timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 31, 63, 0.98) 0%, rgba(7, 20, 46, 0.95) 100%);
  z-index: 1;
}

.apply-timeline-section .container {
  position: relative;
  z-index: 2;
}

.apply-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-step {
  display: flex;
  gap: 25px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.timeline-step::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 151, 178, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.timeline-step:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 151, 178, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-step:hover::after {
  opacity: 1;
}

.step-number {
  width: 54px;
  height: 54px;
  background: var(--ab-gold);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ab-navy);
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(255, 199, 44, 0.3);
  z-index: 2;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-content i {
  font-size: 1.4rem;
  color: var(--ab-teal);
  margin-bottom: 5px;
  opacity: 0.8;
}

.step-content h4 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Outfit', sans-serif;
}

.step-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .apply-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .apply-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .timeline-step {
    padding: 30px;
  }
  
  .apply-timeline-section {
    padding: 60px 0;
    border-radius: 24px;
  }
}

/* Conditions Section Admissions */
.conditions-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #FFFFFF 0%, #F8FAFC 100%);
}

.conditions-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}

.conditions-content {
  flex: 1;
}

.conditions-intro {
  color: var(--ab-text);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.9;
}

.conditions-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.check-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--ab-border);
  transition: all 0.3s ease;
}

.check-item:hover {
  transform: translateX(5px);
  border-color: var(--ab-soft-teal);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.check-item i {
  color: var(--ab-teal);
  font-size: 1.1rem;
  margin-top: 3px;
}

.check-item p {
  color: var(--ab-navy);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

.highlight-gold {
  color: #B8860B; /* A more elegant dark gold for text */
  font-weight: 700;
}

.view-all-wrapper {
  margin-top: 20px;
}

.view-all-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ab-teal);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-toggle:hover {
  color: var(--ab-navy);
}

.additional-requirements {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  background: var(--ab-soft-teal);
  border-radius: 16px;
  margin-top: 15px;
}

.additional-requirements.active {
  max-height: 500px;
  padding: 25px;
  border: 1px dashed var(--ab-teal);
}

.additional-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.additional-list li {
  font-size: 0.9rem;
  color: var(--ab-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.additional-list li::before {
  content: '•';
  color: var(--ab-gold);
  font-weight: bold;
}

/* Conditions Visuals */
.conditions-visual {
  flex: 0.85;
  position: relative;
}

.main-img-wrapper {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}

.main-img-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.main-img-wrapper:hover img {
  transform: scale(1.05);
}

.floating-info-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
  max-width: 200px;
  animation: floatCard 4s ease-in-out infinite;
}

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

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

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  color: var(--ab-teal);
  font-size: 1.1rem;
}

.info-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ab-navy);
}

@media (max-width: 1200px) {
  .conditions-flex {
    flex-direction: column;
    gap: 50px;
  }
  
  .conditions-visual {
    width: 100%;
  }
  
  .floating-info-card {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .additional-list {
    grid-template-columns: 1fr;
  }
  
  .main-img-wrapper img {
    height: 400px;
  }
}

.condition-item p {
  margin: 0;
  color: var(--ab-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Required Docs */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.docs-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--ab-border);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.docs-card.featured {
  background: var(--ab-navy-2);
  border-color: var(--ab-soft-gold);
  box-shadow: 0 20px 50px rgba(0, 31, 63, 0.2);
}

.docs-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.docs-card .card-header i {
  font-size: 2rem;
  color: var(--ab-teal);
}

.docs-card.featured .card-header i {
  color: var(--ab-gold);
}

.docs-card.featured .card-header h3 {
  color: white;
}

.docs-list {
  list-style: none;
  padding: 0;
}

.docs-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--ab-border);
  font-size: 0.95rem;
  color: var(--ab-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.docs-list li::before {
  content: '•';
  color: var(--ab-teal);
  font-weight: bold;
}

.docs-card.featured .docs-list li {
  border-bottom-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.docs-card.featured .docs-list li::before {
  color: var(--ab-gold);
}

/* PhD Admissions Prerequisites */
.phd-prereq-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.prereq-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.prereq-box p {
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}

.prereq-list {
  list-style: none;
  padding: 0;
}

.prereq-list li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.prereq-list li i {
  color: var(--ab-gold);
}

.phd-note {
  background: var(--ab-soft-teal);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--ab-teal);
}

.phd-note p {
  color: white;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.phd-note i {
  margin-right: 8px;
}

.phd-prereq-card {
  padding: 40px;
  border-radius: 24px;
}

.phd-prereq-card h3 {
  color: white;
  margin-bottom: 25px;
}

.phd-docs-list {
  list-style: none;
  padding: 0;
}

.phd-docs-list li {
  color: rgba(255, 255, 255, 0.85);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.phd-docs-list li::before {
  content: '\f15b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--ab-gold);
  font-size: 0.8rem;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.process-block {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.block-icon {
  width: 60px;
  height: 60px;
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.process-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.process-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  color: var(--ab-text);
  line-height: 1.6;
  font-size: 0.95rem;
}

.process-list li::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--ab-teal);
  font-size: 0.7rem;
}

.decision-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.decision-card {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--ab-border);
}

.decision-card h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: var(--ab-navy);
}

.decision-card:first-child {
  background: var(--ab-soft-teal);
  border-color: var(--ab-teal);
}

/* Criteria Section */
.criteria-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.criteria-item {
  background: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ab-navy);
  border: 1px solid var(--ab-border);
}

.criteria-item i {
  color: var(--ab-teal);
}

.warning-box {
  max-width: 800px;
  margin: 40px auto 0;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 5px solid var(--ab-gold);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.warning-box i {
  font-size: 1.8rem;
  color: var(--ab-gold);
}

.warning-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #92400E;
  line-height: 1.6;
}

/* Tech Section */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.tech-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--ab-border);
}

.tech-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.tech-header i {
  font-size: 2rem;
  color: var(--ab-teal);
}

.tech-list {
  list-style: none;
  padding: 0;
}

.tech-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--ab-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.tech-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--ab-teal);
  font-size: 0.8rem;
}

.tech-note {
  text-align: center;
  margin-top: 30px;
  color: var(--ab-muted);
}

/* Credits Section */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.credits-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.credits-card h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--ab-navy);
}

.credits-list {
  list-style: none;
  padding: 0;
}

.credits-list li {
  margin-bottom: 15px;
  font-weight: 500;
}

.status-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.status-tag {
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

.status-note {
  font-size: 0.9rem;
  color: var(--ab-muted);
  font-style: italic;
  margin-top: 20px;
}

/* Support Section */
.support-card {
  background: white;
  padding: 50px;
  border-radius: 30px;
  display: flex;
  gap: 40px;
  align-items: center;
  box-shadow: var(--ab-shadow);
  border: 1px solid var(--ab-border);
}

.support-icon {
  width: 100px;
  height: 100px;
  background: var(--ab-soft-gold);
  color: var(--ab-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}

.support-text h2 {
  margin-bottom: 15px;
}

.support-text p {
  color: var(--ab-text);
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Final CTA Admissions */
.final-cta-section {
  padding: 100px 0;
}

.cta-banner {
  position: relative;
  padding: 100px 60px;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 80px rgba(0, 31, 63, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-banner .cta-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  text-align: center;
}

.cta-label {
  display: inline-block;
  color: var(--ab-gold);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.cta-content h2 {
  color: white;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 25px;
  font-family: 'Outfit', sans-serif;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 45px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 31, 63, 0.96) 0%, rgba(7, 20, 46, 0.9) 100%);
  z-index: 1;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 151, 178, 0.1) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 80px 30px;
    border-radius: 30px;
  }
  
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-btns .btn {
    width: 100%;
  }
}

/* FAQ Accordion Admissions */
.faq-accordion {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--ab-border);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--ab-navy);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--ab-soft-teal);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 10px 30px 30px;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Responsive Admissions */
@media (max-width: 1200px) {
  .docs-grid, .credits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .phd-prereq-grid, .process-grid, .tech-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .docs-grid, .credits-grid { grid-template-columns: 1fr; }
  .decision-cards { grid-template-columns: 1fr; }
  .support-card { flex-direction: column; text-align: center; padding: 40px 24px; }
  .cta-btns { flex-direction: column; }
}

/* Program Detail Page Styles */

.program-detail-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  position: relative;
  overflow: hidden;
}

.hero-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}

.hero-content-left {
  flex: 1;
}

.program-label {
  display: inline-block;
  padding: 8px 16px;
  background: var(--ab-soft-gold);
  color: #B8860B;
  font-weight: 700;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.hero-content-left h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--ab-navy);
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
}

.hero-content-left .lead {
  font-size: 1.25rem;
  color: var(--ab-text);
  opacity: 0.8;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-badge {
  padding: 10px 18px;
  background: white;
  border: 1px solid rgba(0, 31, 63, 0.1);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ab-navy);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.hero-badge i {
  color: var(--ab-teal);
}

.hero-visual-right {
  flex: 1;
  position: relative;
}

.program-hero-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.floating-program-card {
  position: absolute;
  top: 40px;
  right: -30px;
  background: white;
  padding: 25px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 180px;
  text-align: center;
  z-index: 2;
}

.floating-program-card h4 {
  font-size: 0.85rem;
  color: var(--ab-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.floating-program-card p {
  font-weight: 800;
  color: var(--ab-navy);
  font-size: 1.1rem;
  margin: 0;
}

.expected-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--ab-navy);
  color: white;
  padding: 12px 24px;
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 31, 63, 0.3);
}

/* Snapshot Section */
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.snapshot-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid var(--ab-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
}

.snapshot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--ab-soft-teal);
}

.snapshot-card i {
  color: var(--ab-teal);
  font-size: 1.2rem;
}

.snapshot-card span {
  font-size: 0.85rem;
  color: var(--ab-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.snapshot-card p {
  font-weight: 700;
  color: var(--ab-navy);
  margin: 0;
  font-size: 1.1rem;
}

/* Overview Styles */
.overview-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}

.overview-text {
  flex: 1.2;
}

.overview-visual {
  flex: 1;
}

.quote-block {
  margin-top: 40px;
  padding: 30px;
  background: var(--ab-soft-teal);
  border-left: 5px solid var(--ab-teal);
  border-radius: 0 20px 20px 0;
}

.quote-block p {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ab-navy);
  margin: 0;
}

/* Learn Grid */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.learn-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--ab-border);
  transition: all 0.4s ease;
}

.learn-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--ab-shadow);
  border-color: var(--ab-soft-teal);
}

.learn-icon {
  width: 60px;
  height: 60px;
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.learn-card h4 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Structure Styles */
.structure-dark {
  background: var(--ab-navy-2);
  padding: 100px 0;
  color: white;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.structure-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.structure-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--ab-teal);
}

.structure-item h4 {
  color: var(--ab-gold);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.structure-note {
  margin-top: 50px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Career Tags */
.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.career-tag {
  padding: 12px 24px;
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.career-tag:hover {
  background: var(--ab-teal);
  color: white;
  transform: scale(1.05);
}

/* LMS Mockup */
.lms-mockup-wrapper {
  margin-top: 60px;
  perspective: 1000px;
}

.lms-screen {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 50px 100px rgba(0, 31, 63, 0.2);
  border: 8px solid white;
  transform: rotateX(5deg);
  transition: transform 0.5s ease;
}

.lms-screen:hover {
  transform: rotateX(0deg);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.feature-pill {
  padding: 15px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-pill i {
  color: var(--ab-teal);
}

@media (max-width: 1200px) {
  .hero-flex, .overview-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-badges, .cta-btns, .career-tags {
    justify-content: center;
  }
  
  .snapshot-grid, .learn-grid, .structure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .snapshot-grid, .learn-grid, .structure-grid, .feature-list, .cert-snapshot-grid, .cert-learn-grid {
    grid-template-columns: 1fr;
  }

  .hero-flex {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content-left .lead {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .cta-btns {
    justify-content: center;
  }

  .program-hero-img {
    height: 350px;
  }
  
  .floating-program-card {
    right: 20px;
    top: 20px;
    padding: 15px;
  }
}

/* PhD Dark Premium Styles */
.phd-page {
  background: var(--ab-navy-2);
  color: white;
}

.phd-hero {
  padding: 180px 0 100px;
  background: radial-gradient(circle at top right, rgba(0, 151, 178, 0.15) 0%, transparent 50%),
              radial-gradient(circle at bottom left, rgba(255, 199, 44, 0.05) 0%, transparent 40%),
              var(--ab-navy-2);
}

.phd-hero h1 {
  color: white;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 25px;
}

.phd-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  max-width: 600px;
}

.phd-card-dark {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 151, 178, 0.3);
  border-radius: 24px;
  padding: 35px;
  transition: all 0.3s ease;
}

.phd-card-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--ab-gold);
  transform: translateY(-5px);
}

.phd-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.phd-snapshot-item {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
}

.phd-snapshot-item i {
  color: var(--ab-teal);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.phd-snapshot-item span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.phd-snapshot-item p {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ab-gold);
  margin: 0;
}

.important-box {
  background: rgba(255, 199, 44, 0.05);
  border: 1px solid var(--ab-gold);
  padding: 25px;
  border-radius: 20px;
  margin-top: 40px;
  text-align: center;
}

.important-box p {
  color: var(--ab-gold);
  font-weight: 600;
  margin: 0;
}

.phd-admission-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  margin-top: 50px;
}

.phd-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.phd-list-item i {
  color: var(--ab-teal);
  font-size: 0.9rem;
}

.phd-visual-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 31, 63, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.phd-visual-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, rgba(0, 151, 178, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.phd-visual-card:hover {
  transform: translateY(-10px) scale(1.01);
}

.phd-visual-card img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

.floating-badge-phd {
  position: absolute;
  top: 40px;
  right: 40px;
  background: var(--ab-teal);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(0, 151, 178, 0.4);
}

@media (max-width: 992px) {
  .phd-snapshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .phd-admission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .phd-snapshot-grid {
    grid-template-columns: 1fr;
  }
  
  .phd-hero {
    padding: 140px 0 60px;
    text-align: center;
  }
  
  .hero-badges {
    justify-content: center;
  }
}

/* Certificate Page Styles */
.cert-page {
  background-color: rgba(255, 199, 44, 0.05);
}

.cert-hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #F0F4F8 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.cert-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--ab-soft-teal) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.cert-hero .program-label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--ab-navy);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cert-code-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ab-teal);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.cert-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  color: var(--ab-navy);
  margin-bottom: 25px;
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  font-weight: 800;
}

.cert-hero .lead {
  font-size: 1.2rem;
  color: var(--ab-text);
  opacity: 0.85;
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.6;
}

.cert-white-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cert-white-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.cert-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cert-snapshot-item {
  background: white;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(255, 199, 44, 0.2);
}

.cert-snapshot-item i {
  color: var(--ab-teal);
  font-size: 1.1rem;
}

.cert-snapshot-item span {
  font-size: 0.75rem;
  color: var(--ab-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.cert-snapshot-item p {
  font-weight: 700;
  color: var(--ab-navy);
  margin: 0;
  font-size: 1rem;
}

.cert-learn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

@media (max-width: 768px) {
  .cert-snapshot-grid, .cert-learn-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium Snapshot Section for Biostatistics */
.snapshot-premium {
    background: var(--ab-navy);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.snapshot-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 151, 178, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
}

.snapshot-premium .container {
    position: relative;
    z-index: 2;
}

.snapshot-premium .section-title h2 {
    color: white;
}

.snapshot-premium .section-tag.gold {
    background: var(--ab-soft-gold);
    color: var(--ab-gold);
    margin-bottom: 15px;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cert-snapshot-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.cert-snapshot-card-premium {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.cert-snapshot-card-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--ab-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.cert-snapshot-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 151, 178, 0.3);
}

.cert-snapshot-card-premium:hover::after {
    transform: scaleX(1);
}

.cert-snapshot-card-premium i {
    font-size: 1.8rem;
    color: var(--ab-teal);
    background: var(--ab-soft-teal);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 5px;
}

.cert-snapshot-card-premium .label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ab-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cert-snapshot-card-premium .value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ab-navy);
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 1024px) {
    .cert-snapshot-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cert-snapshot-grid-premium {
        grid-template-columns: 1fr;
    }
    .snapshot-premium {
        padding: 80px 0;
    }
}


/* NEW CONTACT PAGE PREMIUM STYLES */
.bg-light { background-color: #F5F7FA; }

/* 1. Hero Premium */
.contact-hero-premium {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #F9FAFB 0%, #F5F7FA 100%);
  overflow: hidden;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--ab-soft-teal);
  color: var(--ab-teal);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.contact-hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: #032B4F;
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact-hero-text p {
  font-size: 1.15rem;
  color: var(--ab-muted);
  line-height: 1.6;
  max-width: 90%;
}

.contact-hero-visual {
  position: relative;
  border-radius: 24px;
}

.contact-hero-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(3, 43, 79, 0.1);
}

.floating-cards {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  color: #032B4F;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  font-size: 0.95rem;
  animation: float 6s ease-in-out infinite;
}

.floating-card.c1 { top: 15%; left: -30px; animation-delay: 0s; }
.floating-card.c2 { bottom: 25%; right: -20px; animation-delay: 1s; }
.floating-card.c3 { top: 50%; left: 40px; animation-delay: 2s; }

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

/* 2. Contact Cards */
.contact-cards-section {
  padding: 80px 0;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-card-item {
  background: var(--ab-white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.contact-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(3, 43, 79, 0.08);
}

.cc-icon {
  width: 60px; height: 60px;
  background: var(--ab-soft-teal);
  color: #0097A7;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.contact-card-item:hover .cc-icon {
  background: #0097A7;
  color: var(--ab-white);
}

.contact-card-item h3 {
  font-size: 1.25rem;
  color: #032B4F;
  margin-bottom: 12px;
}

.contact-card-item p {
  color: var(--ab-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cc-link {
  color: #0097A7;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.cc-link:hover { text-decoration: underline; }

/* 3. Form Section */
.contact-form-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding: 60px 0;
}

.form-column h2 {
  font-size: 2.2rem;
  color: #032B4F;
  margin-bottom: 10px;
}

.form-intro {
  color: var(--ab-muted);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.premium-form {
  display: flex; flex-direction: column; gap: 24px;
}

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

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-weight: 600; font-size: 0.9rem; color: #032B4F;
}

.form-group input, .form-group select, .form-group textarea {
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--ab-border);
  background: #F9FAFB;
  font-family: inherit; font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #0097A7;
  box-shadow: 0 0 0 4px rgba(0, 151, 167, 0.1);
  background: var(--ab-white);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
  align-self: flex-start;
  border-radius: 50px;
  background: #FFC72C;
  color: #111827;
}

.btn-large:hover { transform: scale(1.02); }

.info-card-premium {
  background: #032B4F;
  border-radius: 24px;
  padding: 50px 40px;
  color: var(--ab-white);
  box-shadow: 0 20px 50px rgba(3, 43, 79, 0.2);
}

.info-card-premium h3 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: var(--ab-white);
}

.info-line {
  display: flex; gap: 20px; align-items: flex-start; margin-bottom: 30px;
}

.info-icon {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #FFC72C; flex-shrink: 0;
}

.info-label {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 4px;
}

.info-val { display: block; font-weight: 500; font-size: 1.05rem; }

.info-note {
  margin-top: 40px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; gap: 15px; align-items: flex-start;
}

.info-note i { color: #0097A7; font-size: 1.2rem; }
.info-note p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* 4. Mini FAQ */
.contact-faq-section { padding: 80px 0; }
.faq-grid-mini {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}

.faq-card-mini {
  background: var(--ab-white);
  padding: 30px; border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
}

.faq-card-mini h4 {
  color: #032B4F; font-size: 1.1rem; margin-bottom: 12px;
}

.faq-card-mini p { color: var(--ab-muted); font-size: 0.95rem; line-height: 1.6; }

/* 5. CTA Final */
.contact-cta-section { padding: 0 0 100px; background: #F5F7FA; }
.cta-banner-premium {
  background: linear-gradient(135deg, #032B4F 0%, #011830 100%);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  color: var(--ab-white);
  box-shadow: 0 30px 60px rgba(3, 43, 79, 0.2);
}

.cta-banner-premium h2 { font-size: 2.5rem; margin-bottom: 15px; color: #fff; }
.cta-banner-premium p { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; }

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

/* Responsive */
@media (max-width: 1024px) {
  .contact-hero-grid, .contact-form-layout { grid-template-columns: 1fr; }
  .contact-hero-text { text-align: center; }
  .contact-hero-text p { margin: 0 auto; }
  .floating-card.c1 { left: 0; }
  .floating-card.c3 { left: 0; }
}

@media (max-width: 768px) {
  .form-row, .faq-grid-mini { grid-template-columns: 1fr; }
  .contact-hero-premium { padding: 120px 0 60px; }
  .cta-buttons { flex-direction: column; }
}




html {
  margin-top: 0 !important;
}

/* Courses Professional Certificates Section Offset */
#courses-professional-certificates {
  scroll-margin-top: 120px;
}

/* Interest Form Section */
.interest-form-section {
  padding: 80px 0;
  background: var(--ab-bg);
  scroll-margin-top: 120px;
}

.interest-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 31, 63, 0.05);
  border: 1px solid var(--ab-border);
}

.interest-form-title {
  text-align: center;
  margin-bottom: 40px;
}

.interest-form-title h2 {
  color: var(--ab-navy);
  margin-bottom: 15px;
}

.interest-form-title p {
  color: var(--ab-muted);
  font-size: 1.1rem;
}

.interest-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.interest-form label {
  display: block;
  font-weight: 600;
  color: var(--ab-navy);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.interest-form input[type="text"],
.interest-form input[type="email"],
.interest-form input[type="tel"],
.interest-form select,
.interest-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #D1D5DB;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--ab-text);
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.interest-form input[type="text"],
.interest-form input[type="email"],
.interest-form input[type="tel"],
.interest-form select {
  height: 52px;
}

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

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  outline: none;
  border-color: var(--ab-teal);
  box-shadow: 0 0 0 4px rgba(0, 151, 178, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--ab-teal);
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ab-muted);
  margin-bottom: 0;
  cursor: pointer;
}

.privacy-notice {
  font-size: 0.85rem;
  color: var(--ab-muted);
  text-align: center;
  margin-top: 20px;
}

.form-feedback {
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 30px;
  display: none;
}

.form-feedback.success {
  background: rgba(0, 151, 178, 0.05);
  border: 1px solid var(--ab-teal);
  display: block;
}

.form-feedback.success h3 {
  color: var(--ab-teal);
  margin-bottom: 10px;
}

.form-feedback.error {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid #DC2626;
  display: block;
}

.form-feedback.error h3 {
  color: #DC2626;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .interest-form-grid {
    grid-template-columns: 1fr;
  }
  .interest-form-wrapper {
    padding: 30px 20px;
  }
}
