/* Start custom CSS *//* ============================================
   BRAND TOKENS & GLOBAL STYLES
   ============================================ */
:root {
  --color-bg: #FFFBF6;            /* warm off-white background */
  --color-surface: #FFFFFF;       /* card background */
  --color-text: #1F2937;          /* main body text, dark slate */
  --color-text-muted: #6B7280;    /* secondary text */
  --color-primary: #FF6B4A;       /* coral/orange accent — CTAs, badges */
  --color-primary-dark: #E4552F;  /* hover state for primary */
  --color-secondary: #17415E;     /* deep navy — headings, trust elements */
  --color-accent-soft: #FFF1EC;   /* soft coral tint for backgrounds */
  --color-success: #1E8E5A;       /* deadlines/availability green */
  --color-border: #ECE7DF;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-card: 0 4px 24px rgba(23, 65, 94, 0.08);
}

/* Base structural classes to maintain layout within Elementor sections */
.sao-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--color-secondary);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  padding: 48px 0 32px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent-soft);
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero h1 span { color: var(--color-primary); }

.hero p.sub {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- Institution strip ---------- */
.inst-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 15px;
  color: var(--color-secondary);
  font-weight: 600;
}

.inst-strip .dot { color: var(--color-border); }

/* ---------- Offer card ---------- */
.offer-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  padding: 32px;
  margin-top: 32px;
}

.offer-headline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.offer-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-primary);
}

.offer-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}

.offer-desc {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-top: 8px;
}

.divider {
  height: 1px;
  background: var(--color-border);
  margin: 24px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

@media (max-width: 520px) {
  .detail-grid { grid-template-columns: 1fr; }
}

.detail-item .k {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.detail-item .v {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.deadline-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EAF7EF;
  color: var(--color-success);
  font-weight: 600;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-top: 4px;
}

/* ---------- Eligibility ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 14px;
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- CTA ---------- */
.cta-block {
  text-align: center;
  margin-top: 36px;
}

.cta-btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 107, 74, 0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.cta-sub {
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ---------- Trust / verified footer strip ---------- */
.verify-strip {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.verify-strip span { display: inline-flex; align-items: center; gap: 5px; }

/* ---------- About block ---------- */
.about {
  margin-top: 40px;
}

.about p {
  color: var(--color-text);
  font-size: 15px;
  margin-bottom: 12px;
}

/* ---------- Footer note ---------- */
.footer-note {
  text-align: center;
  margin-top: 48px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-note a {
  color: var(--color-primary-dark);
  font-weight: 600;
  text-decoration: none;
}/* End custom CSS */