/* index.css - Premium Light Theme Redesign with Class Synchronization */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --color-navy: #001648;
  --color-orange: #fd4800;
  --color-sky-blue: #38B0FF;
  --color-teal: #00BFA6;
  
  --color-bg-deep: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-light: #f7fafc;
  
  --color-text-main: #001648;
  --color-text-muted: #4a5568;
  --color-text-dim: #718096;
  
  --border-light: rgba(0, 22, 72, 0.06);
  --border-navy: rgba(0, 22, 72, 0.12);
  --border-orange: rgba(253, 72, 0, 0.15);
  
  --shadow-sm: 0 2px 4px rgba(0, 22, 72, 0.02);
  --shadow-md: 0 10px 30px rgba(0, 22, 72, 0.04);
  --shadow-lg: 0 20px 40px rgba(0, 22, 72, 0.06);

  --cursor-size: 8px;
  --cursor-ring-size: 40px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-deep);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.65;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* SLEEK SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #ffffff;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 22, 72, 0.15);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-navy);
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  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; }

/* --- CUSTOM CURSOR --- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-size);
  height: var(--cursor-size);
  background-color: var(--color-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.35s cubic-bezier(0.19, 1, 0.22, 1), height 0.35s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.3s ease;
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-ring-size);
  height: var(--cursor-ring-size);
  border: 1px solid rgba(0, 22, 72, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background-color 0.3s ease;
}

body.hovering-link .custom-cursor {
  width: 12px;
  height: 12px;
  background-color: var(--color-navy);
}
body.hovering-link .custom-cursor-ring {
  width: 60px;
  height: 60px;
  border-color: rgba(0, 22, 72, 0.25);
  background-color: rgba(0, 22, 72, 0.02);
}

body.hovering-button .custom-cursor {
  width: 0;
  height: 0;
}
body.hovering-button .custom-cursor-ring {
  width: 75px;
  height: 75px;
  border-color: var(--color-orange);
  background-color: rgba(253, 72, 0, 0.05);
}

/* --- PRELOADER --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preload-logo-wrap {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.preload-logo-container {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preload-logo-glow-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(0, 22, 72, 0.1);
  border-top-color: var(--color-orange);
  border-bottom-color: var(--color-navy);
  animation: spinRing 4s linear infinite;
}

.preload-logo-img {
  max-width: 80px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.preload-percentage {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.preload-bar-bg {
  width: 200px;
  height: 4px;
  background: rgba(0, 22, 72, 0.05);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.preload-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-navy), var(--color-orange));
  border-radius: 10px;
  transition: width 0.08s ease-out;
}

.preload-subtitle {
  margin-top: 15px;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-navy);
  opacity: 0.8;
}

/* --- TYPOGRAPHY & HYBRID STYLING --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  line-height: 1.15;
}

.highlight-orange {
  color: var(--color-orange);
}

.highlight-teal {
  color: var(--color-teal);
}

.highlight-sky-blue {
  color: var(--color-sky-blue);
}

p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media(max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* --- BUTTONS --- */
.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background-color: var(--color-navy);
  color: #ffffff;
  transition: var(--transition-fast);
  gap: 8px;
}
.btn-navy:hover {
  background-color: #0b255e;
  transform: translateY(-1px);
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 23px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid var(--color-navy);
  color: var(--color-navy);
  transition: var(--transition-fast);
  gap: 8px;
}
.btn-outline-navy:hover {
  background-color: rgba(0, 22, 72, 0.03);
  transform: translateY(-1px);
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background-color: var(--color-orange);
  color: #ffffff;
  transition: var(--transition-fast);
  gap: 8px;
}
.btn-orange:hover {
  background-color: #e33f00;
  transform: translateY(-1px);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000; /* Header is always on top */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 22, 72, 0.05);
}

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

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

.logo-icon {
  height: 32px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.logo-title {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-title span.orange {
  color: var(--color-orange);
}
.logo-title span.navy {
  color: var(--color-navy);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

nav li {
  position: relative;
}

nav a {
  text-decoration: none;
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a:hover {
  color: var(--color-orange);
}

/* Nav dropdown indicators */
.nav-caret {
  width: 8px;
  height: 5px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

nav li:hover .nav-caret {
  transform: rotate(180deg);
}

/* Dropdown Menu styling */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 220px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 200;
}

nav li:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  padding: 8px 12px;
  font-size: 0.9rem;
  border-radius: 4px;
  font-weight: 500;
}
.dropdown-menu a:hover {
  background-color: var(--color-bg-light);
  color: var(--color-orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media(max-width: 991px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    padding: 100px 30px 40px 30px;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  nav a {
    font-size: 1.1rem;
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    padding-left: 15px;
    display: none;
    opacity: 1;
    pointer-events: auto;
  }

  nav li.active-mobile-dropdown .dropdown-menu {
    display: block;
  }
}

/* --- HERO SECTION --- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 120px;
  background-color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media(max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  background-color: #E6F4FE;
  color: var(--color-sky-blue);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
}

@media(max-width: 1200px) {
  .hero-title {
    font-size: 2.8rem;
  }
}
@media(max-width: 576px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

.hero-desc {
  font-size: 1.05rem;
  margin-bottom: 30px;
  color: var(--color-text-muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 35px;
}

.btn-calendar-icon {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  margin-left: 6px;
  vertical-align: middle;
  transition: var(--transition-fast);
}

.trust-block {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -10px;
}
.avatar-stack img:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: 240px;
  line-height: 1.4;
  font-weight: 500;
}

.trust-arrow-svg {
  position: absolute;
  left: 340px;
  top: -15px;
  width: 45px;
  height: 35px;
  fill: none;
  stroke: var(--color-sky-blue);
  stroke-width: 1.5;
  transform: rotate(-10deg);
}

@media(max-width: 576px) {
  .trust-arrow-svg {
    display: none;
  }
}

/* =========================================================================
   TALENT ECOSYSTEM - ORBITAL ANIMATION SYSTEM
   Technique: rotate(start) translateX(radius) rotate(-start) → node orbits, stays upright
   ========================================================================= */

/* Outer container card */
.ecosystem-container {
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
}

.ecosystem-header-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

/* Responsive Orbit Arena */
.eco-system {
  position: relative;
  width: 92%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: visible;
  container-type: inline-size;
}

/* Concentric background decorative rings (Dashed like the mockup) */
.eco-bg-rings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.eco-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.eco-ring-outer {
  width: 76%;
  height: 76%;
  border: 1px dashed rgba(0, 22, 72, 0.05);
}

.eco-ring-middle {
  width: 64%;
  height: 64%;
  border: 2px dashed rgba(56, 176, 255, 0.22);
  animation: trackSpin 60s linear infinite;
}

.eco-ring-inner {
  width: 46%;
  height: 46%;
  border: 1px dashed rgba(0, 22, 72, 0.05);
}

@keyframes trackSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* STATIC CENTER HUB */
.eco-center-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: auto;
}

.eco-hub-inner {
  width: 27cqw;
  height: 27cqw;
  border-radius: 50%;
  background: #ffffff;
  border: 0.35cqw solid rgba(0, 22, 72, 0.08);
  box-shadow: 0 1.2cqw 4cqw rgba(0, 22, 72, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.2cqw;
}

.eco-hub-brand {
  font-size: clamp(16px, 2.4cqw, 26px);
  font-weight: 800;
  line-height: 1.1;
}
.eco-hub-brand .orange { color: var(--color-orange); }
.eco-hub-brand .navy  { color: var(--color-navy); }

.eco-hub-sub {
  font-size: clamp(10px, 1.3cqw, 14px);
  color: var(--color-text-dim);
  line-height: 1.35;
  margin-top: 0.8cqw;
  font-weight: 500;
}

/* ROTATING WHEEL CONTAINER (Holds SVG lines, Main nodes, and Sub-nodes) */
.eco-orbit-wheel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  animation: orbit-spin 38s linear infinite;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* SVG Connecting Lines Layer */
.eco-wheel-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* ORBITING NODES (Main Candidates, Colleges, Companies) */
.eco-orb {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 20cqw;
  height: 20cqw;
  z-index: 6;
  cursor: pointer;
}

.eco-orb-inner {
  width: 100%;
  height: 100%;
  position: relative;
  animation: counter-spin 38s linear infinite;
}

@keyframes counter-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Pause whole animation on hover */
.eco-system:hover .eco-orbit-wheel,
.eco-system:hover .eco-orb-inner,
.eco-system:hover .eco-sub-inner,
.eco-system:hover .eco-lbl-text {
  animation-play-state: paused;
}

/* Node circle image */
.eco-node-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.5cqw solid #ffffff;
  box-shadow: 0 0.8cqw 3cqw rgba(0, 22, 72, 0.10);
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.eco-node-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eco-orb:hover .eco-node-img {
  transform: scale(1.08);
}

/* Node labels beneath circle */
.eco-node-lbl {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.9cqw);
  font-family: var(--font-body);
  font-size: clamp(12px, 2.2cqw, 16px);
  font-weight: 700;
  background: #ffffff;
  padding: clamp(5px, 1cqw, 10px) clamp(12px, 2cqw, 22px);
  border-radius: 2cqw;
  border: 1px solid var(--border-light);
  box-shadow: 0 0.4cqw 1.2cqw rgba(0, 22, 72, 0.05);
  white-space: nowrap;
  z-index: 8;
}

/* Counter-rotating text inside the orbiting label */
.eco-lbl-text {
  animation: counter-spin 38s linear infinite;
  display: inline-block;
}

/* SUB-NODE CHIP WRAPPERS */
.eco-sub-node-wrap {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 7;
}

.eco-sub-inner {
  background: #ffffff;
  border-radius: 4cqw;
  border: 1px solid rgba(0, 22, 72, 0.08);
  padding: clamp(5px, 1.2cqw, 10px) clamp(12px, 2.4cqw, 24px);
  display: flex;
  align-items: center;
  gap: 0.8cqw;
  font-family: var(--font-body);
  font-size: clamp(12px, 2cqw, 16px);
  font-weight: 600;
  color: var(--color-navy);
  box-shadow: 0 0.6cqw 2cqw rgba(0, 22, 72, 0.05);
  white-space: nowrap;
  animation: counter-spin 38s linear infinite;
}

.eco-sub-inner svg {
  width: clamp(14px, 2.8cqw, 20px);
  height: clamp(14px, 2.8cqw, 20px);
  flex-shrink: 0;
}

/* Badge pills */
.badge-blue-pill {
  background: #E6F4FE;
  color: var(--color-sky-blue);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: clamp(9px, 1.7cqw, 13px);
  font-weight: 700;
}

.badge-orange-pill {
  background: #FFF5F2;
  color: var(--color-orange);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: clamp(9px, 1.7cqw, 13px);
  font-weight: 700;
}

.badge-green-up {
  color: #22c55e;
  font-size: clamp(10px, 1.8cqw, 13px);
  font-weight: 700;
}

/* --- STATS BAR ROW --- */
.stats-bar-section {
  padding: 24px 0;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
  margin-top: -30px;
}

.stats-bar-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 32px 40px;
  gap: 32px;
}

@media(max-width: 991px) {
  .stats-bar-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px;
  }
}
@media(max-width: 480px) {
  .stats-bar-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 16px;
  }
}

.stats-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media(max-width: 480px) {
  .stats-bar-item {
    flex-direction: column;
    gap: 8px;
  }
}

.stats-bar-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats-bar-icon-wrap.candidates-bg {
  background-color: #E6F4FE;
  color: var(--color-sky-blue);
}

.stats-bar-icon-wrap.colleges-bg {
  background-color: #EAFDF8;
  color: var(--color-teal);
}

.stats-bar-icon-wrap.companies-bg {
  background-color: #FFF5F2;
  color: var(--color-orange);
}

.stats-bar-icon-wrap.trained-bg {
  background-color: #F3EAFE;
  color: #8b5cf6;
}

.stats-bar-content {
  display: flex;
  flex-direction: column;
}

.stats-bar-number {
  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
}

.stats-bar-label {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  font-weight: 500;
}

/* --- AUDIENCE PATHS (THREE CARDS) --- */
.audience-section {
  padding: 120px 0;
  background-color: #ffffff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

@media(max-width: 991px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 450px;
    margin: 0 auto;
  }
}

.audience-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

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

.aud-card-header {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.aud-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aud-card-icon-tag {
  position: absolute;
  bottom: -20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  z-index: 2;
}

.aud-card-body {
  padding: 30px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.aud-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.aud-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
  flex: 1;
}

.aud-card-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aud-card-btn {
  width: 100%;
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 6px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.aud-card-btn.sky-blue-btn {
  background-color: var(--color-sky-blue);
  color: #ffffff;
}
.aud-card-btn.sky-blue-btn:hover {
  background-color: #1e9dff;
}

.aud-card-btn.teal-btn {
  background-color: var(--color-teal);
  color: #ffffff;
}
.aud-card-btn.teal-btn:hover {
  background-color: #00a48e;
}

.aud-card-btn.orange-btn {
  background-color: var(--color-orange);
  color: #ffffff;
}
.aud-card-btn.orange-btn:hover {
  background-color: #e33f00;
}

.aud-card-subdomain-link {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.aud-card-subdomain-link svg {
  width: 10px;
  height: 10px;
}

.aud-card-subdomain-link.sky-blue-link {
  color: var(--color-sky-blue);
}
.aud-card-subdomain-link.teal-link {
  color: var(--color-teal);
}
.aud-card-subdomain-link.orange-link {
  color: var(--color-orange);
}

/* --- SOLUTIONS SECTION --- */
#solutions {
  padding: 120px 0;
  background-color: var(--color-bg-light);
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--color-text-dim);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media(max-width: 1100px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

.solution-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

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

.sol-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-card.blue-theme .sol-card-icon-wrap {
  background-color: #E6F4FE;
  color: var(--color-sky-blue);
}

.solution-card.green-theme .sol-card-icon-wrap {
  background-color: #EAFDF8;
  color: var(--color-teal);
}

.solution-card.orange-theme .sol-card-icon-wrap {
  background-color: #FFF5F2;
  color: var(--color-orange);
}

.solution-card.teal-theme .sol-card-icon-wrap {
  background-color: #EAFDF8;
  color: var(--color-teal);
}

.sol-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sol-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.sol-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.solution-card.blue-theme .sol-card-link { color: var(--color-sky-blue); }
.solution-card.green-theme .sol-card-link { color: var(--color-teal); }
.solution-card.orange-theme .sol-card-link { color: var(--color-orange); }
.solution-card.teal-theme .sol-card-link { color: var(--color-teal); }

.sol-card-link:hover {
  gap: 10px;
}

/* --- 6-STEP RECRUITMENT PROCESS --- */
#process {
  padding: 120px 0;
  background-color: #ffffff;
}

.process-steps-wrap {
  position: relative;
  margin-top: 40px;
}

.process-line-svg {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 1;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

@media(max-width: 991px) {
  .process-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
  }
  .process-line-svg {
    display: none;
  }
}
@media(max-width: 600px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon-outer {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
}

.step-number-badge {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-dim);
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.step-icon-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.process-step-item:hover .step-icon-circle {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.step-icon-circle svg {
  width: 24px;
  height: 24px;
}

.process-step-item.step-1 .step-icon-circle svg { color: var(--color-sky-blue); }
.process-step-item.step-2 .step-icon-circle svg { color: var(--color-teal); }
.process-step-item.step-3 .step-icon-circle svg { color: var(--color-orange); }
.process-step-item.step-4 .step-icon-circle svg { color: #8b5cf6; }
.process-step-item.step-5 .step-icon-circle svg { color: var(--color-sky-blue); }
.process-step-item.step-6 .step-icon-circle svg { color: var(--color-teal); }

.step-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 8px;
  max-width: 130px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.72rem;
  color: var(--color-text-dim);
  text-align: center;
  max-width: 140px;
  line-height: 1.4;
}

/* --- WHY CHOOSE VIBRANTMINDS --- */
#why-choose {
  padding: 120px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

@media(max-width: 991px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 450px;
    margin: 0 auto;
  }
}

.why-col {
  display: flex;
  flex-direction: column;
}

.why-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.why-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-col.candidates-col .why-icon-wrap { background-color: #E6F4FE; color: var(--color-sky-blue); }
.why-col.colleges-col .why-icon-wrap { background-color: #EAFDF8; color: var(--color-teal); }
.why-col.companies-col .why-icon-wrap { background-color: #FFF5F2; color: var(--color-orange); }

.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.why-list-item svg {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.why-col.candidates-col .why-list-item svg { color: var(--color-sky-blue); }
.why-col.colleges-col .why-list-item svg { color: var(--color-teal); }
.why-col.companies-col .why-list-item svg { color: var(--color-orange); }

/* --- PREFOOTER CTA BANNER --- */
.cta-banner-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.cta-banner-container {
  background-color: var(--color-navy);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  position: relative;
}

@media(max-width: 991px) {
  .cta-banner-container {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 24px;
  }
}

.cta-banner-left {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media(max-width: 600px) {
  .cta-banner-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.cta-students-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.cta-students-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-text {
  display: flex;
  flex-direction: column;
}

.cta-banner-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
@media(max-width: 600px) {
  .cta-banner-title {
    font-size: 1.6rem;
  }
}

.cta-banner-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cta-banner-right {
  display: flex;
  justify-content: flex-end;
}
@media(max-width: 991px) {
  .cta-banner-right {
    justify-content: flex-start;
  }
}

.cta-banner-right .btn-orange {
  padding: 14px 28px;
  font-size: 0.95rem;
}

/* --- FOOTER --- */
footer {
  background-color: var(--color-navy);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(5, 0.94fr);
  gap: 32px;
  margin-bottom: 48px;
}

@media(max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media(max-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand .logo-title span.navy {
  color: #ffffff;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 200px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}
.social-link:hover {
  background-color: var(--color-orange);
  transform: translateY(-2px);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition-fast);
}
.footer-col a:hover {
  color: var(--color-orange);
  padding-left: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}
@media(max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Scroll Progress indicator */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--color-orange);
  z-index: 1000;
  width: 0%;
}

/* Mobile Overrides for Contact Section */
@media(max-width: 576px) {
  #contact .why-grid > div {
    padding: 24px !important;
  }
}
