:root {
  --blue-primary: #3a58ef;
  --blue-dark: #182878;
  --navy: #021c56;
  --navy-deep: #00174c;
  --dark-navy: #26244a;
  --text-dark: #1d2939;
  --text-body: #2a3343;
  --text-muted: #475467;
  --border-light: #eaecf0;
  --bg-light: #ebeefd;
  --gray-border: #d0d5dd;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a { text-decoration: none; }

/* ===== HERO ===== */
.hero-section { padding: 56px 0; }
.hero-section h1 { font-size: 48px; font-weight: 700; line-height: 1.2; letter-spacing: -0.96px; }
.hero-section h1 .text-blue { color: var(--blue-primary); }
.hero-section h1 .text-dark-custom { color: var(--text-dark); }
.hero-subtitle { color: var(--text-muted); font-size: 24px; font-weight: 600; line-height: 30px; }

.stat-card {
  background: var(--blue-dark);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.stat-card .stat-value { color: #fff; font-size: 30px; font-weight: 700; line-height: 38px; }
.stat-card .stat-label { color: #fff; font-size: 16px; font-weight: 600; line-height: 24px; margin-top: 8px; }

.btn-apply {
  background: var(--blue-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 6px;
  border: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-apply:hover { background: #2d47d0; color: #fff; }

/* ===== SECTION COMMON ===== */
.section-title { font-size: 36px; font-weight: 700; line-height: 1.2; letter-spacing: -0.72px; color: var(--dark-navy); }
.section-title .text-blue { color: var(--blue-primary); }
.section-subtitle { font-size: 18px; color: var(--text-muted); line-height: 28px; }

/* ===== ELIGIBILITY ===== */
.eligibility-section { background: var(--bg-light); padding: 56px 0; }

.criteria-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.criteria-card:hover {
  transform: translateY(-4px);
  border-right: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
  border-top: 1px solid var(--text-dark);
  border-left: 1px solid var(--text-dark);
}
.criteria-card .icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.3s;
}
.criteria-card .icon-box i { font-size: 24px; color: #04092a; transition: color 0.3s; }
.criteria-card:hover .icon-box { background: var(--text-dark); }
.criteria-card:hover .icon-box i { color: #fff; }
.criteria-card p { color: var(--text-body); font-size: 20px; font-weight: 600; line-height: 30px; margin: 0; }

.fee-banner {
  border-radius: 16px;
  padding: 32px 64px;
  background: linear-gradient(-40.87deg, #dee3fd 0%, #f3ecfd 100%);
  box-shadow: 0 12px 16px -4px rgba(16,24,40,0.08), 0 4px 6px -2px rgba(16,24,40,0.03);
}

/* ===== JOURNEY ===== */
.journey-section { padding: 56px 0; }

.step-card { position: relative; text-align: center; }
.step-circle {
  width: 80px; height: 80px; border-radius: 50%;
  border: 3px solid #f2f4f7; background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-weight: 800; font-size: 24px; color: var(--text-dark); letter-spacing: -0.48px;
}
.time-chip {
  background: var(--bg-light);
  border-radius: 50px;
  padding: 4px 12px;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.time-chip i { color: var(--blue-dark); font-size: 16px; }
.time-chip span { color: var(--blue-dark); font-size: 14px; font-weight: 500; }
.step-card h5 { color: var(--text-body); font-size: 18px; font-weight: 700; line-height: 28px; margin-bottom: 8px; }
.step-card .step-desc { color: var(--text-body); font-size: 14px; font-weight: 500; line-height: 20px; }

.step-connector {
  position: absolute;
  top: 40px;
  left: calc(50% + 50px);
  width: calc(100% - 60px);
  display: flex; align-items: center; justify-content: center;
}

/* ===== TRAINING ===== */
.training-section { background: var(--bg-light); padding: 56px 0; }

.training-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 24px;
  transition: all 0.3s ease-out;
  height: 100%;
  display: flex; flex-direction: column; gap: 24px;
}
.training-card:hover {
  transform: translateY(-4px);
  border-right: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
  border-top: 1px solid var(--text-dark);
  border-left: 1px solid var(--text-dark);
}
.training-card .icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.3s;
}
.training-card .icon-box i { font-size: 24px; color: #04092a; transition: color 0.3s; }
.training-card:hover .icon-box { background: var(--text-dark); }
.training-card:hover .icon-box i { color: #fff; }
.training-card h5 { color: var(--text-body); font-size: 20px; font-weight: 600; line-height: 32px; margin: 0; }
.training-card p { color: var(--text-muted); font-size: 16px; line-height: 24px; margin: 0; }

.learn-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  height: 100%;
}
.learn-item .check-icon {
  width: 28px; height: 28px; min-width: 28px; flex-shrink: 0;
  background: var(--blue-primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 3px;
}
.learn-item .check-icon i { color: #fff; font-size: 14px; }
.learn-item span { font-weight: 600; font-size: 20px; color: var(--text-body); line-height: 32px; }

.global-banner {
  border-radius: 16px;
  padding: 32px;
  background: linear-gradient(-26deg, #dee3fd 0%, #f3ecfd 100%);
  box-shadow: 0 12px 16px -4px rgba(16,24,40,0.08), 0 4px 6px -2px rgba(16,24,40,0.03);
}
.country-chip {
  background: var(--blue-dark);
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px 4px 4px;
}
.country-chip img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.country-chip span { color: #fff; font-size: 16px; font-weight: 600; }

/* ===== CAREER PROGRESSION ===== */
.career-section { padding: 56px 0; }

.career-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  height: 100%;
}
.career-card:hover {
  transform: translateY(-8px);
  border-right: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
}
.step-circle-sm {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2.7px solid #f2f4f7; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--blue-dark); letter-spacing: -0.28px;
}
.career-chip {
  background: var(--bg-light); border-radius: 29px;
  padding: 4px 11px; display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 500; color: var(--blue-dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg-light); padding: 56px 0; }

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  border: 1px solid var(--border-light);
  display: flex; flex-direction: column;
  transition: all 0.2s ease;
}
.testimonial-card:hover { transform: translateY(-3px); border-top: 1px solid var(--text-dark); border-left: 1px solid var(--text-dark); border-right: 2px solid var(--text-dark); border-bottom: 2px solid var(--text-dark); }
.stars { display: flex; gap: 8px; }
.star { color: #FFB21E; font-size: 20px; }
.testimonial-heading { font-size: 20px; font-weight: 700; color: var(--text-body); line-height: 30px; }
.testimonial-text { font-size: 16px; color: var(--text-muted); line-height: 24px; flex-grow: 1; }
.view-post { font-size: 16px; font-weight: 500; color: var(--blue-primary); text-decoration: underline; }
.view-post:hover { color: var(--blue-dark); }

/* ===== CTA ===== */
.cta-section {
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  padding: 56px 0;
}
.cta-section h2 { color: #fff; font-size: 36px; font-weight: 700; line-height: 1.2; letter-spacing: -0.72px; }
.cta-section p { color: #fff; font-size: 18px; font-weight: 700; line-height: 28px; }
.btn-cta {
  background: var(--blue-primary);
  color: #fff; font-size: 16px; font-weight: 600;
  padding: 12px 32px; border-radius: 6px; border: none;
  display: inline-block; transition: background 0.2s;
}
.btn-cta:hover { background: #2d47d0; color: #fff; }

/* ===== FAQ ===== */
.faq-section { padding: 56px 0; }
.faq-title { font-size: 36px; font-weight: 700; line-height: 1.2; letter-spacing: -0.72px; color: var(--dark-navy); }
.faq-item { border-bottom: 1px solid #d9d9d9; }
.faq-btn {
  width: 100%; display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 0; background: none; border: none;
  text-align: left; cursor: pointer;
}
.faq-btn .faq-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-btn .faq-icon { transform: rotate(45deg); }
.faq-question { color: var(--text-body); font-size: 20px; font-weight: 600; line-height: 1.5; margin: 0; }
.faq-answer { color: var(--text-body); font-size: 18px; font-weight: 400; line-height: 28px; margin-top: 16px; display: none; }
.faq-item.active .faq-answer { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hero-section h1 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  .section-title { font-size: 30px; }
  .cta-section h2 { font-size: 30px; }
  .faq-title { font-size: 30px; }
  .step-connector { display: none !important; }
  .fee-banner { padding: 24px; }
  .global-banner { padding: 24px; }
}

@media (max-width: 575.98px) {
  .hero-section h1 { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  .section-title { font-size: 24px; }
  .cta-section h2 { font-size: 26px; }
  .cta-section p { font-size: 16px; }
  .faq-title { font-size: 26px; }
  .faq-question { font-size: 18px; }
  .faq-answer { font-size: 16px; }
  .criteria-card p { font-size: 18px; }
  .learn-item span { font-size: 18px; }
}
