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

:root {
  --primary: #0057ff;
  --primary-dark: #003ecb;
  --primary-light: #e8eeff;
  --accent: #00c2ff;
  --dark: #ffffff;
  --dark2: #f8fafc;
  --text: #1e293b;
  --text-muted: #64748b;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --white: #ffffff;
  --success: #10b981;
  --error: #ef4444;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,87,255,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,87,255,0.12), 0 8px 24px rgba(0,0,0,0.08);
  --radius: 14px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }
.btn-apply {
  background-color: black;
  color: white;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-apply:hover {
  background-color: #333;
}
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 45px;   /* 🔥 perfect navbar size */
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,87,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,87,255,0.4); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.05);
  color: var(--primary);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: var(--primary-light); border-color: var(--primary); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.full-width { width: 100%; justify-content: center; }

/* ===== SECTION LABELS ===== */
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-top: 0.5rem; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0.75rem auto 0; }

/* ===== NAVBAR - LIGHT THEME ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1140px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.2rem;
  color: var(--dark);
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.9rem;
}
.logo-text .accent { color: var(--primary); }

.nav-links {
  display: flex; list-style: none; gap: 0.25rem; margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  padding: 0.5rem 0.85rem; border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary); background: var(--primary-light);
}

.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--gradient);
  color: white !important;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,87,255,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,87,255,0.4); }

.hamburger {
  display: none; background: none; border: none;
  font-size: 1.3rem; cursor: pointer; color: var(--text);
  margin-left: auto;
}

.mobile-menu {
  display: none; flex-direction: column;
  background: white; border-top: 1px solid var(--border);
  padding: 0.75rem 1.5rem 1rem;
}
.mobile-menu a {
  padding: 0.65rem 0; color: var(--text-muted); font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ===== HERO - LIGHT THEME ===== */
.hero {
  min-height: calc(100vh - 68px);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 5rem 1.5rem;
  gap: 4rem;
  max-width: 100%;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.1;
}
.s1 { width: 500px; height: 500px; background: var(--primary); top: -150px; right: -100px; }
.s2 { width: 300px; height: 300px; background: var(--accent); bottom: 50px; left: -80px; }
.s3 { width: 200px; height: 200px; background: #7c3aed; top: 40%; left: 35%; }

.hero-content {
  max-width: 620px; margin: 0 auto;
  position: relative; z-index: 1;
  flex: 1;
  text-align: left;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.82rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: 50px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.hero-badge i { color: #fbbf24; }

.hero h1 { color: var(--text); margin-bottom: 1.25rem; }
.hero p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--text); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-visual {
  flex: 1; display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 1;
  max-width: 400px; margin: 0 auto;
}

.code-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.code-header {
  background: var(--surface);
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.code-body { padding: 1.5rem; font-family: 'Courier New', monospace; font-size: 0.88rem; }
.code-line { margin-bottom: 4px; color: var(--text); }
.code-line.pl { padding-left: 1.5rem; }
.kw { color: #d73a49; font-weight: 600; }
.fn { color: #6f42c1; }
.str { color: #032f62; }
.cursor { animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0} }

/* ===== PAGE HERO - LIGHT ===== */
.page-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { color: var(--text); margin-top: 0.5rem; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; }
.page-hero .section-tag { background: var(--primary-light); color: var(--primary); border: 1px solid var(--border); }

/* ===== FEATURES ===== */
.features { padding: 6rem 1.5rem; background: var(--surface); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.feature-card {
  background: white; border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--primary);
  margin-bottom: 1.25rem;
}
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.93rem; }

/* ===== DOMAINS ===== */
.domains { padding: 6rem 1.5rem; background: white; }
.domains-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.25rem;
}
.domain-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1rem; text-align: center;
  transition: all 0.2s; cursor: default;
}
.domain-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.domain-card i { font-size: 2rem; margin-bottom: 0.75rem; color: var(--primary); display: block; }
.domain-card h4 { font-size: 0.92rem; margin-bottom: 0.4rem; }
.domain-card span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gradient);
  padding: 5rem 1.5rem; text-align: center;
}
.cta-banner h2 { color: white; font-size: 2rem; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }

/* ===== FOOTER - LIGHT ===== */
.footer { background: var(--surface); color: var(--text-muted); padding: 4rem 1.5rem 0; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { color: var(--text); }
.footer-brand p { margin-top: 0.75rem; font-size: 0.9rem; max-width: 280px; }
.footer-links h4 { color: var(--text); margin-bottom: 1rem; font-size: 0.9rem; }
.footer-links a, .footer-links p {
  display: block; color: var(--text-muted); font-size: 0.88rem;
  margin-bottom: 0.5rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-links p i { margin-right: 6px; color: var(--primary); }
.footer-bottom {
  padding: 1.25rem 0; text-align: center;
  font-size: 0.85rem; color: var(--text-muted);
}

/* ===== ABOUT PAGE - LIGHT ===== */
.about-mission { padding: 6rem 1.5rem; background: white; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text .section-tag { margin-bottom: 0.75rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-checks { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.check-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.93rem; font-weight: 500;
}
.check-item i { color: var(--success); font-size: 1rem; }

.about-image-block { position: relative; }
.about-img-card {
  background: linear-gradient(135deg, var(--primary-light), #e0f2fe);
  border-radius: 20px; height: 380px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.img-placeholder { font-size: 5rem; color: var(--primary); opacity: 0.4; }
.img-stat-overlay {
  position: absolute; background: white;
  border-radius: 12px; padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; align-items: center;
}
.img-stat-overlay.top-right { top: 1.5rem; right: 1.5rem; }
.img-stat-overlay.bottom-left { bottom: 1.5rem; left: 1.5rem; }
.big-num { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.img-stat-overlay span:last-child { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

.values-section { padding: 6rem 1.5rem; background: var(--surface); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.value-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: all 0.2s;
}
.value-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.value-num {
  font-family: 'Sora', sans-serif; font-size: 2.5rem; font-weight: 800;
  color: var(--primary-light); margin-bottom: 0.75rem;
  -webkit-text-stroke: 2px var(--primary);
}
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { color: var(--text-muted); font-size: 0.92rem; }

.team-section { padding: 6rem 1.5rem; background: white; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.team-card {
  text-align: center; background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem 1.5rem;
  transition: all 0.2s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--primary);
  margin: 0 auto 1rem;
}
.team-card h4 { margin-bottom: 0.25rem; }
.team-card > p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.team-socials { display: flex; justify-content: center; gap: 0.5rem; }
.team-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-muted);
  transition: all 0.2s;
}
.team-socials a:hover { border-color: var(--primary); color: var(--primary); }

/* ===== INTERNSHIPS PAGE ===== */
.how-it-works { padding: 6rem 1.5rem; background: var(--surface); }
.steps-grid {
  display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; justify-content: center;
}
.step-card {
  flex: 1; min-width: 160px; max-width: 220px;
  text-align: center; padding: 1.5rem 1rem;
}
.step-num {
  font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.5rem;
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); }
.step-arrow {
  display: flex; align-items: center; padding-top: 1.5rem;
  font-size: 1.2rem; color: #cbd5e1;
}

.programs-section { padding: 6rem 1.5rem; background: white; }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.program-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: all 0.2s; position: relative; overflow: hidden;
}
.program-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.program-card.featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--shadow-md); }
.featured-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gradient); color: white;
  font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.program-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.program-icon.python { background: #fef3c7; color: #d97706; }
.program-icon.react { background: #e0f2fe; color: #0284c7; }
.program-icon.ml { background: #f3e8ff; color: #7c3aed; }
.program-icon.android { background: #dcfce7; color: #16a34a; }
.program-icon.cloud { background: #e0f2fe; color: #0284c7; }
.program-icon.cyber { background: #fee2e2; color: #dc2626; }
.program-content h3 { margin-bottom: 0.6rem; }
.program-content p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.program-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.program-meta span { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.program-meta i { color: var(--primary); }
.program-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.program-tags span {
  background: var(--primary-light); color: var(--primary);
  font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.65rem; border-radius: 50px;
}

.benefits-section { padding: 5rem 1.5rem; background: var(--surface); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.benefit-item {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  font-weight: 500; font-size: 0.93rem;
}
.benefit-item i { color: var(--success); font-size: 1.1rem; flex-shrink: 0; }

/* ===== VERIFY PAGE ===== */
.verify-section { padding: 5rem 1.5rem; background: white; }
.verify-card {
  max-width: 700px; margin: 0 auto 4rem;
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 3rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.verify-icon {
  width: 72px; height: 72px;
  background: var(--primary-light);
  border-radius: 50%; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--primary);
}
.verify-card h2 { margin-bottom: 0.6rem; }
.verify-card > p { color: var(--text-muted); margin-bottom: 2rem; }

.verify-form { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.input-group {
  flex: 1; min-width: 240px;
  display: flex; align-items: center; gap: 0;
  border: 2px solid var(--border); border-radius: 50px;
  overflow: hidden; background: white;
  transition: border-color 0.2s;
}
.input-group:focus-within { border-color: var(--primary); }
.input-icon { padding: 0 0.75rem 0 1.25rem; color: var(--text-muted); font-size: 0.9rem; }
.input-group input {
  flex: 1; border: none; outline: none; padding: 0.85rem 1rem 0.85rem 0;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  color: var(--text);
}
.verify-btn { white-space: nowrap; }

.verify-result {
  border-radius: var(--radius); padding: 0;
  overflow: hidden; text-align: left; border: 1px solid;
}
.verify-result.success { border-color: var(--success); }
.verify-result.error { border-color: var(--error); }
.result-header {
  display: flex; align-items: center; gap: 10px;
  padding: 1rem 1.5rem; font-weight: 600;
}
.verify-result.success .result-header { background: #d1fae5; color: #065f46; }
.verify-result.error .result-header { background: #fee2e2; color: #991b1b; }
.result-header i { font-size: 1.1rem; }
.result-body { padding: 1.25rem 1.5rem; }
.result-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.65rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.result-row:last-child { border-bottom: none; }
.result-label { color: var(--text-muted); font-weight: 500; }
.result-value { font-weight: 600; }
.status-badge {
  background: #d1fae5; color: #065f46;
  padding: 0.2rem 0.75rem; border-radius: 50px; font-size: 0.82rem;
}

.verify-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.verify-info-card {
  text-align: center; padding: 2rem;
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
}
.verify-info-card i {
  font-size: 2rem; color: var(--primary); margin-bottom: 1rem; display: block;
}
.verify-info-card h4 { margin-bottom: 0.5rem; }
.verify-info-card p { font-size: 0.88rem; color: var(--text-muted); }

.faq-section { padding: 6rem 1.5rem; background: var(--surface); }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
}
.faq-question {
  padding: 1.1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--primary-light); }
.faq-question i { color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  color: var(--text-muted); font-size: 0.9rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.5rem 1.25rem; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 6rem 1.5rem; background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h3 { margin-bottom: 0.75rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item h4 { font-size: 0.88rem; margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.88rem; color: var(--text-muted); }
.social-links h4 { margin-bottom: 0.75rem; font-size: 0.9rem; }
.social-icons { display: flex; gap: 0.6rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }

.contact-form-box {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-box h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
  width: 100%; border: 2px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.7rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  color: var(--text); outline: none; transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-success {
  background: #d1fae5; color: #065f46; border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem; margin-top: 1rem; font-weight: 500; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding: 4rem 1.5rem 3rem; }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 360px; }
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .about-image-block { order: -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid { gap: 1rem; }
  .step-arrow { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .programs-grid, .features-grid { grid-template-columns: 1fr; }
}