:root {
  --navy: #111827;
  --navy-light: #1f2937;
  --navy-dark: #0B0F19;
  --red: #FF4D5A;
  --red-light: #e03e4b;
  --white: #F8FAFC;
  --off-white: #f4f6fb;
  --gold: #F5A623;
  --text-muted: #94A3B8;
  --glass: rgba(17, 24, 39, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --nav-bg: rgba(11, 15, 25, 0.85);
  --nav-bg-scrolled: rgba(11, 15, 25, 0.97);
  --t-dot-border-active: rgba(255, 77, 90, 0.6);
  --grid-line: rgba(255, 255, 255, 0.07);
}

.light-mode {
  --navy-dark: #F4F2F7;
  --navy: #FFFFFF;
  --navy-light: #EAE7EF;
  --white: #0F172A;
  --text-muted: #64748B;
  --off-white: #F9F8FA;
  --glass: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(15, 23, 42, 0.08);
  --nav-bg: rgba(244, 242, 247, 0.85);
  --nav-bg-scrolled: rgba(244, 242, 247, 0.97);
  --t-dot-border-active: var(--navy-dark);
  --grid-line: rgba(15, 23, 42, 0.03);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s;
}

nav.nav-scrolled {
  background: var(--nav-bg-scrolled);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
}

nav .lp-nav-logo {
  margin-bottom: 0;
}

nav .lp-nav-logo img {
  height: 32px;
}

nav .lp-nav-logo-text {
  font-size: 1.05rem;
}

nav .lp-nav-logo-text span {
  font-size: 0.52rem;
}

.lp-visit-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  border: 1px solid var(--glass-border);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  margin-left: 0;
  margin-right: 0;
}

.lp-visit-btn strong {
  color: var(--white);
  font-weight: 700;
}

.lp-visit-btn i {
  color: var(--red);
  font-size: 0.75rem;
  margin-left: 2px;
}

.lp-visit-btn:hover {
  border-color: var(--red);
  transform: translateY(-1px);
  background: rgba(255, 77, 90, 0.05);
}

.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  margin-left: auto;
}

.theme-toggle-btn:hover {
  background: var(--navy-light);
  transform: scale(1.05);
}

.theme-toggle-btn .icon-sun {
  display: block;
}

.theme-toggle-btn .icon-moon {
  display: none;
}

.light-mode .theme-toggle-btn .icon-sun {
  display: none;
}

.light-mode .theme-toggle-btn .icon-moon {
  display: block;
}

.light-mode .hero-bg {
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 77, 90, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(245, 166, 35, 0.02) 0%, transparent 50%),
    linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.light-mode .cta-glow {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 77, 90, 0.06) 0%, transparent 70%);
}

@media (max-width: 600px) {
  nav {
    padding: 0 1rem;
  }

  .nav-inner {
    gap: 1.25rem;
    padding: 0;
  }

  .lp-visit-btn span {
    display: none;
  }

  .lp-visit-btn {
    padding: 0.4rem 0.8rem;
    margin-right: 0;
  }
}

/* ── HERO ── */
#hero {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 60px 2rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 77, 90, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0b0f19 0%, #070a12 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 77, 90, 0.15);
  border: 1px solid rgba(255, 77, 90, 0.3);
  color: #ffacb2;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fade-up 0.8s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: none;
  /* per-letter animations control the reveal */
  text-align: center;
}

.hero-h1 .fancy-letter {
  display: inline-block;
  color: var(--red);
  font-size: 1.5em;
  font-weight: 900;
  text-shadow: 0 0 25px rgba(255, 77, 90, 0.6);
  opacity: 0;
  transform: scale(0.2);
  animation: fancy-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Staggered entry for each line's fancy letter */
.hero-h1 .fl-1 {
  animation-delay: 0.25s;
}

.hero-h1 .fl-2 {
  animation-delay: 0.6s;
}

.hero-h1 .fl-3 {
  animation-delay: 0.95s;
}

@keyframes fancy-pop {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Trail text sweeps out from the fancy letter position (clip-path: left → right reveal) */
.hero-h1 .letter-trail {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  animation: trail-reveal 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Each trail starts slightly before its fancy letter finishes for a seamless handoff */
.hero-h1 .fl-1+.letter-trail {
  animation-delay: 0.5s;
}

.hero-h1 .fl-2+.letter-trail {
  animation-delay: 0.85s;
}

.hero-h1 .fl-3+.letter-trail {
  animation-delay: 1.2s;
}

@keyframes trail-reveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0% 0 0);
  }
}

.hero-h1 .accent {
  color: var(--red);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
  animation: fade-up 0.8s ease 0.2s both;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  animation: fade-up 0.8s ease 0.3s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-feature::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(255, 77, 90, 0.2);
  border: 1px solid rgba(255, 77, 90, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffacb2;
  font-size: 0.7rem;
  flex-shrink: 0;
  line-height: 20px;
  text-align: center;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fade-up 0.8s ease 0.4s both;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(255, 77, 90, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 77, 90, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}



/* ── GLOBAL ANIMATIONS ── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── SECTIONS ── */
section {
  padding: 6rem 2rem;
}

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

.section-eyebrow {
  display: block;
  text-align: center;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 auto 0.75rem;
  width: max-content;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* FAQ heading override to preserve left alignment in 2-column layout */
#faq .section-eyebrow {
  display: inline-block;
  text-align: left;
  margin: 0 0 0.75rem;
}

#faq .section-title {
  text-align: left;
  margin: 0 0 1.25rem;
}

#faq .section-sub {
  text-align: left;
  margin: 0 0 2rem;
}

/* Glass card */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 77, 90, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 77, 90, 0.1);
}

/* ── WHY GCA ── */
#why {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 77, 90, 0.15);
  border: 1px solid rgba(255, 77, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── TIMELINE ── */
#journey {
  background: var(--navy-dark);
  overflow: hidden;
}

.timeline-wrap {
  margin-top: 3.5rem;
  position: relative;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(255, 77, 90, 0.15);
  /* Inactive track */
  z-index: 0;
  border-radius: 3px;
}

.timeline-line.reveal {
  opacity: 1 !important;
  transform: none !important;
}

.timeline-line.reveal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--red) 0%, #ff4d5a 100%);
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 15px rgba(255, 77, 90, 0.5);
  border-radius: 3px;
  transition: transform 2s linear;
}

.timeline-line.reveal.visible::after {
  transform: scaleX(1);
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.75rem;
}

.t-dot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1.25rem;
  background: var(--navy);
  border: 3px solid rgba(255, 77, 90, 0.3);
  box-shadow: none;
  transform: scale(0.8);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-step.reveal.visible .t-dot {
  background: linear-gradient(135deg, var(--red), #b52631);
  border-color: var(--t-dot-border-active);
  box-shadow: 0 0 20px rgba(255, 77, 90, 0.4);
  transform: scale(1);
}

.timeline-step:hover .t-dot {
  transform: scale(1.15);
  box-shadow: 0 0 32px rgba(214, 31, 38, 0.65);
  transition-delay: 0s !important;
}

.timeline-step:nth-child(1).reveal {
  transition-delay: 0s !important;
}

.timeline-step:nth-child(2).reveal {
  transition-delay: 0.5s !important;
}

.timeline-step:nth-child(3).reveal {
  transition-delay: 1.0s !important;
}

.timeline-step:nth-child(4).reveal {
  transition-delay: 1.5s !important;
}

.timeline-step:nth-child(5).reveal {
  transition-delay: 2.0s !important;
}

.timeline-step:nth-child(1).reveal.visible .t-dot {
  transition-delay: 0s;
}

.timeline-step:nth-child(2).reveal.visible .t-dot {
  transition-delay: 0.5s;
}

.timeline-step:nth-child(3).reveal.visible .t-dot {
  transition-delay: 1.0s;
}

.timeline-step:nth-child(4).reveal.visible .t-dot {
  transition-delay: 1.5s;
}

.timeline-step:nth-child(5).reveal.visible .t-dot {
  transition-delay: 2.0s;
}

.t-step-label {
  font-size: 0.7rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.t-step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

/* ── ROADMAP ── */
#roadmap {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.road-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
}

.road-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.road-card:hover::before {
  transform: scaleX(1);
}

.road-num {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 77, 90, 0.12);
  margin-bottom: -1rem;
}

.road-label {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.road-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.road-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}

.road-items li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.road-items li::before {
  content: '→';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.road-outcome {
  background: linear-gradient(135deg, rgba(255, 77, 90, 0.2), rgba(255, 77, 90, 0.05));
  border: 1px solid rgba(255, 77, 90, 0.35);
  text-align: center;
  padding: 2.5rem;
  justify-content: center;
  align-items: center;
}

.road-outcome .trophy {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.road-outcome h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.road-outcome p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ── COURSE DETAILS ── */
#details {
  background: var(--navy);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.detail-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.detail-card:hover::before {
  transform: scaleX(1);
}

.detail-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.detail-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.detail-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── SKILLS ── */
#skills {
  background: var(--navy-dark);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.skill-chip {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  cursor: default;
}

.skill-chip:hover {
  border-color: rgba(214, 31, 38, 0.4);
  background: rgba(214, 31, 38, 0.08);
  transform: translateY(-3px);
}

.skill-chip .si {
  font-size: 1.4rem;
}

.skill-chip span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── BENEFITS ── */
#benefits {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card .b-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ── CAREERS ── */
#careers {
  background: var(--navy-dark);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.career-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.career-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.career-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 31, 38, 0.3);
}

.career-card:hover::after {
  transform: scaleX(1);
}

.career-card .c-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}

.career-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.career-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

/* ── LOGOS CAROUSEL ── */
#logos {
  background: #FFFFFF;
  padding: 4rem 0;
  overflow: hidden;
}

#logos .section-title {
  color: #0F172A !important;
}

.logos-header {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 3rem;
}

.carousel-track-wrap {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: scroll-logos 30s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-pill {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.7rem 1.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.logo-pill:hover {
  border-color: rgba(255, 77, 90, 0.4);
  color: var(--red);
}

/* ── STATS ── */
#stats {
  background: linear-gradient(135deg, var(--red) 0%, #b52631 100%);
  padding: 1rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.85;
  font-weight: 500;
  line-height: 1.4;
}

/* ── FAQ ── */
#faq {
  background: var(--navy-dark);
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(214, 31, 38, 0.35);
}

.faq-q {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  user-select: none;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 77, 90, 0.15);
  border: 1px solid rgba(255, 77, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 1rem;
  font-weight: 300;
  transition: transform 0.3s;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── FINAL CTA ── */
#final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 77, 90, 0.12) 0%, transparent 70%);
}

#final-cta .container {
  position: relative;
  z-index: 2;
}

#final-cta .section-title {
  margin: 0 auto 1rem;
  max-width: 680px;
}

#final-cta .section-sub {
  margin: 0 auto 2.5rem;
  text-align: center;
}

#final-cta .hero-btns {
  justify-content: center;
}

/* ── FOOTER ── */
.footer {
  background-color: #060608 !important;
  /* Absolute darkest anchor */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 2rem 20px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.lp-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.lp-nav-logo img {
  height: 44px;
  width: auto;
}

.lp-nav-logo-text {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.lp-nav-logo-text span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-col h5 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  color: var(--white);
  font-size: 1rem;
  background: var(--navy);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  background: rgba(255, 77, 90, 0.1);
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.copyright a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s;
}

.copyright a:hover {
  color: var(--red-light);
  text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Footer Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ── COLORFUL ICONS ── */
/* Why GCA */
.why-card:nth-child(4n+1) .why-icon {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.why-card:nth-child(4n+2) .why-icon {
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.why-card:nth-child(4n+3) .why-icon {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.why-card:nth-child(4n+4) .why-icon {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}

/* Details */
.detail-card:nth-child(4n+1) .detail-icon {
  color: #3b82f6;
}

.detail-card:nth-child(4n+2) .detail-icon {
  color: #10b981;
}

.detail-card:nth-child(4n+3) .detail-icon {
  color: #8b5cf6;
}

.detail-card:nth-child(4n+4) .detail-icon {
  color: #f59e0b;
}

/* Skills */
.skill-chip:nth-child(6n+1) .si {
  color: #3b82f6;
}

.skill-chip:nth-child(6n+2) .si {
  color: #10b981;
}

.skill-chip:nth-child(6n+3) .si {
  color: #8b5cf6;
}

.skill-chip:nth-child(6n+4) .si {
  color: #f59e0b;
}

.skill-chip:nth-child(6n+5) .si {
  color: #ec4899;
}

.skill-chip:nth-child(6n+6) .si {
  color: #14b8a6;
}

/* Benefits */
.benefit-card:nth-child(4n+1) .b-icon {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.benefit-card:nth-child(4n+2) .b-icon {
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.benefit-card:nth-child(4n+3) .b-icon {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.benefit-card:nth-child(4n+4) .b-icon {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}

/* Careers */
.career-card:nth-child(6n+1) .c-icon {
  color: #3b82f6;
}

.career-card:nth-child(6n+2) .c-icon {
  color: #10b981;
}

.career-card:nth-child(6n+3) .c-icon {
  color: #8b5cf6;
}

.career-card:nth-child(6n+4) .c-icon {
  color: #f59e0b;
}

.career-card:nth-child(6n+5) .c-icon {
  color: #ec4899;
}

.career-card:nth-child(6n+6) .c-icon {
  color: #14b8a6;
}

/* Roadmap Trophy */
.road-outcome .trophy {
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }


  .timeline-steps {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

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

@media (max-width: 600px) {
  nav {
    padding: 0 1.25rem;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 4rem 1.25rem;
  }

  #stats {
    padding: 2.5rem 1.25rem;
  }

  .why-icon,
  .detail-icon,
  .b-icon {
    display: none !important;
  }

  .timeline-steps {
    gap: 2rem;
  }
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

@media (max-width: 600px) {
  .hamburger {
    display: flex;
  }
}


.apply-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--navy);
  border: 1px solid var(--glass-border);
  color: var(--white);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 77, 90, 0.15);
}

/* Style custom selects with drop arrow background */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '\f0d7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--text-muted);
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  pointer-events: none;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.form-control option {
  background-color: var(--navy);
  color: var(--white);
}

.light-mode .form-control option {
  background-color: var(--white);
  color: var(--navy);
}

.w-100 {
  width: 100%;
}

.form-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-footer i {
  margin-right: 6px;
}

.success-msg {
  display: none;
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  color: #10B981;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
}

.success-msg i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.success-msg h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.success-msg p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .apply-container {
    padding: 24px;
    border-radius: 16px;
  }
}
/* UNIFIED NAVBAR OVERRIDE (MATCHING GCA & CAREERPLUS) */
.navbar .nav-inner { padding: 0.8rem 0 !important; }
.navbar.scrolled .nav-inner { padding: 0.5rem 0 !important; }
@media (max-width: 991px) { .navbar .nav-inner, .navbar.scrolled .nav-inner, .nav-inner { padding: 0.4rem 0 !important; } .navbar .nav-logo img, .navbar.scrolled .nav-logo img { height: 38px !important; } .navbar .nav-logo-text { margin-top: 6px !important; font-size: 1rem !important; } }

