/* ============================================================
   DC ENGLISH LOUNGE — MAIN STYLESHEET
   Design: Premium Educational · Blue/Gold/Teal
   Fonts: Merriweather (headings) + Poppins (body)
   ============================================================ */

/* ===================== CSS VARIABLES ===================== */
:root {
  /* Primary Palette - Academic Navy & Trustworthy Blue */
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-deeper: #1B3A6B;
  --blue-light: #EFF6FF;
  --blue-glass: rgba(37, 99, 235, 0.12);

  /* Accent Colors - Warm Educational Palette */
  --accent-gold: #D4A017;
  --accent-amber: #F59E0B;
  --accent-teal: #0D9488;
  --accent-emerald: #059669;
  --accent-sky: #0284C7;
  --accent-rose: #E11D48;
  --accent-warm: #B45309;

  --red: #E11D48;
  --red-dark: #BE123C;
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.55);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 12px 36px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 56px rgba(15, 23, 42, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1240px;

  /* Subtle glow effects (softer, less neon) */
  --glow-blue: 0 0 30px rgba(37, 99, 235, 0.18);
  --glow-gold: 0 0 30px rgba(212, 160, 23, 0.18);
  --glow-teal: 0 0 30px rgba(13, 148, 136, 0.18);
}

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

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scholarly headings */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Merriweather', 'Georgia', serif;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===================== UTILITY ===================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* ===================== TYPOGRAPHY ===================== */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Merriweather', 'Georgia', serif;
  line-height: 1.25;
  font-weight: 700;
  color: var(--gray-900);
}

/* ===================== GRADIENT HELPERS ===================== */
.blue-grad {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #1D4ED8 100%);
}

.teal-grad {
  background: linear-gradient(135deg, #14B8A6 0%, #0891B2 50%, #0E7490 100%);
}

.indigo-grad {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #7C3AED 100%);
}

.sky-grad {
  background: linear-gradient(135deg, #0EA5E9 0%, #3B82F6 100%);
}

.emerald-grad {
  background: linear-gradient(135deg, #10B981 0%, #14B8A6 100%);
}

.violet-grad {
  background: linear-gradient(135deg, #8B5CF6 0%, #D946EF 100%);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #2563EB, #0D9488);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1D4ED8, #0B7A6E);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.45);
}

/* ===================== SECTION HEADER ===================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.12), rgba(245, 158, 11, 0.12));
  color: var(--accent-warm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 160, 23, 0.25);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================== BADGES ===================== */
.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-blue {
  background: #DBEAFE;
  color: #1D4ED8;
}

.badge-red {
  background: #FEE2E2;
  color: #DC2626;
}

.badge-green {
  background: #D1FAE5;
  color: #065F46;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s ease forwards;
}

.fade-up-delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}

.fade-up-delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}

.fade-up-delay-4 {
  animation-delay: 0.4s;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s ease forwards;
}

/* Observer-based lazy fade */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  /* CHANGE TO THIS */
  backdrop-filter: blur(0px);
  /* CHANGE TO THIS */
}

.navbar.transparent {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(30, 58, 138, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar:not(.scrolled) .logo-main {
  color: var(--white);
}

.navbar:not(.scrolled) .logo-sub {
  color: rgba(255, 255, 255, 0.7);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

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

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.logo-placeholder {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

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

.logo-main {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--accent-teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Transparent navbar logo adjustment */
.navbar.transparent .logo-main {
  color: var(--white);
}

.navbar.transparent .logo-sub {
  color: rgba(255, 255, 255, 0.7);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
}

.navbar.transparent .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar.transparent .nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-link.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-link.nav-cta {
  background: linear-gradient(135deg, #2563EB, #0D9488);
  color: var(--white) !important;
  font-weight: 600;
  padding: 10px 22px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.nav-link.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, #1D4ED8, #0B7A6E) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.transparent .hamburger span {
  background: var(--white);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu .nav-link {
  padding: 12px 16px;
  color: var(--gray-800);
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
}

.mobile-menu .nav-cta {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0C2340 0%, #1B3A6B 30%, #1D4E7F 55%, #21618C 75%, #2874A6 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Animated blobs — warm educational tones */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #2563EB, #0D9488);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #D4A017, #F59E0B);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0D9488, #2563EB);
  top: 40%;
  left: 30%;
  animation: float 12s ease-in-out infinite 2s;
}

/* Subtle dotted pattern (academic, not grid mesh) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 72px);
}

/* Hero Content */
.hero-content {
  padding-right: 16px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(90deg, #5DADE2, #48C9B0, #F4D03F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

.hero-subtitle span {
  color: rgba(255, 255, 255, 0.85);
}

.hero-subtitle .sep {
  color: rgba(255, 255, 255, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {}

.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-num span {
  color: #60A5FA;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin: 0 auto;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  text-align: center;
  gap: 12px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero-image-placeholder .img-icon {
  font-size: 3rem;
}

/* Hero image when provided */
.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* Floating Cards */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  z-index: 2;
}

.float-card-1 {
  top: 12%;
  left: -14%;
  animation: float 5s ease-in-out infinite;
}

.float-card-2 {
  bottom: 18%;
  left: -10%;
  animation: float 6s ease-in-out infinite 1s;
}

.float-card-3 {
  top: 30%;
  right: -8%;
  animation: float 7s ease-in-out infinite 0.5s;
}

.fc-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.fc-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.fc-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
}

.fc-sub {
  font-size: 0.68rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ===================== MARQUEE ===================== */
.marquee-section {
  background: linear-gradient(135deg, #0C2340, #1B3A6B, #1D4E7F);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, #0C2340, transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, #1D4E7F, transparent);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
  padding: 20px 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.item-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===================== WHY SECTION ===================== */
.why-section {
  background: linear-gradient(180deg, #FAFBFC, #F0F4F8);
}

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

.why-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB, #0D9488, #D4A017);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(37, 99, 235, 0.06);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===================== COURSES GRID ===================== */
.courses-section {
  background: var(--white);
}

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

.course-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.course-card-header {
  padding: 32px 28px 24px;
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: flex-end;
}

.course-badge-corner {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.course-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.course-card-body p {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
}

.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.course-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.course-meta span {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 500;
}

.course-link {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--blue-light);
}

.course-link:hover {
  background: var(--blue);
  color: var(--white);
}

/* ===================== STUDY ABROAD SECTION (HOME) ===================== */
.study-abroad-section {
  background: var(--gray-50);
}

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

.abroad-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.abroad-img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.turkey-bg {
  background: linear-gradient(135deg, #E11D48, #BE123C, #881337);
}

.europe-bg {
  background: linear-gradient(135deg, #3B82F6, #6366F1, #4F46E5);
}

.usa-bg {
  background: linear-gradient(135deg, #1D4ED8, #8B5CF6, #E11D48);
}

.img-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
}

.abroad-card-body {
  padding: 28px;
  flex: 1;
}

.abroad-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.abroad-card-body p {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.abroad-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abroad-feature {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue-dark);
  padding: 6px 12px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.abroad-feature::before {
  content: '✓';
  font-weight: 700;
  color: var(--blue);
  font-size: 0.75rem;
}

/* ===================== CAREER SECTION ===================== */
.career-section {
  background: linear-gradient(135deg, #0C2340, #1B3A6B, #1D4E7F);
  position: relative;
  overflow: hidden;
}

.career-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.career-section::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12), transparent 60%);
  pointer-events: none;
}

.career-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.career-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.career-card:hover {
  background: rgba(13, 148, 136, 0.08);
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: 0 0 30px rgba(13, 148, 136, 0.08);
}

.career-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.2), rgba(37, 99, 235, 0.15));
  font-size: 1.5rem;
}

.career-icon svg {
  width: 28px;
  height: 28px;
}

.career-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.career-card p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

/* ===================== REVIEWS ===================== */
.reviews-section {
  background: linear-gradient(180deg, #FAFBFC, #F0F4F8);
}

.reviews-slider-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 4px 24px;
  align-items: stretch;
  will-change: transform;
}

.review-card {
  min-width: calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: auto;
  box-sizing: border-box;
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-info .name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
}

.reviewer-info .course {
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 500;
}

.review-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

/* Slider Nav */
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.reviews-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.reviews-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: var(--transition);
  cursor: pointer;
}

.reviews-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ===================== ABOUT PREVIEW ===================== */
.about-preview-section {
  background: var(--white);
}

.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-side {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border: 1.5px solid var(--blue-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.88rem;
  gap: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.about-img-placeholder .img-icon {
  font-size: 3.5rem;
}

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

.about-accent-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  min-width: 180px;
}

.aac-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.aac-value {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 4px 0;
}

.aac-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.about-content {}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.afi-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.afi-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.afi-text p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: linear-gradient(135deg, #0C2340, #1B3A6B, #1D4E7F);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: visible;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13, 148, 136, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(37, 99, 235, 0.1), transparent);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin: 16px 0;
  position: relative;
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===================== FOOTER ===================== */
.footer {
  background: linear-gradient(180deg, #0C2340, #081A30);
  padding: 72px 0 0;
  color: var(--gray-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {}

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

.footer-brand .logo-sub {
  color: var(--accent-teal);
}

.footer-brand .logo-placeholder {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.footer-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--gray-400);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-400);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.87rem;
  color: var(--gray-400);
  transition: var(--transition);
  display: inline-block;
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(4px);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
}

.ci-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-item a {
  color: var(--gray-400);
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--white);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===================== PAGE BANNER ===================== */
.page-banner {
  background: linear-gradient(135deg, #0C2340, #1B3A6B, #1D4E7F);
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.page-banner::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12), transparent 60%);
  pointer-events: none;
}

.page-banner .container {
  position: relative;
}

.page-banner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

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

.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

/* ===================== COURSES PAGE ===================== */
/* Course Tabs */
.course-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 6px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  width: fit-content;
}

.course-tab {
  padding: 10px 22px;
  border-radius: calc(var(--radius-lg) - 4px);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--gray-600);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.course-tab:hover {
  color: var(--blue);
}

.course-tab.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

/* Course Detail Card */
.course-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cdc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 36px;
  border-bottom: 1px solid var(--gray-100);
  flex-wrap: wrap;
  gap: 20px;
}

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

.cdc-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cdc-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
}

.cdc-subtitle {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.cdc-body {
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cdc-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-light);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.fi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ===================== STUDY ABROAD PAGE ===================== */
.sa-hero-section {
  background: var(--off-white);
}

.sa-country-section {
  padding: 80px 0;
}

.sa-country-section:nth-child(even) {
  background: var(--white);
}

.sa-country-section:nth-child(odd) {
  background: var(--off-white);
}

.sa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sa-inner.reverse {
  direction: rtl;
}

.sa-inner.reverse>* {
  direction: ltr;
}

.sa-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.sa-img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

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

.sa-content {}

.sa-content .section-eyebrow {
  margin-bottom: 12px;
  display: block;
}

.sa-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.sa-content p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 28px;
}

.sa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.sa-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.sa-feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* SA Stats Row */
.sa-stats-row {
  background: linear-gradient(135deg, #0C2340, #1B3A6B, #1D4E7F);
  padding: 60px 0;
}

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

.sa-stat {
  text-align: center;
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sa-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.sa-stat-num span {
  color: #60A5FA;
}

.sa-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ===================== ABOUT PAGE ===================== */
.about-hero {
  background: linear-gradient(135deg, #0C2340, #1B3A6B, #1D4E7F);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.1), transparent 60%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.about-hero-content h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-hero-content h1 span {
  background: linear-gradient(90deg, #5DADE2, #48C9B0, #F4D03F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-hero-img-wrap {
  position: relative;
}

.about-hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

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

.about-hero-img .img-icon {
  font-size: 3.5rem;
}

/* About Stats bar */
.about-stats-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.about-stat-item {}

.about-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* About Story Section */
.about-story-section {
  background: var(--off-white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.about-story-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.about-story-content p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-light));
}

.tl-item {
  position: relative;
  margin-bottom: 36px;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--blue-light);
}

.tl-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.tl-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.value-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}

/* ===================== CONTACT PAGE ===================== */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-form-wrap h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.contact-form-wrap>p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Contact Info */
.contact-info-col {}

.contact-info-col h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.contact-info-col>p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--blue-light);
  transform: translateX(4px);
}

.cic-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cic-content {}

.cic-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.cic-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.5;
}

.cic-value a {
  color: var(--gray-800);
  transition: var(--transition);
}

.cic-value a:hover {
  color: var(--blue);
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
}

.map-placeholder-inner {
  text-align: center;
}

.map-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

/* Quick contact buttons */
.quick-contact {
  display: flex;
  gap: 12px;
  flex-direction: column;
  margin-top: 28px;
}

.quick-contact-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 4px;
}

.qc-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===================== WHATSAPP FLOATING ===================== */
.wa-float-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.wa-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 16px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: float 4s ease-in-out infinite;
}

.wa-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.wa-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.wa-label {
  display: flex;
  flex-direction: column;
}

.wa-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.wa-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ===================== RESPONSIVE ===================== */

/* ── IMAGE CONTAINERS: consistent aspect-ratio + object-fit ─────────────── */
.hero-image,
.study-image,
.abroad-image,
.about-image,
.about-hero-img,
.about-img-placeholder,
.sa-img-placeholder,
.abroad-img-placeholder {
  overflow: hidden;
}

.hero-image img,
.study-image img,
.abroad-image img,
.about-image img,
.about-hero-img img,
.about-img-placeholder img,
.sa-img-placeholder img,
.abroad-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CARD HEIGHTS: auto height + align-items: start on grids ────────────── */
.why-grid,
.courses-grid,
.abroad-grid,
.career-grid,
.values-grid,
.sa-stats-grid,
.about-stats-grid {
  align-items: start;
}

.why-card,
.course-card,
.abroad-card,
.career-card,
.value-card,
.review-card {
  height: auto;
}

/* ── REVIEW SLIDER: correct card widths for 3 / 2 / 1 layout ────────────── */
/* Desktop: 3 cards visible */
.review-card {
  min-width: calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  flex-shrink: 0;
  box-sizing: border-box;
  height: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: unset;
}

.review-text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  overflow: visible;
  white-space: normal;
  word-wrap: break-word;
}

.reviews-slider-wrap {
  overflow: hidden;
}

.reviews-track {
  align-items: stretch;
}

/* ── SECTION HEADER: ensure margin scales on small screens ─────────────── */
.section-header {
  margin-bottom: clamp(32px, 5vw, 64px);
}

/* ===================== TABLET (max-width: 1024px) ===================== */
@media (max-width: 1024px) {

  /* Spacing */
  .section {
    padding: 72px 0;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 72px 24px 56px;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-eyebrow {
    margin: 0 auto 24px;
  }

  .hero-stats {
    justify-content: center;
    gap: 32px;
  }

  /* Review slider: 2 cards on tablet */
  .review-card {
    min-width: calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
  }

  /* Grids → 2 columns */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

  /* Two-column content layouts → single column */
  .about-preview-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-side {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .about-accent-card {
    display: none;
  }

  .sa-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sa-inner.reverse {
    direction: ltr;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-img-wrap {
    max-width: 380px;
    margin: 0 auto;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .contact-form-wrap {
    padding: 32px;
  }

  /* Courses page */
  .cdc-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cdc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* Typography scale */
  .section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  }

  .hero-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
  }

  /* Card padding reduce */
  .why-card {
    padding: 24px 20px;
  }

  .career-card {
    padding: 28px 24px;
  }

  .abroad-card-body {
    padding: 20px;
  }

  /* Image containers — keep aspect ratios */
  .abroad-image {
    aspect-ratio: 16/9;
  }

  .sa-img-placeholder {
    aspect-ratio: 16/9;
  }
}

/* ===================== MOBILE (max-width: 768px) ===================== */
@media (max-width: 768px) {

  /* Spacing */
  .section {
    padding: 56px 0;
  }

  /* Navbar */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-inner {
    padding: 64px 20px 48px;
    gap: 32px;
  }

  .hero-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Section header */
  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(1.4rem, 5.5vw, 1.75rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Grids → 1 column */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .abroad-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .career-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sa-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Card paddings */
  .why-card {
    padding: 20px 16px;
  }

  .career-card {
    padding: 24px 20px;
  }

  .course-card-body {
    padding: 20px;
  }

  .course-card-header {
    padding: 24px 20px 18px;
    min-height: 90px;
  }

  .abroad-card-body {
    padding: 20px 16px;
  }

  /* Images: enforce 16:9 on cards for consistency */
  .abroad-image {
    aspect-ratio: 16/9;
  }

  .hero-image {
    aspect-ratio: 4/3;
  }

  /* About section */
  .about-hero-inner {
    gap: 32px;
  }

  .about-hero-img-wrap {
    max-width: 100%;
  }

  .about-hero-img {
    aspect-ratio: 4/3;
  }

  .about-preview-inner {
    gap: 32px;
    padding: 28px 20px;
  }

  /* Study abroad */
  .sa-inner {
    gap: 32px;
  }

  .sa-img-placeholder {
    aspect-ratio: 4/3;
  }

  .sa-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Review slider: 1 card on mobile */
  .reviews-track {
    gap: 16px;
  }

  .review-card {
    min-width: 100%;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .review-card {
    padding: 24px 20px;
  }

  /* Contact page */
  .contact-form-wrap {
    padding: 24px;
  }

  .contact-grid {
    gap: 32px;
  }

  /* Courses page tabs */
  .course-tabs {
    flex-direction: column;
    width: 100%;
  }

  .course-tab {
    text-align: left;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Page banner */
  .page-banner {
    padding: 96px 0 48px;
  }

  /* WhatsApp float */
  .wa-float-wrap {
    right: 16px;
    bottom: 20px;
  }

  .wa-label {
    display: none;
  }

  .wa-btn {
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===================== SMALL MOBILE (max-width: 480px) ===================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .hero-inner {
    padding: 56px 16px 40px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7vw, 1.85rem);
  }

  .section-title {
    font-size: clamp(1.25rem, 6vw, 1.6rem);
  }

  .section-header {
    margin-bottom: 28px;
  }

  /* Stats: 2 per row on small */
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sa-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact form */
  .contact-form-wrap {
    padding: 20px 16px;
  }

  /* Navbar */
  .navbar-inner {
    padding: 0 16px;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }

  /* Card detail page */
  .cdc-header {
    padding: 20px 24px;
  }

  .cdc-body {
    padding: 24px;
  }

  /* About hero image: square on very small screens */
  .about-hero-img {
    aspect-ratio: 1/1;
  }

  /* Values grid: 2 per row on phones */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Career section padding */
  .career-card {
    padding: 20px 16px;
  }

  /* Hero stats horizontal scroll safe */
  .hero-stats {
    gap: 16px;
  }

  .stat-num {
    font-size: 1.5rem;
  }
}

.hero-image {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.study-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 48px rgba(30, 58, 138, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.study-image:hover img {
  transform: scale(1.04);
}

.abroad-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.abroad-image:hover img {
  transform: scale(1.04);
}

.about-image {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}

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

.about-image:hover img {
  transform: scale(1.03);
}

/* Wrapper utility */
.wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* About preview section — homepage two-column layout */
.about-preview-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.about-left {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-content {
  flex: 1.2;
  min-width: 280px;
  text-align: left;
}

.about-action-space {
  margin-top: 40px;
}

@media (max-width: 992px) {
  .about-preview-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
    gap: 36px;
  }

  .about-content {
    width: 100%;
    min-width: unset;
    text-align: center;
  }

  .about-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-preview-inner {
    padding: 24px 16px;
    gap: 28px;
  }

  .about-left {
    min-width: unset;
    width: 100%;
  }

  .about-content {
    min-width: unset;
    width: 100%;
  }
}

.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}