/* =========================================================
   EDUMATE CONSULTANTS — Global Stylesheet
   ========================================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary palette */
  --clr-primary: #0a1f44;
  --clr-primary-light: #132d5e;
  --clr-accent: #00c9a7;
  --clr-accent-dark: #00a98d;
  --clr-accent-glow: rgba(0, 201, 167, .25);
  --clr-secondary: #6c63ff;

  /* Neutrals */
  --clr-white: #ffffff;
  --clr-off-white: #f4f7fc;
  --clr-light-gray: #e8ecf4;
  --clr-dark: #1a1a2e;
  --clr-text: #333344;
  --clr-text-light: #7b8ba5;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #0a1f44 0%, #1a3a6e 50%, #0d2d5a 100%);
  --grad-accent: linear-gradient(135deg, #00c9a7 0%, #6c63ff 100%);
  --grad-card: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  --grad-cta: linear-gradient(135deg, #00c9a7 0%, #00a98d 100%);

  /* Typography */
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container-max: 1200px;

  /* Misc */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, .08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .12);
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utility ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; position: relative; overflow: hidden; }
.section-dark { background: var(--clr-primary); color: var(--clr-white); }
.section-light { background: var(--clr-off-white); }
.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--clr-text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px;
}
.section-dark .section-subtitle { color: rgba(255,255,255,.65); }
.accent-underline {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--grad-accent);
  border-radius: 4px;
  margin: 12px auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  letter-spacing: .3px;
}
.btn-primary {
  background: var(--grad-cta);
  color: var(--clr-white);
  box-shadow: 0 4px 20px var(--clr-accent-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--clr-accent-glow);
}
.btn-outline {
  border: 2px solid var(--clr-accent);
  color: var(--clr-accent);
}
.btn-outline:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--clr-white);
  color: var(--clr-primary);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* =========================================================
   STICKY HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(10, 31, 68, .95);
}
.header.scrolled {
  background: rgba(10, 31, 68, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.15);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img { height: 42px; }
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  color: var(--clr-white);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--clr-accent);
  transition: var(--transition);
}
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }
.header-nav a:hover { color: var(--clr-accent); }

/* WhatsApp Header Button */
.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--clr-white);
  padding: 5px 20px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
}
.btn-whatsapp-header:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  background-color: white;
}
.btn-whatsapp-header i { font-size: 1.15rem; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--clr-white);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
}
/* Images-only variant: auto height based on image */
.hero.hero-images-only {
  height: auto;
  min-height: auto;
  margin-top: 74px;
}
.hero-swiper { width: 100%; height: 100%; }
.hero-slide {
  position: relative;
  width: 100%;
}
.hero-slide-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,31,68,.55) 0%, rgba(10,31,68,.75) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--clr-white);
  padding: 0 24px;
  z-index: 2;
}
.hero-tagline {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: var(--clr-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
}
.hero-desc {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: rgba(255,255,255,.85);
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero .swiper-pagination-bullet {
  background: rgba(255,255,255,.4);
  width: 12px; height: 12px;
  opacity: 1;
}
.hero .swiper-pagination-bullet-active {
  background: var(--clr-accent);
  width: 30px;
  border-radius: 6px;
}

/* =========================================================
   GATEWAY SECTION (hero text as its own section)
   ========================================================= */
.gateway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gateway-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.gateway-image img {
  width: 100%;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}
.gateway-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  background: var(--grad-accent);
  z-index: 0;
}
.gateway-text .gateway-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 201, 167, .1);
  color: var(--clr-accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 20px;
  letter-spacing: .5px;
}
.gateway-text h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--clr-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.gateway-text p {
  color: var(--clr-text-light);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}
.gateway-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* =========================================================
   WELCOME SECTION
   ========================================================= */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.welcome-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.welcome-image img { width: 100%; border-radius: var(--radius); }
.welcome-image-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--grad-accent);
  color: var(--clr-white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
}
.welcome-text h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}
.welcome-text p {
  margin-bottom: 24px;
  color: var(--clr-text-light);
  font-size: 1.02rem;
}
.welcome-text .highlight-text {
  color: var(--clr-accent-dark);
  font-weight: 600;
}
.welcome-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.welcome-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}
.welcome-feature-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0, 201, 167, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.welcome-feature span { font-weight: 500; color: var(--clr-text); }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.feature-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(0, 201, 167, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--clr-accent);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--clr-accent);
  color: var(--clr-white);
  transform: scale(1.1) rotate(5deg);
}
.feature-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 10px;
}
.feature-card p { color: var(--clr-text-light); font-size: .95rem; }

/* =========================================================
   COURSES CARDS
   ========================================================= */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.course-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.course-card-header {
  background: var(--grad-hero);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.course-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(0, 201, 167, .2);
}
.course-card-header h3 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  color: var(--clr-white);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.course-card-header .course-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(0, 201, 167, .2);
  color: var(--clr-accent);
  font-size: .8rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.course-card-body { padding: 24px; }
.course-card-body p {
  color: var(--clr-text-light);
  font-size: .95rem;
  margin-bottom: 18px;
}
.course-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.course-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--clr-text);
}
.course-meta-item i { color: var(--clr-accent); width: 18px; text-align: center; }

/* =========================================================
   PARTNER COLLEGES CAROUSEL
   ========================================================= */
.colleges-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.college-logo {
  height: 70px;
  filter: grayscale(100%) opacity(.5);
  transition: var(--transition);
}
.college-logo:hover { filter: grayscale(0) opacity(1); transform: scale(1.1); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.testimonial-card:hover { background: rgba(255,255,255,.1); transform: translateY(-5px); }
.testimonial-stars { color: #ffc107; font-size: .95rem; margin-bottom: 16px; }
.testimonial-text { font-size: 1rem; line-height: 1.8; margin-bottom: 20px; color: rgba(255,255,255,.8); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-weight: 700;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
}
.testimonial-info strong { display: block; color: var(--clr-white); font-weight: 600; }
.testimonial-info span { font-size: .85rem; color: rgba(255,255,255,.55); }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: var(--grad-accent);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-banner::before { width: 300px; height: 300px; top: -100px; left: -60px; }
.cta-banner::after { width: 200px; height: 200px; bottom: -60px; right: -40px; }
.cta-banner h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 16px;
}
.cta-banner p { color: rgba(255,255,255,.9); max-width: 550px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--clr-white);
  background: var(--clr-accent);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay i { transform: scale(1); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form { background: var(--clr-white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--clr-primary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--clr-light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .95rem;
  transition: var(--transition);
  background: var(--clr-off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 4px var(--clr-accent-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-cards { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.contact-info-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0, 201, 167, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}
.contact-info-card h4 { font-family: var(--ff-heading); font-weight: 600; color: var(--clr-primary); margin-bottom: 4px; }
.contact-info-card p { color: var(--clr-text-light); font-size: .95rem; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow);
}
.contact-map iframe { width: 100%; height: 260px; border: none; }

/* =========================================================
   ABOUT PAGE — STATS
   ========================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,.12); transform: translateY(-5px); }
.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,.7); font-size: .95rem; font-weight: 500; }

/* About values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.value-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0, 201, 167, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--clr-accent);
}
.value-card h3 { font-family: var(--ff-heading); font-weight: 600; color: var(--clr-primary); margin-bottom: 10px; }
.value-card p { color: var(--clr-text-light); font-size: .95rem; }

/* About content blocks */
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content-grid.reverse { direction: rtl; }
.about-content-grid.reverse > * { direction: ltr; }
.about-image { border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; border-radius: var(--radius); }
.about-text h2 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 16px;
}
.about-text p { color: var(--clr-text-light); font-size: 1.02rem; margin-bottom: 16px; }

/* =========================================================
   PAGE HERO BANNER (sub-pages)
   ========================================================= */
.page-hero {
  background: var(--grad-hero);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(0, 201, 167, .06);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(108, 99, 255, .06);
}
.page-hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--clr-accent); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  font-size: .95rem;
}
.footer-social a:hover { background: var(--clr-accent); border-color: var(--clr-accent); color: var(--clr-white); }
.footer h4 {
  font-family: var(--ff-heading);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .95rem; transition: var(--transition); }
.footer-links a:hover { color: var(--clr-accent); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: .9rem; }
.footer-contact-item i { color: var(--clr-accent); width: 18px; text-align: center; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  text-align: center;
  font-size: .85rem;
}
.footer-bottom a { color: var(--clr-accent); }

/* =========================================================
   FLOATING DECORATIVE ELEMENTS
   ========================================================= */
.floating-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.floating-shape {
  position: absolute;
  opacity: .08;
  animation: float 6s ease-in-out infinite;
}
.floating-shape:nth-child(2) { animation-delay: -2s; animation-duration: 8s; }
.floating-shape:nth-child(3) { animation-delay: -4s; animation-duration: 7s; }
.floating-shape:nth-child(4) { animation-delay: -1s; animation-duration: 9s; }
.floating-shape:nth-child(5) { animation-delay: -3s; animation-duration: 5s; }
.floating-shape-circle { width: 80px; height: 80px; border-radius: 50%; background: var(--clr-accent); }
.floating-shape-cross {
  width: 30px; height: 30px;
  position: relative;
}
.floating-shape-cross::before,
.floating-shape-cross::after {
  content: '';
  position: absolute;
  background: var(--clr-accent);
  border-radius: 3px;
}
.floating-shape-cross::before { width: 100%; height: 6px; top: 50%; transform: translateY(-50%); }
.floating-shape-cross::after { height: 100%; width: 6px; left: 50%; transform: translateX(-50%); }
.floating-shape-ring {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 4px solid var(--clr-accent);
  background: transparent;
}
.floating-shape-dots {
  width: 40px; height: 40px;
  background: radial-gradient(circle, var(--clr-accent) 2px, transparent 2px);
  background-size: 10px 10px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

/* Pulse animation for accent elements */
.floating-shape-pulse {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: pulse-float 4s ease-in-out infinite;
}
@keyframes pulse-float {
  0%, 100% { transform: scale(1) translateY(0); opacity: .15; }
  50% { transform: scale(1.4) translateY(-15px); opacity: .25; }
}

/* =========================================================
   MOBILE NAV OVERLAY
   ========================================================= */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 68, .97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav-overlay a {
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 600;
  transition: var(--transition);
}
.mobile-nav-overlay a:hover { color: var(--clr-accent); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .welcome-grid,
  .about-content-grid,
  .contact-grid,
  .gateway-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content-grid.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --section-py: 60px; }
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 24px; font-size: .85rem; }
  .page-hero { padding: 130px 0 60px; }
  .courses-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   GLightbox overrides
   ========================================================= */
.glightbox-clean .gslide-title { font-family: var(--ff-heading); }
