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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  overflow-x: hidden;
  background: #fff;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ══════ NAV ══════ */
.main-nav {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 56px;
}
.main-nav-left { flex-shrink: 0; }
.main-nav-logo img { height: 26px; }
.main-nav-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.main-nav-link {
  color: #374151;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
}
.main-nav-link:hover { background: #f3f4f6; }
.main-nav-right { flex-shrink: 0; }
.main-nav-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #0b5adb;
  color: white;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 6px;
}
.main-nav-btn:hover { background: #0945a8; }
.main-nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #374151;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

/* Mobile Nav */
.mob-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0f172a;
}
.mob-menu-overlay.open { display: flex; flex-direction: column; }
.mob-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mob-menu-logo img { height: 24px; filter: brightness(0) invert(1); }
.mob-menu-close { background: none; border: none; color: white; font-size: 1.6rem; cursor: pointer; }
.mob-menu-body { padding: 20px; flex: 1; }
.mob-menu-item {
  display: block;
  padding: 16px 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .main-nav-center, .main-nav-right { display: none; }
  .main-nav-mobile-toggle { display: block; }
}

/* ══════ HERO ══════ */
.hero {
  background: #0b5adb;
  color: white;
  padding: 60px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-content { text-align: center; }
.deadline-banner {
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}
.hero h1 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.hero h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #bfdbfe;
}
.hero p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #dbeafe;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.btn-primary {
  background: #1f2937;
  color: white;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #374151; }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.hero-form {
  background: white;
  padding: 28px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.hero-form h3 {
  color: #1f2937;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.interest-form { display: flex; flex-direction: column; gap: 12px; }
.interest-form input,
.interest-form select {
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
}
.interest-form input:focus,
.interest-form select:focus { outline: none; border-color: #0b5adb; }
.phone-input { display: flex; gap: 8px; }
.country-code { flex: 0 0 90px; }
.phone-input input { flex: 1; min-width: 0; }
.btn-submit {
  background: #0b5adb;
  color: white;
  padding: 13px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
}
.btn-submit:hover { background: #0945a8; }

/* Desktop hero */
@media (min-width: 769px) {
  .hero { padding: 80px 0; }
  .hero .container {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  .hero-content { flex: 1.5; text-align: left; }
  .hero-form { flex: 1; padding: 36px; }
  .hero h1 { font-size: 2.6rem; }
  .hero h2 { font-size: 1.25rem; }
  .hero p { font-size: 1.05rem; }
  .hero-buttons { justify-content: flex-start; }
  .btn-primary { padding: 14px 28px; font-size: 15px; }
}

/* ══════ FEATURES ══════ */
.program-features { padding: 48px 0; background: #f8fafc; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature {
  text-align: center;
  padding: 20px 12px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.feature h4 {
  color: #6b7280;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feature h3 { color: #1f2937; font-size: 0.9rem; font-weight: 700; }

@media (min-width: 769px) {
  .program-features { padding: 60px 0; }
  .features-grid { grid-template-columns: repeat(5, 1fr); gap: 24px; }
  .feature { padding: 28px 18px; }
  .feature h4 { font-size: 13px; }
  .feature h3 { font-size: 1.15rem; }
}

/* ══════ ABOUT / WHY CHOOSE ══════ */
.about-emc { padding: 60px 0; background: #fff; }
.about-emc h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1f2937;
}
.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 36px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.about-item {
  background: #f8fafc;
  padding: 28px 20px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #e5e7eb;
}
.about-item .icon {
  width: 60px; height: 60px;
  background: #0b5adb;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem; color: white;
}
.about-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #1f2937; }
.about-item p { color: #6b7280; line-height: 1.6; font-size: 0.88rem; }

@media (min-width: 769px) {
  .about-emc { padding: 90px 0; }
  .about-emc h2 { font-size: 2.4rem; }
  .section-subtitle { font-size: 1.1rem; margin-bottom: 50px; }
  .about-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .about-item { padding: 36px 28px; }
  .about-item .icon { width: 70px; height: 70px; font-size: 1.7rem; }
}

/* ══════ CURRICULUM ══════ */
.curriculum { padding: 60px 0; background: #1e293b; color: white; }
.curriculum h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 36px;
  color: white;
}
.modules { max-width: 800px; margin: 0 auto; }
.module {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.12);
}
.module-header {
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}
.module-number {
  background: #0b5adb;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 11px;
  white-space: nowrap;
}
.module h3 { font-size: 0.92rem; font-weight: 600; }
.module-content {
  padding: 0 18px 16px;
  color: #cbd5e1;
  line-height: 1.6;
  display: none;
  font-size: 0.85rem;
}
.module.active .module-content { display: block; }

@media (min-width: 769px) {
  .curriculum { padding: 90px 0; }
  .curriculum h2 { font-size: 2.4rem; margin-bottom: 50px; }
  .module-header { padding: 22px 28px; gap: 18px; }
  .module-number { font-size: 13px; padding: 6px 14px; }
  .module h3 { font-size: 1.1rem; }
  .module-content { padding: 0 28px 22px; font-size: 0.92rem; }
}

/* ══════ STATS ══════ */
.stats-section { padding: 60px 0; background: #f1f5f9; }
.stats-section h2 {
  text-align: center;
  font-size: 1.6rem;
  color: #1f2937;
  margin-bottom: 32px;
  font-weight: 700;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
}
.stat-number { font-size: 2rem; font-weight: 800; color: #0b5adb; margin-bottom: 6px; }
.stat-label { font-size: 0.85rem; font-weight: 600; color: #374151; }

@media (min-width: 769px) {
  .stats-section { padding: 80px 0; }
  .stats-section h2 { font-size: 2.2rem; margin-bottom: 44px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .stat-box { padding: 36px 24px; }
  .stat-number { font-size: 2.8rem; }
  .stat-label { font-size: 1rem; }
}

/* ══════ PROGRAM HIGHLIGHTS ══════ */
.bootcamp-overview { padding: 60px 0; background: white; }
.bootcamp-overview h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: #1f2937;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.overview-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.overview-item .icon {
  width: 42px; height: 42px;
  background: #0b5adb;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: white; flex-shrink: 0;
}
.overview-item p { font-weight: 600; color: #1f2937; font-size: 0.85rem; }

@media (min-width: 769px) {
  .bootcamp-overview { padding: 90px 0; }
  .bootcamp-overview h2 { font-size: 2.4rem; margin-bottom: 50px; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .overview-item { padding: 22px; gap: 16px; }
  .overview-item .icon { width: 50px; height: 50px; font-size: 1.2rem; }
  .overview-item p { font-size: 0.92rem; }
}

/* ══════ FOOTER ══════ */
.main-footer {
  background: #0f172a;
  color: #d1d5db;
  padding: 3rem 16px 0;
}
.main-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-logo { margin-bottom: 8px; }
.footer-logo img { height: 28px; filter: brightness(0) invert(1); }
.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #9ca3af;
  margin-bottom: 1rem;
  max-width: 280px;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: #9ca3af; font-size: 1.1rem; text-decoration: none; }
.footer-social a:hover { color: white; }
.footer-links-col h4 { font-size: 0.85rem; font-weight: 700; color: white; margin-bottom: 0.75rem; }
.footer-links-col a {
  display: block;
  font-size: 0.82rem;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.footer-links-col a:hover { color: white; }
.main-footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 1.25rem 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.main-footer-bottom p { font-size: 0.75rem; color: #6b7280; margin: 0; }

@media (min-width: 769px) {
  .main-footer { padding: 4rem 2rem 0; }
  .main-footer-container {
    flex-direction: row;
    gap: 4rem;
  }
  .footer-brand-col { flex: 2; }
  .footer-links-col { flex: 1; }
}
