/* ==========================================================================
   ATAS LANDING PAGE - INSTITUTIONAL CAREER EDUCATION DESIGN SYSTEM
   Inspired by clean, spacious Indian career academies (e.g. NIIT)
   Brand Colors:
   - Rich Royal Blue: #0B5FB5
   - Primary Blue Gradient: #0B5FB5 -> #156FC7 -> #1E78D6
   - Pure White: #FFFFFF
   - Soft Light Grey: #F6F8FC
   - Dark Slate / Text Dark: #101828
   - Text Muted: #475467
   - High-Attention Accent / Button Yellow: #FFB800 / #F59E0B
   ========================================================================== */

/* ---------------- CSS Variables ---------------- */
:root {
  --blue-dark: #063875;
  --blue-primary: #0B5FB5;
  --blue-mid: #156FC7;
  --blue-light: #1E78D6;
  --blue-pale: #EDF5FD;
  
  --hero-gradient: 
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 88% 75%, rgba(56, 189, 248, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(7, 71, 140, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #07478C 0%, #0B5FB5 40%, #156FC7 75%, #1E78D6 100%);
  
  --bg-white: #FFFFFF;
  --bg-grey: #F6F8FC;
  --bg-dark-footer: #08162A;
  
  --text-main: #101828;
  --text-muted: #475467;
  --text-light: #667085;
  --text-white: #FFFFFF;
  
  --accent-yellow: #FFB800;
  --accent-yellow-hover: #F59E0B;
  
  --border-light: #E2E8F0;
  --border-blue-translucent: rgba(255, 255, 255, 0.18);
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.1);
  --shadow-md: 0 4px 16px -2px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 20px 40px -12px rgba(16, 24, 40, 0.16);
  --shadow-card: 0 14px 36px rgba(0, 0, 0, 0.14);
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

/* ---------------- Reset & Base ---------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color: var(--text-main);
  background-color: var(--bg-white);
  font-family: var(--font-main);
}

body {
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* ---------------- Utility Containers ---------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-spacious {
  padding: 85px 0;
}

.section-white {
  background-color: var(--bg-white);
  position: relative;
}

.section-grey {
  background: linear-gradient(180deg, #F8FAFC 0%, #EDF2F7 50%, #F8FAFC 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.section-royal-blue {
  background: 
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(254, 240, 138, 0.14) 0%, transparent 35%),
    linear-gradient(135deg, #07478C 0%, #0B5FB5 45%, #1872D9 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.section-royal-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.3;
  pointer-events: none;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--text-white) !important;
}

.text-blue-muted {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* ---------------- Section Typography ---------------- */
.section-header {
  max-width: 780px;
  margin: 0 auto 50px auto;
}

.section-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.kicker-white {
  color: var(--accent-yellow);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 14px;
}

.section-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 48px;
}

.btn-primary {
  background-color: var(--blue-primary);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(11, 95, 181, 0.25);
}

.btn-primary:hover {
  background-color: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--blue-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  background-color: #F8FAFC;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
}

.btn-yellow {
  background-color: var(--accent-yellow);
  color: #0F172A;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.4);
}

.btn-yellow:hover {
  background-color: var(--accent-yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.5);
}

.btn-large {
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  min-height: 54px;
}

.btn-full-width {
  width: 100%;
}

/* ---------------- Navbar ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-symbol {
  width: 38px;
  height: 38px;
  background-color: var(--blue-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-letter {
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blue-primary);
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.logo-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.logo-white { color: #FFFFFF !important; }
.logo-blue { color: #93C5FD !important; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--blue-primary);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 0.85rem;
  min-height: 40px;
}

/* ---------------- Hero Section ---------------- */
.hero-section {
  background: var(--hero-gradient);
  color: var(--text-white);
  padding: 60px 0 70px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.38;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* Left Hero Content */
.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
}

.badge-purple {
  background: rgba(147, 51, 234, 0.25);
  border: 1px solid rgba(192, 132, 252, 0.45);
  color: #F3E8FF;
}

.badge-blue {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

.badge-teal {
  background: rgba(13, 148, 136, 0.25);
  border: 1px solid rgba(45, 212, 191, 0.4);
  color: #CCFBF1;
}

.badge-gold {
  background: rgba(255, 184, 0, 0.25);
  border: 1px solid rgba(255, 184, 0, 0.65);
  color: #FEF08A;
  font-weight: 800;
}

.badge-urgency {
  background: rgba(239, 68, 68, 0.22);
  border: 1px solid rgba(248, 113, 113, 0.65);
  color: #FEE2E2;
  font-weight: 800;
}

.hero-headline {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.hero-headline-sub {
  color: #BAE6FD;
}

.hero-subheadline {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 620px;
}

/* 4 Fact Cards Grid */
.hero-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.fact-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  backdrop-filter: blur(8px);
}

.fact-card-highlight {
  background: rgba(255, 184, 0, 0.18);
  border: 1px solid rgba(255, 184, 0, 0.45);
}

.fact-card-urgency {
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(248, 113, 113, 0.45);
}

.fact-value-gold {
  color: #FEF08A !important;
}

.fact-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #BAE6FD;
  text-transform: uppercase;
}

.fact-value {
  font-size: 0.96rem;
  font-weight: 800;
  color: #FFFFFF;
}

.fact-sub {
  font-size: 0.70rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Hero Trust/Stat Row */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
}

.trust-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
}

.trust-check-icon {
  color: var(--accent-yellow);
  font-weight: 900;
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-hero {
  font-size: 0.98rem;
  padding: 15px 28px;
}

/* ---------------- Right Hero Lead Form Card ---------------- */
.lead-form-card {
  background: #FFFFFF;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-header {
  margin-bottom: 20px;
}

.form-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.form-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.form-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #EF4444;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

.form-subheading {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
  text-align: left;
}

.form-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.input-icon-wrap,
.phone-input-group {
  display: flex;
  align-items: center;
  position: relative;
}

.field-icon {
  position: absolute;
  left: 14px;
  font-size: 0.95rem;
  color: var(--text-light);
  pointer-events: none;
}

.flag-prefix {
  position: absolute;
  left: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  pointer-events: none;
}

.form-control {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px 12px 38px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.phone-input {
  padding-left: 76px;
}

.form-select {
  padding-left: 14px;
  cursor: pointer;
}

.form-control:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(11, 95, 181, 0.15);
}

.error-msg {
  font-size: 0.74rem;
  color: #DC2626;
  display: none;
}

.form-group.has-error .form-control {
  border-color: #DC2626;
}

.form-group.has-error .error-msg {
  display: block;
}

.btn-submit-hero {
  width: 100%;
  font-size: 1.05rem;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  margin-top: 6px;
  margin-bottom: 10px;
}

.form-consent {
  font-size: 0.74rem;
  color: var(--text-light);
  line-height: 1.45;
  text-align: center;
  margin-bottom: 12px;
}

.form-trust-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--blue-primary);
}

/* ---------------- Section 1: Pillars Grid ---------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.pillar-icon-box {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------------- Section 2: Skills Grid ---------------- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skill-item-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.skill-item-card:hover {
  transform: translateY(-2px);
  border-color: #CBD5E1;
}

.skill-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.skill-item-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.skill-item-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ---------------- Section 3: Learning Journey Timeline ---------------- */
.journey-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 30px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 170px;
  z-index: 2;
}

.step-circle {
  width: 44px;
  height: 44px;
  background-color: var(--blue-primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(11, 95, 181, 0.3);
}

.step-phase {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.step-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.timeline-line {
  flex: 1;
  height: 2px;
  background-color: #CBD5E1;
  margin-top: 22px;
  min-width: 20px;
}

/* ---------------- Section 4: Projects ---------------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast);
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.proj-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-primary);
  background: var(--blue-pale);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  align-self: flex-start;
  margin-bottom: 12px;
}

.proj-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.proj-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}

.proj-skills {
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.proj-skills strong {
  color: var(--text-main);
}

/* ---------------- Section: Career Opportunities & CTC Benchmarks ---------------- */
.ctc-metrics-banner {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  margin-bottom: 36px;
}

.ctc-metric-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
  flex: 1;
}

.ctc-metric-divider {
  width: 1px;
  height: 44px;
  background-color: var(--border-light);
  margin: 0 16px;
}

.metric-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-primary);
  text-transform: uppercase;
}

.metric-value {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.15;
}

.metric-gold {
  color: #D97706;
}

.metric-note {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.roles-ctc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.role-ctc-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.role-ctc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.role-card-featured {
  border: 2px solid #F59E0B;
  background: #FFFDF7;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12);
}

.role-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.role-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg-grey);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.role-tag-featured {
  background: #FEF3C7;
  color: #92400E;
}

.role-ctc-badge {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--blue-primary);
  background: var(--blue-pale);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.role-ctc-gold {
  color: #92400E;
  background: #FDE68A;
}

.role-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.25;
}

.role-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.role-skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.role-skills-list span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
  background: var(--bg-grey);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.ctc-cta-bottom {
  margin-top: 28px;
}

.ctc-cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ---------------- Section 5: Career Support (Blue Section) ---------------- */
.career-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.career-card-white {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  color: var(--text-main);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.c-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.c-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.c-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.career-disclaimer-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

/* ---------------- Section 6: Physical Classroom Advantage ---------------- */
.advantage-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.campus-card {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  box-shadow: var(--shadow-lg);
}

.campus-badge {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 18px;
}

.campus-name {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.campus-sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

.campus-hours-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

.features-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 24px 0 30px 0;
}

.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.f-check {
  color: var(--blue-primary);
  font-weight: 900;
  font-size: 1.1rem;
  margin-top: -2px;
}

.feature-point strong {
  font-size: 0.92rem;
  color: var(--text-main);
  display: block;
}

.feature-point p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ---------------- Section 7: Eligibility Profiles ---------------- */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.profile-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
}

.p-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--blue-primary);
  margin-bottom: 10px;
}

.p-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.p-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.elig-prompt {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
}

/* ---------------- Section 8: Testimonials ---------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg-grey);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}

.testi-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  background-color: var(--blue-primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.testi-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
}

.testi-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testi-quote {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------------- Section 9: FAQ ---------------- */
.faq-container {
  max-width: 820px;
}

.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--blue-primary);
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  padding-bottom: 18px;
}

.faq-item.open {
  border-color: var(--blue-primary);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-answer {
  max-height: 250px;
}

/* ---------------- Final CTA Section ---------------- */
.section-final-cta {
  padding: 85px 0;
}

.final-cta-heading {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.final-cta-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 650px;
  margin: 0 auto 32px auto;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.final-cta-location-note {
  font-size: 0.85rem;
  color: #BAE6FD;
  font-weight: 600;
}

/* ---------------- Footer ---------------- */
.site-footer {
  background-color: var(--bg-dark-footer);
  color: #FFFFFF;
  padding: 50px 0 80px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

.footer-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-top: 10px;
}

.footer-address {
  font-size: 0.88rem;
  color: #FFFFFF;
  font-weight: 600;
}

.footer-timings {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-top: 4px;
}

.footer-copy {
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 600;
}

.footer-disclaimer {
  font-size: 0.76rem;
  color: #64748B;
  margin-top: 4px;
}

/* ---------------- Sticky Mobile CTA Bar (Urgency Driven) ---------------- */
.sticky-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #FFFFFF;
  border-top: 2px solid #F59E0B;
  padding: 8px 16px 12px 16px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.16);
}

.sticky-urgency-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #FEF3C7;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 7px;
  border: 1px solid #FDE68A;
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #DC2626;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(220, 38, 38, 0.85);
  animation: pulseDot 1.4s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { transform: scale(0.85); opacity: 0.7; }
  50% { transform: scale(1.35); opacity: 1; }
  100% { transform: scale(0.85); opacity: 0.7; }
}

.sticky-urgency-text {
  font-size: 0.72rem;
  color: #92400E;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-text {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.sticky-sub {
  font-size: 0.72rem;
  color: var(--blue-primary);
  font-weight: 700;
}

.btn-sticky {
  font-size: 0.85rem;
  padding: 10px 18px;
  min-height: 42px;
  white-space: nowrap;
}

/* ---------------- Modals ---------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(16, 24, 40, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  animation: modal-fade-in 0.2s ease;
}

@keyframes modal-fade-in {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.modal-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.modal-subheading {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* Stage 2 Qualification Modal */
.modal-progress-wrap {
  margin-bottom: 20px;
  text-align: left;
}

.modal-progress-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue-primary);
  text-transform: uppercase;
}

.modal-progress-track {
  width: 100%;
  height: 6px;
  background: #E2E8F0;
  border-radius: var(--radius-full);
  margin-top: 4px;
  overflow: hidden;
}

.modal-progress-fill {
  height: 100%;
  background: var(--blue-primary);
  border-radius: var(--radius-full);
  transition: width 0.25s ease;
}

.qual-step-pane {
  display: none;
  text-align: left;
}

.qual-step-pane.active {
  display: block;
}

.q-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.q-sub-helper {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.q-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.q-opt-btn {
  width: 100%;
  background: var(--bg-grey);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.q-opt-btn:hover {
  border-color: var(--blue-primary);
  background: var(--blue-pale);
  color: var(--blue-primary);
}

/* Confirmation Modal Box */
.success-icon-badge {
  width: 56px;
  height: 56px;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 auto 16px auto;
}

.conf-summary-box {
  background: var(--bg-grey);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.conf-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.conf-row span { color: var(--text-muted); }
.conf-row strong { color: var(--text-main); }

.brochure-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

/* ---------------- Responsive Rules ---------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ctc-metrics-banner {
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
  }

  .ctc-metric-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .roles-ctc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-timeline {
    flex-direction: column;
    gap: 16px;
  }

  .timeline-line {
    display: none;
  }

  .timeline-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
    max-width: none;
  }

  .step-circle {
    margin-bottom: 0;
  }

  .career-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-layout-grid {
    grid-template-columns: 1fr;
  }

  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-container {
    text-align: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-badges-row {
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
  }

  .hero-badge {
    font-size: 0.66rem;
    padding: 4px 9px;
  }

  .hero-headline {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-subheadline {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .hero-facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }

  .fact-card {
    text-align: center;
    align-items: center;
    padding: 12px 10px;
  }

  .hero-trust-row {
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  .trust-stat-item {
    justify-content: center;
  }

  .hero-actions-row {
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
    max-width: 320px;
  }

  .lead-form-card {
    padding: 24px 20px;
  }

  .form-header {
    text-align: center;
  }

  .form-title-wrap {
    justify-content: center;
  }

  .section-header {
    text-align: center;
  }

  .section-title {
    font-size: 1.85rem;
    text-align: center;
  }

  .section-lead {
    text-align: center;
  }

  .roles-ctc-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .career-cards-grid {
    grid-template-columns: 1fr;
  }

  .features-list-grid {
    grid-template-columns: 1fr;
  }

  .profiles-grid {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-cta-bar {
    display: block;
  }

  .site-footer {
    padding-bottom: 125px;
    text-align: center;
  }

  .footer-col-left,
  .footer-col-centre,
  .footer-col-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
