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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; }

body {
  font-family: 'Manrope', sans-serif;
  background: #0d1117;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===========================
   SHARED LAYOUT
=========================== */
.gp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 200;
  background: rgba(10, 14, 26, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 184, 0, 0.1);
  transition: box-shadow 0.3s;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem; font-weight: 800; letter-spacing: -0.3px;
  display: inline-flex; align-items: center; gap: 8px;
}
.logo-favicon {
  width: 28px; height: 28px; border-radius: 6px;
  object-fit: contain; flex-shrink: 0;
}
.footer-logo .logo-favicon { width: 32px; height: 32px; border-radius: 7px; }
.logo-gold  { color: #FFB800; }
.logo-white { color: #fff; }

.nav-links {
  display: flex; align-items: center; gap: 34px;
  font-size: 0.93rem; font-weight: 500;
}
.nav-links a { color: #cdd5e0; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }

.btn-contact {
  background: #FFB800 !important;
  color: #0d1117 !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s !important;
}
.btn-contact:hover { background: #ffd04a !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: #0d1117; border-top: 1px solid rgba(255,184,0,0.1);
}
.mobile-menu a {
  padding: 14px 40px; font-size: 1rem; font-weight: 500;
  color: #cdd5e0; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: rgba(255,184,0,0.06); color: #fff; }
.btn-contact-mobile {
  margin: 16px 40px 20px !important;
  background: #FFB800; color: #0d1117 !important;
  font-weight: 700; border-radius: 8px; text-align: center;
  padding: 12px 22px !important; border-bottom: none !important;
}
.mobile-menu.open { display: flex; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: #080d1a url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,13,26,.92) 0%, rgba(8,13,26,.75) 55%, rgba(8,13,26,.55) 100%);
  z-index: 0;
}

/* Animated geometric circles */
.hero::before, .hero::after {
  content: '';
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,184,0,.09) 0%, transparent 70%);
  top: -80px; right: 10%;
  animation: pulseBg 7s ease-in-out infinite;
}
.hero::after {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255,184,0,.07) 0%, transparent 70%);
  bottom: 0; left: 5%;
  animation: pulseBg 9s ease-in-out infinite reverse;
}
@keyframes pulseBg {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.6; }
}

.hero-container {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,184,0,.12); border: 1px solid rgba(255,184,0,.35);
  color: #FFB800; font-size: 0.84rem; font-weight: 600;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 26px; letter-spacing: .3px;
}

.hero-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800; line-height: 1.16; color: #fff; margin-bottom: 20px; letter-spacing: -0.5px;
}
.highlight { color: #FFB800; }

.hero-sub {
  font-size: 1rem; line-height: 1.75; color: #9aabbf; max-width: 480px; margin-bottom: 38px;
}

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

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFB800; color: #0d1117; font-weight: 700; font-size: 0.97rem;
  padding: 14px 30px; border-radius: 10px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(255,184,0,.3);
}
.btn-primary:hover {
  background: #ffd04a; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,184,0,.45);
}

.btn-secondary {
  display: inline-flex; align-items: center;
  background: transparent; color: #fff; font-weight: 600; font-size: 0.97rem;
  padding: 14px 30px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.32);
  transition: border-color .2s, background .2s, color .2s, transform .15s;
}
.btn-secondary:hover {
  border-color: #FFB800; color: #FFB800;
  background: rgba(255,184,0,.06); transform: translateY(-2px);
}

/* Stats */
.hero-stats {
  display: flex; align-items: center;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1);
}
.stat { display: flex; flex-direction: column; gap: 4px; padding-right: 32px; }
.stat:first-child { padding-left: 0; }
.stat-num-row { display: flex; align-items: baseline; gap: 1px; }
.stat-num { font-size: 1.75rem; font-weight: 800; color: #FFB800; line-height: 1; }
.stat-label { font-size: 0.79rem; color: #7a8fa0; font-weight: 500; }
.stat-divider { width: 1px; height: 42px; background: rgba(255,255,255,.15); margin-right: 32px; }

/* Hero illustration */
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image img {
  width: 100%; max-width: 520px; height: auto; object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 48px rgba(255,184,0,.18));
  animation: float 5.5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-16px); }
}

/* ===========================
   ABOUT
=========================== */
.about-section {
  background: #f0f2f6;
  padding: 96px 0;
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: flex-start;
}

.sec-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px;
  color: #FFB800; text-transform: uppercase; margin-bottom: 16px;
}
.sec-h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.18; color: #0d1117;
  margin-bottom: 24px; letter-spacing: -0.3px;
}
.sec-h2.dark { color: #0d1117; }
.sec-h2.light { color: #fff; }
.gold-text { color: #FFB800; }

.body-p {
  color: #4a5568; font-size: 0.95rem; line-height: 1.78; margin-bottom: 16px;
}
.mt-lg { margin-top: 12px; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFB800; color: #0d1117; font-weight: 700; font-size: 0.93rem;
  padding: 13px 28px; border-radius: 10px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(255,184,0,.25);
}
.btn-gold:hover {
  background: #ffd04a; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,184,0,.38);
}

.about-right { display: flex; flex-direction: column; gap: 18px; }

.feature-card {
  background: #fff; border-radius: 14px;
  padding: 22px 24px; display: flex; align-items: flex-start; gap: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }

.feature-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: #FFB800; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; color: #fff; }

.feature-text h4 { font-size: 0.97rem; font-weight: 700; color: #0d1117; margin-bottom: 5px; }
.feature-text p  { font-size: 0.84rem; color: #718096; line-height: 1.55; }

/* ===========================
   IMPACT STATS
=========================== */
.impact-section {
  background: #0d1117;
  padding: 72px 0;
  border-top: 1px solid rgba(255,184,0,.08);
  border-bottom: 1px solid rgba(255,184,0,.08);
}

.impact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}

.impact-item {
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.impact-item:last-child { border-right: none; }
.impact-item:hover { background: rgba(255,184,0,.04); }

.impact-num-row { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.impact-num { font-size: 2.6rem; font-weight: 800; color: #FFB800; line-height: 1; }
.impact-item p { font-size: 0.84rem; color: #8b9ab5; margin-top: 8px; font-weight: 500; }

/* ===========================
   CAREER GUIDANCE
=========================== */
.career-section {
  background: #eef1f6;
  padding: 96px 0;
}

.sec-header { text-align: center; margin-bottom: 60px; }
.sec-sub { font-size: 0.95rem; color: #718096; margin-top: 10px; }
.sec-sub.light { color: #8b9ab5; }

.green-tag { color: #26c6a0; }
.gold-tag  { color: #FFB800; }

.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  max-width: 1200px; margin: 0 auto;
}

.step-card {
  background: #fff; border-radius: 16px;
  padding: 32px 22px; text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  border-top: 3px solid transparent;
}
.step-card:hover {
  transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.12);
  border-top-color: #FFB800;
}

.step-badge {
  width: 38px; height: 38px; border-radius: 50%;
  background: #FFB800; color: #0d1117;
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}

.step-icon-wrap {
  width: 54px; height: 54px; border-radius: 14px;
  background: #e6f9f4; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
}
.step-icon-wrap svg { width: 26px; height: 26px; color: #26c6a0; }

.step-card h4 { font-size: 1rem; font-weight: 700; color: #0d1117; margin-bottom: 10px; }
.step-card p  { font-size: 0.84rem; color: #718096; line-height: 1.6; }

.sec-cta { text-align: center; margin-top: 52px; }
.btn-rounded-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFB800; color: #0d1117;
  font-weight: 700; font-size: 0.97rem;
  padding: 16px 40px; border-radius: 50px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(255,184,0,.3);
}
.btn-rounded-gold:hover {
  background: #ffd04a; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,184,0,.45);
}

/* ===========================
   PROCESS
=========================== */
.process-section {
  background: #f0f2f6;
  padding: 96px 0;
  border-top: 1px solid rgba(0,0,0,.05);
}

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

.process-card {
  background: #fff; border-radius: 16px;
  padding: 32px 26px; position: relative;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.process-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: #FFB800; transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.process-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }
.process-card:hover::after { transform: scaleX(1); }

.process-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: #FFB800; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.process-icon svg { width: 26px; height: 26px; color: #0d1117; }

.process-num {
  position: absolute; top: 24px; right: 24px;
  font-size: 2.2rem; font-weight: 800; color: #e8ecf0;
  line-height: 1;
}

.process-card h4 { font-size: 1.05rem; font-weight: 700; color: #0d1117; margin-bottom: 10px; }
.process-card p  { font-size: 0.85rem; color: #718096; line-height: 1.65; }

.explore-link {
  color: #FFB800; font-size: 0.85rem; font-weight: 700;
  text-decoration: none; display: inline-block; margin-top: 14px;
  transition: letter-spacing .2s;
}
.explore-link:hover { letter-spacing: .5px; }

/* ===========================
   COURSES
=========================== */
.courses-section {
  background: #0e1525;
  padding: 96px 0;
}

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

.course-card {
  background: #1a2540; border-radius: 16px;
  padding: 28px 26px; border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  border-color: rgba(255,184,0,.25);
}

.course-icon {
  width: 52px; height: 52px; border-radius: 14px;
  margin-bottom: 18px; display: flex; align-items: center; justify-content: center;
}
.course-icon svg { width: 26px; height: 26px; color: #fff; }
.ci-blue   { background: #2563eb; }
.ci-purple { background: #7c3aed; }
.ci-green  { background: #059669; }
.ci-orange { background: #f5a623; }
.ci-pink   { background: #db2777; }
.ci-teal   { background: #0891b2; }

.course-title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.course-card h4 { font-size: 1rem; font-weight: 700; color: #fff; }

.cpill {
  font-size: 0.67rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px;
  background: rgba(245,166,35,.18); color: #f5a623; border: 1px solid rgba(245,166,35,.4);
}
.cpill.trending {
  background: rgba(38,198,160,.18); color: #26c6a0; border-color: rgba(38,198,160,.4);
}

.course-card p { font-size: 0.84rem; color: #8b9ab5; line-height: 1.65; margin-bottom: 18px; }

.enquire-link {
  color: #FFB800; font-size: 0.85rem; font-weight: 700;
  transition: letter-spacing .2s;
}
.enquire-link:hover { letter-spacing: .5px; }

/* ===========================
   WHY US
=========================== */
.why-section {
  background: #f0f2f6;
  padding: 96px 0;
}

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

.why-card {
  background: #fff; border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  border-left: 4px solid transparent;
}
.why-card:hover {
  transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.13);
  border-left-color: #FFB800;
}

.why-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(255,184,0,.12); display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; color: #FFB800; }

.why-card h4 { font-size: 1rem; font-weight: 700; color: #0d1117; margin-bottom: 10px; }
.why-card p  { font-size: 0.85rem; color: #718096; line-height: 1.65; }

/* ===========================
   REVIEWS CTA
=========================== */
.reviews-section {
  background: linear-gradient(135deg, #0d1117 0%, #1a2540 100%);
  padding: 88px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,184,0,.12) 0%, transparent 60%);
}

.reviews-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.reviews-stars { font-size: 2rem; color: #FFB800; letter-spacing: 6px; margin-bottom: 20px; }
.reviews-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.3px;
}
.reviews-inner p { font-size: 1rem; color: #8b9ab5; line-height: 1.7; margin-bottom: 36px; }

.btn-reviews {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFB800; color: #0d1117;
  font-weight: 700; font-size: 0.97rem;
  padding: 16px 40px; border-radius: 50px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 28px rgba(255,184,0,.35);
}
.btn-reviews:hover {
  background: #ffd04a; transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,184,0,.5);
}

/* ===========================
   CONTACT / ENROLL
=========================== */
.enroll-section {
  background: #080d1a;
  padding: 96px 0;
  border-top: 1px solid rgba(255,184,0,.08);
}

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

.enroll-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

.contact-card {
  background: #131c32; border-radius: 18px;
  padding: 36px 32px; border: 1px solid rgba(255,255,255,.07);
}
.contact-card h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 28px; }

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

.contact-item { display: flex; align-items: center; gap: 16px; }

.contact-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(255,184,0,.12); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: #FFB800;
}

.contact-label { font-size: 0.76rem; color: #8b9ab5; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-val { font-size: 0.9rem; color: #cdd5e0; font-weight: 500; transition: color .2s; }
a.contact-val:hover { color: #FFB800; }

/* ===========================
   FOOTER
=========================== */
.footer { background: #0d1117; padding-top: 72px; }

.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .footer-logo { font-size: 1.45rem; display: inline-block; margin-bottom: 16px; }
.footer-brand p { color: #718096; font-size: 0.85rem; line-height: 1.75; max-width: 280px; }

.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,.08); color: #cdd5e0;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.social-btn:hover { background: rgba(255,184,0,.15); color: #FFB800; }

.footer-col h5 {
  font-size: 0.71rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #8b9ab5; margin-bottom: 22px;
}
.footer-col a {
  display: block; color: #8b9ab5; font-size: 0.88rem;
  margin-bottom: 13px; transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.gold-link { color: #FFB800 !important; }
.gold-link:hover { color: #ffd04a !important; }
.footer-community-desc { color: #4a5568; font-size: 0.83rem; line-height: 1.65; margin-top: 8px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 16px;
}
.footer-bottom p, .footer-bottom a { font-size: 0.82rem; color: #4a5568; }
.footer-bottom a:hover { color: #8b9ab5; }

/* ===========================
   WHATSAPP FLOAT
=========================== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  z-index: 300; transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.65); }

/* ===========================
   SCROLL REVEAL ANIMATIONS
=========================== */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal        { transform: translateY(24px); }
.reveal-up     { transform: translateY(40px); }
.reveal-left   { transform: translateX(-40px); }
.reveal-right  { transform: translateX(40px); }

.reveal.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1; transform: translate(0, 0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; padding-top: 100px; gap: 40px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 380px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .enroll-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .gp-container { padding: 0 20px; }
  .hero-container { padding: 88px 20px 60px; }
  .hero-heading { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat { padding: 0; align-items: center; }
  .hero-image img { max-width: 300px; }

  .about-section, .career-section, .process-section,
  .courses-section, .why-section, .enroll-section { padding: 72px 0; }

  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .process-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .reviews-section { padding: 72px 20px; }
  .btn-reviews { font-size: 0.87rem; padding: 14px 28px; }
  .enroll-grid { gap: 32px; }
}
