:root {
  --blue-primary: #3a58ef;
  --blue-dark: #182878;
  --navy: #021c56;
  --navy-deep: #00174c;
  --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 56px; }
.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 { 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::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0.1;
}
.stat-card .stat-value {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  position: relative;
  z-index: 1;
}
.stat-card .stat-label {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.btn-apply {
  background: var(--blue-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 6px;
  border: none;
  transition: background 0.2s;
}
.btn-apply:hover { background: #2d47d0; color: #fff; }

/* ===== ELIGIBILITY ===== */
.eligibility-section { background: var(--bg-light); padding: 48px 0 64px; }
.section-title { font-size: 36px; font-weight: 700; line-height: 1.2; letter-spacing: -0.72px; color: #26244a; }
.section-title .text-blue { color: var(--blue-primary); }

.criteria-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease-out;
  cursor: pointer;
  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;
}

/* ===== JOURNEY ===== */
.journey-section { padding: 48px 0 72px; }
.journey-subtitle {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 28px;
}
.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;
}
.step-circle span {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 800;
  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: 18px; }
.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;
}

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

/* ===== LEARNING ===== */
.learning-section { background: var(--bg-light); padding: 48px 0 64px; overflow: hidden; }
.opportunity-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 24px;
  transition: all 0.3s ease-out;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.opportunity-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);
}
.opportunity-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;
}
.opportunity-card .icon-box i {
  font-size: 24px;
  color: #04092A;
  transition: color 0.3s;
}
.opportunity-card:hover .icon-box { background: var(--text-dark); }
.opportunity-card:hover .icon-box i { color: #fff; }
.opportunity-card p {
  color: var(--text-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
}

.global-banner {
  border-radius: 16px;
  padding: 32px;
  background-image: linear-gradient(-26deg, #dee3fd 0%, #f3ecfd 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.global-banner .banner-lines {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}
.global-banner .banner-line {
  position: absolute;
  border-top: 1px solid #97C0FF;
  left: -10%;
  right: -10%;
  transform: rotate(-5deg);
}
.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;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 48px 0 64px; }
.testimonial-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gray-border);
  padding: 16px;
  transition: all 0.3s ease-out;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(16,24,40,0.1), 0 4px 8px -2px rgba(16,24,40,0.06);
}
.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}
.testimonial-card h6 {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
}
.testimonial-card .text-content {
  color: var(--text-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more {
  color: var(--blue-primary);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
}
.read-more:hover { text-decoration: underline; color: var(--blue-primary); }

/* ===== CTA ===== */
.cta-section {
  background: var(--navy);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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;
  transition: background 0.2s;
}
.btn-cta:hover { background: #2d47d0; color: #fff; }

/* ===== FAQ ===== */
.faq-section { padding: 48px 0 72px; }
.faq-title { font-size: 36px; font-weight: 700; line-height: 1.2; letter-spacing: -0.72px; color: #26244a; }
.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; }

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(to bottom, #12327b, var(--navy-deep));
  color: #fff;
  padding: 48px 0 0;
}
.footer-logo text { font-family: 'Inter', sans-serif; }
.footer-contact p { font-size: 14px; line-height: 20px; margin: 0; }
.footer-contact .label { font-weight: 700; }
.footer-contact .value { font-weight: 500; }
.app-btn {
  background: #090914;
  border-radius: 12px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  transition: opacity 0.2s;
}
.app-btn:hover { opacity: 0.9; color: #fff; }
.app-btn .small-text { font-size: 10px; color: rgba(255,255,255,0.6); }
.app-btn .big-text { font-size: 14px; font-weight: 600; color: #fff; }

.footer-col h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 20px;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 32px 0;
  margin-top: 48px;
}
.footer-bottom a {
  color: #fff;
  font-size: 14px;
  transition: opacity 0.2s;
}
.footer-bottom a:hover { text-decoration: underline; }
.footer-bottom .divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.3);
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
}
.footer-bottom .copyright {
  font-size: 14px;
  color: #fff;
}
.footer-bottom .social-icon {
  height: 20px;
  width: auto;
  opacity: 0.9;
}

/* ===== 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; }
  .global-banner { padding: 24px; }
}

@media (max-width: 575.98px) {
  .hero-section h1 { font-size: 30px; }
  .hero-subtitle { font-size: 16px; }
  .section-title { font-size: 26px; }
  .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, .opportunity-card p { font-size: 18px; }
}
