:root {
  --primary-dark: #0a0e1a;
  --secondary-dark: #141824;
  --accent-blue: #2b9fd9;
  --accent-cyan: #4dd4ff;
  --silver: #c5d1dc;
  --light-silver: #e8eef3;
  --text-primary: #ffffff;
  --text-secondary: #a8b4c1;
  --gradient-primary: linear-gradient(135deg, #2b9fd9 0%, #1a5f8a 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Barlow",
    -apple-system,
    sans-serif;
  background: var(--primary-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 159, 217, 0.2);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(10, 14, 26, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1) contrast(1);
}

.header-logo img:hover {
  filter: brightness(1.1) contrast(1.1);
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}


.nav-links a:hover {
  color: var(--accent-cyan);
}
.header-cta {
  padding: 0.5rem 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--gradient-primary);
  color: white !important;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(43, 159, 217, 0.3);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(43, 159, 217, 0.5);
  border-color: var(--accent-cyan);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-cyan);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 968px) {
  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 82px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 82px);
    background: rgba(10, 14, 26, 0.98);
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s ease;
    border-top: 1px solid rgba(43, 159, 217, 0.2);
  }

  nav.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }

  .header-cta {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #0a0e1a 0%, #0d1220 50%, #0a0e1a 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(43, 159, 217, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(77, 212, 255, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(43, 159, 217, 0.08) 0%,
      transparent 70%
    );
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(43, 159, 217, 0.02) 2px,
      rgba(43, 159, 217, 0.02) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(43, 159, 217, 0.02) 2px,
      rgba(43, 159, 217, 0.02) 4px
    );
  pointer-events: none;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-bottom: 2rem;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--accent-cyan) 50%,
    var(--accent-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  background-size: 200% auto;
  animation: textShine 4s ease-in-out infinite;
}

@keyframes textShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.typing-cursor {
  display: inline-block;
  margin-left: 3px;
  animation: blink 0.7s step-end infinite;
  color: var(--accent-cyan);
  font-weight: 400;
  opacity: 1;
  transition: opacity 0.5s ease;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.typed-text {
  display: inline;
}

.hero h1.glitch {
  position: relative;
}

.hero h1.glitch::before,
.hero h1.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--accent-cyan) 50%,
    var(--accent-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1.glitch::before {
  animation: glitch-1 2s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.hero h1.glitch::after {
  animation: glitch-2 2s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
}

@keyframes glitch-2 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(2px, -2px);
  }
  40% {
    transform: translate(2px, 2px);
  }
  60% {
    transform: translate(-2px, -2px);
  }
  80% {
    transform: translate(-2px, 2px);
  }
}

.hero-subhead {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 850px;
  margin: 0 auto 3rem;
  line-height: 1.9;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-buttons .btn {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-buttons .btn-primary {
  background: var(--gradient-primary);
  box-shadow: 0 6px 25px rgba(43, 159, 217, 0.35);
  border-color: #2380b3;
}

.hero-buttons .btn-primary:hover {
  box-shadow: 0 10px 35px rgba(43, 159, 217, 0.5);
  transform: translateY(-3px);
}

.hero-buttons .btn-secondary {
  background: rgba(43, 159, 217, 0.1);
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
  background: rgba(43, 159, 217, 0.2);
}

.btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white !important;
  box-shadow: 0 4px 20px rgba(43, 159, 217, 0.3);
  border-color: #2380b3;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43, 159, 217, 0.5);
  border-color: var(--accent-cyan);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-cyan) !important;
  border-color: var(--accent-blue);
}

.btn-secondary:hover {
  background: rgba(43, 159, 217, 0.1);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

section {
  padding: 100px 0;
  position: relative;
}

section:nth-of-type(even) {
  background: var(--secondary-dark);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.explainer-section {
  background: var(--secondary-dark);
}

.explainer-content {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.explainer-content p {
  margin-bottom: 1.5rem;
}

.pov-system-section {
  background: var(--primary-dark);
}

.benefit-card {
  background: rgba(43, 159, 217, 0.05);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 40px rgba(43, 159, 217, 0.3);
}

.benefit-icon {
  font-size: 3.5rem;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  color: var(--light-silver);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.media-pipeline-section {
  background: var(--secondary-dark);
}

.pipeline-card {
  background: rgba(43, 159, 217, 0.05);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.pipeline-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 30px rgba(43, 159, 217, 0.25);
}

.pipeline-number {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 20px rgba(43, 159, 217, 0.4);
}

.pipeline-arrow {
  font-size: 2.5rem;
  color: var(--accent-blue);
}

.pipeline-card h3 {
  font-size: 1.4rem;
  color: var(--light-silver);
  margin-bottom: 1rem;
}

.pipeline-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.how-it-works-section {
  background: var(--primary-dark);
}

.step-card {
  background: rgba(43, 159, 217, 0.05);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-8px) rotate(2deg);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 40px rgba(43, 159, 217, 0.3);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 20px rgba(43, 159, 217, 0.4);
}

.step-card h3 {
  font-size: 1.5rem;
  color: var(--light-silver);
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.scout-planned-section {
  background: linear-gradient(180deg, #141824 0%, #1a1f2e 50%, #141824 100%);
  border-top: 3px solid rgba(43, 159, 217, 0.3);
  border-bottom: 3px solid rgba(43, 159, 217, 0.3);
  position: relative;
  overflow: hidden;
}

.scout-planned-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(43, 159, 217, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(77, 212, 255, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.scout-planned-section .container {
  position: relative;
  z-index: 1;
}

.planned-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(43, 159, 217, 0.2) 0%,
    rgba(77, 212, 255, 0.15) 100%
  );
  color: var(--accent-cyan);
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(43, 159, 217, 0.4);
  box-shadow: 0 4px 15px rgba(43, 159, 217, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.planned-badge i {
  font-size: 1.2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.scout-planned-section .section-title {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.scout-planned-section .section-intro {
  font-size: 1.2rem;
  max-width: 900px;
}

.scout-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-top: 2.5rem;
}

.scout-description p {
  margin-bottom: 1.75rem;
  padding: 1.5rem;
  background: rgba(43, 159, 217, 0.03);
  border-radius: 8px;
  border-left: 3px solid var(--accent-blue);
}

.scout-feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(43, 159, 217, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(43, 159, 217, 0.25);
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.scout-feature-item:hover {
  background: rgba(43, 159, 217, 0.15);
  border-color: var(--accent-cyan);
  transform: translateX(8px);
  box-shadow: 0 5px 20px rgba(43, 159, 217, 0.2);
}

.feature-check {
  color: var(--accent-blue);
  font-size: 1.8rem;
  min-width: 30px;
}

.clarification-box {
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.12) 0%,
    rgba(255, 193, 7, 0.08) 100%
  );
  border-left: 5px solid #ffc107;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2.5rem;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.1);
}

.clarification-box p {
  color: var(--text-primary);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.clarification-box i {
  color: #ffc107;
  font-size: 1.3rem;
  margin-right: 0.5rem;
}

.scholar-integration {
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(43, 159, 217, 0.08) 0%,
    rgba(77, 212, 255, 0.05) 100%
  );
  border-radius: 12px;
  border: 2px solid rgba(43, 159, 217, 0.25);
  position: relative;
  overflow: hidden;
}

.scholar-integration::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.scholar-integration h3 {
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.scholar-integration h3 i {
  font-size: 1.5rem;
}

.scholar-integration p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.expansion-note {
  font-size: 1rem;
  color: rgba(168, 180, 193, 0.8);
  font-style: italic;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(43, 159, 217, 0.03);
  border-radius: 8px;
  border: 1px dashed rgba(43, 159, 217, 0.2);
}

.media-scholar-section {
  background: var(--primary-dark);
}

.scholar-card {
  background: rgba(43, 159, 217, 0.05);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.scholar-card:hover {
  transform: scale(1.05);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 40px rgba(43, 159, 217, 0.3);
}

.scholar-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 20px rgba(43, 159, 217, 0.4);
}

.scholar-card h3 {
  font-size: 1.5rem;
  color: var(--light-silver);
  margin-bottom: 1rem;
}

.scholar-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-box {
  background: var(--secondary-dark);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(43, 159, 217, 0.2);
}

.cta-box h3 {
  color: var(--light-silver);
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.impact-section {
  background: var(--secondary-dark);
}

.metric-card {
  background: rgba(43, 159, 217, 0.05);
  border: 2px solid rgba(43, 159, 217, 0.2);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.metric-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(43, 159, 217, 0.3);
}

.metric-icon {
  font-size: 2.5rem;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-blue);
  font-family: "Rajdhani", sans-serif;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.sponsors-section {
  background: var(--primary-dark);
}

.sponsor-placeholder {
  aspect-ratio: 3/2;
  background: rgba(43, 159, 217, 0.05);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-align: center;
}

.sponsor-placeholder:hover {
  border-color: var(--accent-blue);
  background: rgba(43, 159, 217, 0.1);
}

.partner-cta p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.faq-section {
  background: var(--secondary-dark);
}

.accordion-item {
  background: rgba(43, 159, 217, 0.05);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 8px !important;
  margin-bottom: 1rem;
}

.accordion-button {
  background: transparent;
  color: var(--light-silver);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.5rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: rgba(43, 159, 217, 0.1);
  color: var(--accent-cyan);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent-blue);
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(57%) sepia(48%) saturate(1000%)
    hue-rotate(166deg);
}

.accordion-body {
  background: transparent;
  color: var(--text-secondary);
  padding: 1.5rem;
  line-height: 1.7;
}

.final-cta-section {
  background: var(--primary-dark);
  text-align: center;
}

.final-cta-section h2 {
  color: var(--light-silver);
  margin-bottom: 1rem;
}

.final-cta-section p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  background: var(--secondary-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(43, 159, 217, 0.2);
}

footer h3 {
  color: var(--light-silver);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

footer p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

footer a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--light-silver);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(43, 159, 217, 0.2);
}

.footer-bottom p {
  color: var(--text-secondary);
  margin: 0;
}
.footer-bottom span {
  color: var(--accent-cyan);
}
@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
    overflow: visible;
    margin-bottom: 120px;
  }
  .hero::before {
    height: 150%;
  }
  .hero-content {
    padding: 1rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .timeline-item {
    display: block !important;
    text-align: center;
  }
  .timeline-item i {
    margin-bottom: 2rem;
  }
  .launch-timeline {
    padding: 2.5rem 0 !important;
    background-color: transparent !important;
    border: none !important;
  }
  .btn {
    width: 100%;
  }

  .pipeline-arrow {
    transform: rotate(90deg) !important;
    margin: 1rem 0;
  }
  .receive-box {
    padding: 3rem 1rem !important;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom .col-md-6:last-child {
    text-align: center !important;
    margin-top: 1rem;
  }
}

section {
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(43, 159, 217, 0.2) 50%,
    transparent 100%
  );
}

section:last-of-type::after {
  display: none;
}

.benefit-card,
.pipeline-card,
.step-card,
.scholar-card {
  position: relative;
  overflow: hidden;
}

.benefit-card::before,
.pipeline-card::before,
.step-card::before,
.scholar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(43, 159, 217, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.benefit-card:hover::before,
.pipeline-card:hover::before,
.step-card:hover::before,
.scholar-card:hover::before {
  left: 100%;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.btn:hover::before {
  width: 100%;
  height: 300px;
}

.metric-card {
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(43, 159, 217, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.metric-card:hover::before {
  opacity: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.2;
  }

  .hero-subhead {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 100%;
  }

  .scout-description p {
    padding: 1rem;
  }

  .scholar-integration {
    padding: 1.5rem;
  }

  .clarification-box {
    padding: 1.5rem;
  }

  .scout-feature-item {
    padding: 1rem;
    font-size: 0.95rem;
  }
  .receive-list li{
    font-size: 0.95rem !important;
  }
  .slider-btn{
    width: 30px !important;
    height: 30px !important;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(
    90deg,
    rgba(43, 159, 217, 0.05) 25%,
    rgba(43, 159, 217, 0.15) 50%,
    rgba(43, 159, 217, 0.05) 75%
  );
  background-size: 1000px 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--accent-blue);
  border-radius: 20px;
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background: var(--accent-blue);
  border-radius: 3px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0;
    top: 30px;
  }
  51% {
    opacity: 0;
    top: 8px;
  }
  100% {
    opacity: 1;
    top: 8px;
  }
}
.what-schools-receive-section {
  background: var(--primary-dark);
}
.receive-box {
  background: rgba(43, 159, 217, 0.05);
  border: 2px solid rgba(43, 159, 217, 0.2);
  border-radius: 12px;
  padding: 3rem;
}
.receive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.receive-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: rgba(43, 159, 217, 0.03);
  border-radius: 8px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.receive-list li:hover {
  background: rgba(43, 159, 217, 0.1);
  transform: translateX(10px);
}
.receive-list li i {
  color: var(--accent-blue);
  font-size: 1.5rem;
  min-width: 30px;
}
.launch-timeline {
  background: rgba(43, 159, 217, 0.05);
  border: 2px solid rgba(43, 159, 217, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  background: rgba(43, 159, 217, 0.03);
  border-radius: 8px;
  border-left: 4px solid var(--accent-blue);
  transition: all 0.3s ease;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item:hover {
  background: rgba(43, 159, 217, 0.1);
  border-left-color: var(--accent-cyan);
  transform: translateX(10px);
}
.timeline-item i {
  color: var(--accent-blue);
  font-size: 2.5rem;
  min-width: 50px;
}
.timeline-item h4 {
  color: var(--light-silver);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.timeline-item p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}
.contact-info {
  margin: 2rem 0;
}
.contact-email {
  font-size: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.contact-email a,
.contact-phone a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-email a:hover,
.contact-phone a:hover {
  color: var(--light-silver);
}
.contact-email i, 
.contact-phone i {
  color: var(--accent-blue);
  font-size: 1.8rem;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(43, 159, 217, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(43, 159, 217, 0.6);
}
.contact-form {
  background: rgba(43, 159, 217, 0.05);
  padding: 3rem;
  border-radius: 12px;
  border: 2px solid rgba(43, 159, 217, 0.2);
}
.contact-form .form-control,
.contact-form .form-select {
  background: rgba(43, 159, 217, 0.03);
  border: 1px solid rgba(43, 159, 217, 0.2);
  color: var(--text-primary);
  padding: 1rem;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(43, 159, 217, 0.08);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 0.2rem rgba(43, 159, 217, 0.2);
  color: var(--text-primary);
}
.contact-form .form-control::placeholder {
  color: var(--text-secondary);
}
.contact-form .form-select option {
  background: var(--secondary-dark);
  color: var(--text-primary);
}
.contact-info-alt {
  margin-top: 2rem;
}
.contact-info-alt .contact-phone {
  margin-top: 1.5rem;
}
.contact-info-alt .contact-email, 
.contact-info-alt .contact-phone {
  font-size: 1.3rem;
  margin-bottom: 0;
}
.social-media-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 45px;
  height: 45px;
  background: rgba(43, 159, 217, 0.1);
  border: 2px solid rgba(43, 159, 217, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-link:hover {
  background: var(--gradient-primary);
  border-color: var(--accent-cyan);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(43, 159, 217, 0.4);
}
.sponsor-slider-wrapper {
  position: relative;
  padding: 2rem 60px;
}
.sponsor-slider {
  overflow: hidden;
  width: 100%;
}
.sponsor-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}
.sponsor-card {
  min-width: calc(33.333% - 1.33rem);
  flex-shrink: 0;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(43, 159, 217, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
}
.slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(43, 159, 217, 0.5);
}
.prev-btn {
  left: 0;
}
.next-btn {
  right: 0;
}
@media (max-width: 968px) {
  .sponsor-card {
    min-width: calc(50% - 1rem);
  }
}
@media (max-width: 768px) {
  .sponsor-card {
    min-width: 100%;
  }
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
  .contact-form {
    padding: 2rem 1.5rem;
  }
  .social-media-links {
    justify-content: start;
  }
  .footer-bottom{
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(180deg, #0a0e1a 0%, #0d1220 100%);
  position: relative;
}
.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--accent-cyan) 50%,
    var(--accent-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-content .lead {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}
.nav-links a.active {
  color: var(--accent-cyan);
}
.nav-links a.active::after {
  width: 100%;
}
.eligibility-card,
.responsibility-card,
.detail-card,
.partnership-type {
  background: rgba(43, 159, 217, 0.05);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}
.eligibility-card:hover,
.responsibility-card:hover,
.detail-card:hover,
.partnership-type:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(43, 159, 217, 0.25);
}
.eligibility-card h3,
.responsibility-card h3,
.detail-card h3,
.partnership-type h3 {
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.eligibility-card ul,
.responsibility-card ul,
.detail-card ul,
.partnership-type ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.eligibility-card li,
.responsibility-card li,
.detail-card li,
.partnership-type li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(43, 159, 217, 0.1);
  line-height: 1.6;
}
.eligibility-card li:last-child,
.responsibility-card li:last-child,
.detail-card li:last-child,
.partnership-type li:last-child {
  border-bottom: none;
}
.responsibility-icon,
.impact-icon,
.partnership-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
}
.process-step {
  text-align: center;
  padding: 2rem;
  background: rgba(43, 159, 217, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(43, 159, 217, 0.2);
  height: 100%;
  transition: all 0.3s ease;
}
.process-step:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.benefit-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(43, 159, 217, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--accent-blue);
  transition: all 0.3s ease;
}
.benefit-item:hover {
  background: rgba(43, 159, 217, 0.1);
  border-left-color: var(--accent-cyan);
  transform: translateX(10px);
}
.benefit-item i {
  color: var(--accent-blue);
  font-size: 1.8rem;
  min-width: 30px;
}
.benefit-item h4 {
  color: var(--light-silver);
  margin-bottom: 0.5rem;
}
.benefit-item p {
  color: var(--text-secondary);
  margin: 0;
}
.eligibility-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.eligibility-step {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: rgba(43, 159, 217, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--accent-blue);
  transition: all 0.3s ease;
}
.eligibility-step:hover {
  background: rgba(43, 159, 217, 0.1);
  border-left-color: var(--accent-cyan);
}
.step-badge {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.eligibility-step h4 {
  color: var(--light-silver);
  margin-bottom: 0.5rem;
}
.eligibility-step p {
  color: var(--text-secondary);
  margin: 0;
}
.mission-statement {
  background: rgba(43, 159, 217, 0.08);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 5px solid var(--accent-blue);
}
.mission-statement .lead {
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0;
}
.impact-card,
.partnership-card {
  background: rgba(43, 159, 217, 0.05);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.impact-card:hover,
.partnership-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 40px rgba(43, 159, 217, 0.3);
}
.impact-card h3,
.partnership-card h3 {
  color: var(--light-silver);
  margin-bottom: 1rem;
}
.impact-card p,
.partnership-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}
.goals-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.goal-item {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: rgba(43, 159, 217, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(43, 159, 217, 0.2);
  transition: all 0.3s ease;
}
.goal-item:hover {
  background: rgba(43, 159, 217, 0.1);
  border-color: var(--accent-cyan);
}
.goal-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.goal-item h4 {
  color: var(--light-silver);
  margin-bottom: 0.5rem;
}
.goal-item p {
  color: var(--text-secondary);
  margin: 0;
}
.platform-overview {
  background: rgba(43, 159, 217, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(43, 159, 217, 0.2);
}
.platform-overview p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}
.platform-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.platform-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(43, 159, 217, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(43, 159, 217, 0.2);
  transition: all 0.3s ease;
}
.platform-features .feature-item:hover {
  background: rgba(43, 159, 217, 0.1);
  border-color: var(--accent-cyan);
}
.platform-features .feature-item i {
  color: var(--accent-blue);
  font-size: 1.5rem;
}
.platform-features .feature-item span {
  color: var(--text-secondary);
}
.overview-content .lead {
  color: var(--text-primary);
  line-height: 1.8;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.spec-item {
  padding: 1.5rem;
  background: rgba(43, 159, 217, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(43, 159, 217, 0.2);
  transition: all 0.3s ease;
}
.spec-item:hover {
  background: rgba(43, 159, 217, 0.1);
  border-color: var(--accent-cyan);
}
.spec-item h4 {
  color: var(--light-silver);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.spec-item p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}
.contact-section {
  padding: 80px 0;
}
.contact-form .form-label {
  color: var(--light-silver);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 80px;
  }
  .eligibility-step,
  .goal-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .step-badge,
  .goal-number {
    margin: 0 auto;
  }
  .platform-overview{
    padding: 2.5rem 1rem;
  }
}
/* ===================================
   NEW SECTIONS - GRANT-FIRST DESIGN
   =================================== */

/* Hero Highlights List */
.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
}

.hero-highlights li {
  color: var(--text-primary);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid;
  border-bottom-color: currentcolor;
  border-color: var(--accent-blue);
  border-radius: 10px;
  padding: 1rem;
}

.hero-highlights li i {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Explainer Section - Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: var(--text-secondary);
  background: rgba(43, 159, 217, 0.06);
  border-radius: 8px;
  padding: 2rem;
}

.feature-list li i {
  color: var(--accent-cyan);
  font-size: 2rem;
  flex-shrink: 0;
}

/* Allowable Use of Funds Section */
.allowable-use-section {
  padding: 5rem 0;
  background: var(--secondary-dark);
  position: relative;
}

.allowable-use-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-cyan),
    transparent
  );
}

.allowable-use-box {
  background: rgba(43, 159, 217, 0.05);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 12px;
  padding: 3rem;
}

.allowable-use-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.allowable-use-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: var(--text-primary);
  padding-left: 0.5rem;
}

.allowable-use-list li i {
  color: var(--accent-cyan);
  font-size: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Simple Rollout Timeline Section */
.rollout-timeline-section {
  padding: 5rem 0;
  background: var(--primary-dark);
}

.timeline-table {
  background: var(--secondary-dark);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.timeline-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  padding: 2rem;
  border-bottom: 1px solid rgba(43, 159, 217, 0.1);
  align-items: center;
}

.timeline-row:last-child {
  border-bottom: none;
}

.timeline-period {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  background-image: var(--gradient-primary);
  padding: 1rem;
  text-align: center;
}

.timeline-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Sponsor Section */
.sponsor-section {
  padding: 5rem 0;
  background: var(--secondary-dark);
  position: relative;
}

.sponsor-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-cyan),
    transparent
  );
}
.placeholder-icon i {
  font-size: 3rem;
  color: var(--accent-cyan);
  margin-bottom: 2rem;
}
.placeholder-icon p {
  color: #fff;
  font-size: 1.5rem;
}
/* Measurable Impact Section */
.measurable-impact-section {
  padding: 5rem 0;
  background: var(--primary-dark);
}

.metric-card {
  background: var(--secondary-dark);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(43, 159, 217, 0.2);
}

.metric-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(43, 159, 217, 0.2),
    rgba(77, 212, 255, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-icon i {
  font-size: 2rem;
  color: var(--accent-cyan);
}

.metric-card h3 {
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
  font-family: "Rajdhani", sans-serif;
}

.metric-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

/* Footer Legal Links */
.footer-legal-links {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.footer-legal-links a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--accent-cyan);
}

/* Privacy Policy & Terms Pages */
.privacy-policy-section,
.terms-of-service-section {
  padding: 3rem 0 5rem;
  background: var(--primary-dark);
}

.policy-content,
.terms-content {
  background: var(--secondary-dark);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 12px;
  padding: 3rem;
}

.policy-content h2,
.terms-content h2 {
  color: var(--accent-cyan);
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h2:first-of-type,
.terms-content h2:first-of-type {
  margin-top: 0;
}

.policy-content h3,
.terms-content h3 {
  color: var(--text-primary);
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-content p,
.terms-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.policy-content ul,
.terms-content ul {
  margin: 1rem 0 1.5rem 2rem;
  color: var(--text-secondary);
}

.policy-content ul li,
.terms-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-content a,
.terms-content a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-content a:hover,
.terms-content a:hover {
  color: var(--accent-blue);
}

.policy-content strong,
.terms-content strong {
  color: var(--text-primary);
}

.last-updated {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 2rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem;
  }

  .timeline-period {
    font-size: 1.1rem;
  }

  .timeline-description {
    font-size: 1rem;
  }

  .allowable-use-box,
  .policy-content,
  .terms-content {
    padding: 2rem 1.5rem;
  }

  .metric-card {
    padding: 2rem 1.5rem;
  }

  .metric-icon {
    width: 70px;
    height: 70px;
  }

  .metric-icon i {
    font-size: 1.75rem;
  }
  .placeholder-icon i{
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .placeholder-icon p{
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-highlights li {
    font-size: 0.95rem;
  }

  .feature-list li {
    font-size: 0.95rem;
  }

  .allowable-use-list li {
    font-size: 0.95rem;
  }
}
/* ============================================
   ENHANCED NEW SECTIONS - PROFESSIONAL DESIGN
   ============================================ */

/* Privacy Policy Section - Professional Layout */
.privacy-policy-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
}

.policy-content {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 20px;
  padding: 3.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.policy-content .last-updated {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(43, 159, 217, 0.1);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.policy-content h2 {
  color: var(--accent-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(43, 159, 217, 0.2);
  position: relative;
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content h2::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent-color);
}

.policy-content h3 {
  color: white;
  font-size: 1.35rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.policy-content ul li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.policy-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: rgba(43, 159, 217, 0.15);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
}

.policy-content ul li:hover {
  padding-left: 3rem;
  color: white;
}

.policy-content strong {
  color: white;
  font-weight: 600;
}

.policy-content a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  font-weight: 500;
}

.policy-content a:hover {
  color: white;
  border-bottom-color: var(--accent-color);
}

/* Terms of Service Section - Same Professional Style */
.terms-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
}

.terms-content {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(43, 159, 217, 0.2);
  border-radius: 20px;
  padding: 3.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.terms-content .last-updated {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(43, 159, 217, 0.1);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.terms-content h2 {
  color: var(--accent-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(43, 159, 217, 0.2);
  position: relative;
}

.terms-content h2:first-of-type {
  margin-top: 0;
}

.terms-content h2::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent-color);
}

.terms-content h3 {
  color: white;
  font-size: 1.35rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.terms-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.terms-content ul {
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.terms-content ul li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.terms-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: rgba(43, 159, 217, 0.15);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
}

.terms-content ul li:hover {
  padding-left: 3rem;
  color: white;
}

.terms-content strong {
  color: white;
  font-weight: 600;
}

.terms-content a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  font-weight: 500;
}

.terms-content a:hover {
  color: white;
  border-bottom-color: var(--accent-color);
}

/* Footer Legal Links Styling */
.footer-legal-links {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.footer-legal-links a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--accent-color);
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
  .policy-content,
  .terms-content {
    padding: 2.5rem 2rem;
    border-radius: 16px;
  }

  .policy-content h2,
  .terms-content h2 {
    font-size: 1.5rem;
  }

  .policy-content h3,
  .terms-content h3 {
    font-size: 1.2rem;
  }

  .policy-content p,
  .policy-content ul li,
  .terms-content p,
  .terms-content ul li {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .privacy-policy-section,
  .terms-section {
    padding: 3rem 0;
  }

  .policy-content,
  .terms-content {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   NEW HOMEPAGE SECTIONS - PRODUCT CLARITY
   ============================================ */

/* Hero Tagline */
.hero-tagline {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: var(--accent-cyan);
    font-weight: 600;
    margin: 1.5rem auto 2rem;
    max-width: 900px;
    line-height: 1.4;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.02em;
}

/* Hero Trust Line */
.hero-trust-line {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    font-weight: 500;
}

/* Apply Modal */
.apply-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.apply-modal.active {
    display: flex;
}

.apply-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.apply-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(10, 14, 26, 0.98) 100%);
    border: 1px solid rgba(43, 159, 217, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.apply-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(43, 159, 217, 0.1);
    border: 1px solid rgba(43, 159, 217, 0.3);
    border-radius: 50%;
    color: var(--accent-cyan);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.apply-modal-close:hover {
    background: var(--accent-blue);
    color: white;
    transform: rotate(90deg);
}

.apply-modal-content h2 {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 0.75rem;
}

.modal-subtext {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.apply-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.apply-option-card {
    background: rgba(43, 159, 217, 0.05);
    border: 2px solid rgba(43, 159, 217, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.apply-option-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    background: rgba(43, 159, 217, 0.1);
    box-shadow: 0 12px 40px rgba(43, 159, 217, 0.3);
}

.apply-option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(43, 159, 217, 0.2), rgba(43, 159, 217, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.apply-option-card:hover .apply-option-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
}

.apply-option-icon i {
    font-size: 2rem;
    color: var(--accent-cyan);
    transition: color 0.3s ease;
}

.apply-option-card:hover .apply-option-icon i {
    color: white;
}

.apply-option-card h3 {
    font-size: 1.3rem;
    color: white;
    margin: 0;
    font-weight: 600;
}

.apply-option-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.apply-option-card:hover p {
    color: var(--text-primary);
}

.modal-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

/* POV Callout Box */
.pov-callout {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-left: 4px solid #ffc107;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pov-callout i {
    font-size: 2rem;
    color: #ffc107;
    flex-shrink: 0;
}

.pov-callout p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* How VisionCam Works Section */
.how-visioncam-works-section {
    background: var(--primary-dark);
    padding: 5rem 0;
}

.workflow-step {
    background: rgba(43, 159, 217, 0.05);
    border: 1px solid rgba(43, 159, 217, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(43, 159, 217, 0.25);
}

.workflow-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 6px 20px rgba(43, 159, 217, 0.4);
}

.workflow-step h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
}

.workflow-step p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Who It's For Section */
.who-its-for-section {
    background: var(--secondary-dark);
    padding: 5rem 0;
}

.audience-card {
    background: rgba(43, 159, 217, 0.05);
    border: 2px solid rgba(43, 159, 217, 0.2);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.audience-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 50px rgba(43, 159, 217, 0.3);
    background: rgba(43, 159, 217, 0.08);
}

.audience-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(43, 159, 217, 0.2), rgba(43, 159, 217, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.audience-card:hover .audience-icon {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    box-shadow: 0 10px 30px rgba(43, 159, 217, 0.5);
}

.audience-icon i {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    transition: color 0.3s ease;
}

.audience-card:hover .audience-icon i {
    color: white;
}

.audience-card h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.audience-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.audience-card:hover p {
    color: var(--text-primary);
}

/* Program Outcomes Section */
.program-outcomes-section {
    background: var(--primary-dark);
    padding: 5rem 0;
}

.outcomes-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: rgba(43, 159, 217, 0.05);
    border: 1px solid rgba(43, 159, 217, 0.2);
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
    transition: all 0.3s ease;
}

.outcome-item:hover {
    background: rgba(43, 159, 217, 0.1);
    border-left-color: var(--accent-cyan);
    transform: translateX(15px);
    box-shadow: 0 8px 30px rgba(43, 159, 217, 0.2);
}

.outcome-item i {
    font-size: 2rem;
    color: var(--accent-blue);
    min-width: 40px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.outcome-item:hover i {
    color: var(--accent-cyan);
    transform: scale(1.15);
}

.outcome-item h4 {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    line-height: 1.5;
}

/* Safety & Privacy Section */
.safety-privacy-section {
    background: var(--secondary-dark);
    padding: 5rem 0;
    position: relative;
}

.safety-privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.safety-content {
    background: rgba(43, 159, 217, 0.05);
    border: 1px solid rgba(43, 159, 217, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
}

.safety-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
}

.safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.safety-feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(43, 159, 217, 0.08);
    border: 1px solid rgba(43, 159, 217, 0.25);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.safety-feature-item:hover {
    background: rgba(43, 159, 217, 0.12);
    border-color: var(--accent-cyan);
    transform: translateX(10px);
}

.safety-feature-item i {
    font-size: 1.8rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.safety-feature-item:hover i {
    color: var(--accent-cyan);
}

.safety-feature-item p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.safety-feature-item:hover p {
    color: white;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .hero-tagline {
        font-size: 1.2rem;
        margin: 1rem auto 1.5rem;
    }
    
    .hero-trust-line {
        font-size: 0.85rem;
    }
    
    .apply-modal-content {
        padding: 2.5rem 1.5rem;
        max-height: 85vh;
    }
    
    .apply-modal-content h2 {
        font-size: 2rem;
    }
    
    .apply-options {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .apply-option-card {
        padding: 1.75rem 1.5rem;
    }
    
    .apply-option-icon {
        width: 60px;
        height: 60px;
    }
    
    .apply-option-icon i {
        font-size: 1.75rem;
    }
    
    .apply-option-card h3 {
        font-size: 1.15rem;
    }
    
    .pov-callout {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .pov-callout p {
        font-size: 1rem;
    }
    
    .workflow-step {
        padding: 2rem 1.5rem;
    }
    
    .audience-card {
        padding: 2.5rem 1.75rem;
    }
    
    .outcome-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .outcome-item h4 {
        font-size: 1.05rem;
    }
    
    .safety-content {
        padding: 2.5rem 1.75rem;
    }
    
    .safety-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .apply-modal-content {
        padding: 2rem 1.25rem;
        border-radius: 20px;
    }
    
    .apply-modal-content h2 {
        font-size: 1.75rem;
    }
    
    .modal-subtext {
        font-size: 1rem;
    }
}
/* ============================================
   BOOTSTRAP DROPDOWN NAVIGATION
   ============================================ */

/* Desktop Dropdown Styling */
.nav-links .dropdown {
    position: relative;
}

.nav-links .nav-item {
    display: inline-block;
}

.nav-links .dropdown-toggle {
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}


.nav-links .dropdown-toggle:hover {
    color: white !important;
}

.nav-links .dropdown-menu {
    background: rgba(10, 14, 26, 0.98);
    border: 1px solid rgba(43, 159, 217, 0.3);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 260px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-top: 0.75rem;
}

.nav-links .dropdown-item {
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-links .dropdown-item:hover {
    background: rgba(43, 159, 217, 0.1);
    color: white;
    border-left-color: var(--accent-cyan);
    padding-left: 1.75rem;
}

.nav-links .dropdown-item:focus {
    background: rgba(43, 159, 217, 0.1);
    color: white;
}

/* Mobile APPLY button */
.mobile-apply-btn {
    display: none;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
}

.mobile-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 159, 217, 0.4);
}

/* Mobile Navigation */
@media (max-width: 968px) {
    .mobile-apply-btn {
        display: block;
    }
    
    nav.active .mobile-apply-btn {
        animation: slideInFromTop 0.4s ease;
    }
    
    @keyframes slideInFromTop {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobile dropdown styling */
    .nav-links .dropdown-menu {
        background: transparent;
        border: none;
        padding: 0;
        margin-left: 1rem;
        margin-top: 0.5rem;
        box-shadow: none;
    }
    
    .nav-links .dropdown-item {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
        border-left: 2px solid rgba(43, 159, 217, 0.3);
    }
}


/* ============================================
   FUNDING & ELIGIBILITY SECTION
   ============================================ */

.funding-section {
    background: var(--secondary-dark);
    padding: 5rem 0;
    position: relative;
}

.funding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.funding-card {
    background: rgba(43, 159, 217, 0.05);
    border: 2px solid rgba(43, 159, 217, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.funding-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.funding-card:hover::before {
    transform: scaleY(1);
}

.funding-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 50px rgba(43, 159, 217, 0.3);
    background: rgba(43, 159, 217, 0.08);
}

.funding-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(43, 159, 217, 0.2), rgba(43, 159, 217, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.funding-card:hover .funding-icon {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    box-shadow: 0 10px 30px rgba(43, 159, 217, 0.5);
}

.funding-icon i {
    font-size: 2rem;
    color: var(--accent-cyan);
    transition: color 0.3s ease;
}

.funding-card:hover .funding-icon i {
    color: white;
}

.funding-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.funding-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.funding-card:hover p {
    color: var(--text-primary);
}

.funding-apply-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-cyan);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.funding-apply-btn:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(43, 159, 217, 0.4);
}

.funding-apply-btn i {
    transition: transform 0.3s ease;
}

.funding-apply-btn:hover i {
    transform: translateX(5px);
}

/* Funding Notes */
.funding-notes {
    background: rgba(43, 159, 217, 0.08);
    border: 1px solid rgba(43, 159, 217, 0.25);
    border-radius: 12px;
    padding: 2rem;
}

.funding-notes p {
    margin: 0;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.funding-notes p:first-child {
    padding-top: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(43, 159, 217, 0.15);
}

.funding-notes p:last-child {
    padding-bottom: 0;
    padding-top: 1rem;
}

.funding-notes i {
    color: var(--accent-cyan);
    margin-top: 0.2rem;
}

.funding-notes strong {
    color: white;
}

.pilot-note {
    color: #ffc107;
}

.pilot-note i {
    color: #ffc107;
}

.disclaimer-note i {
    color: #ff9800;
}

/* Responsive */
@media (max-width: 768px) {
    .funding-card {
        padding: 2rem 1.5rem;
    }
    
    .funding-notes {
        padding: 1.5rem;
    }
    
    .funding-notes p {
        font-size: 0.9rem;
    }
}


/* ============================================
   MOBILE DROPDOWN DISPLAY FIX - CRITICAL
   ============================================ */
@media (max-width: 968px) {
    /* Force dropdown menu to be hidden by default */
    .nav-links .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        background: rgba(43, 159, 217, 0.05) !important;
        border: none !important;
        border-left: 2px solid var(--accent-cyan) !important;
        margin-left: 1rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        padding: 0 !important;
        box-shadow: none !important;
        display: none !important; /* Hidden by default */
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    /* Show dropdown when it has 'show' class */
    .nav-links .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        max-height: 500px !important;
    }
    
    /* Dropdown items styling */
    .nav-links .dropdown-item {
        padding: 0.85rem 1.25rem !important;
        font-size: 0.95rem !important;
        border-left: 2px solid rgba(43, 159, 217, 0.3) !important;
        color: var(--text-secondary) !important;
        background: transparent !important;
        display: block !important;
        transition: all 0.2s ease;
    }
    
    .nav-links .dropdown-item:hover,
    .nav-links .dropdown-item:focus {
        background: rgba(43, 159, 217, 0.15) !important;
        color: white !important;
        padding-left: 1.5rem !important;
        border-left-color: var(--accent-cyan) !important;
    }
    
    /* Dropdown toggle styling */
    .nav-links .dropdown-toggle {
        width: 100%;
        text-align: left;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0 !important;
    }
    
}


/* ============================================
   MOBILE DROPDOWN FIX - CRITICAL
   ============================================ */
@media (max-width: 968px) {

/* ============================================
   HOVER DROPDOWN - SIMPLE & CLEAN
   ============================================ */

/* Desktop Hover Dropdown */
@media (min-width: 969px) {
    .nav-links .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Mobile Hover/Touch Dropdown */
@media (max-width: 968px) {
    .nav-links .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        background: rgba(43, 159, 217, 0.05);
        border: none;
        border-left: 2px solid var(--accent-cyan);
        margin-left: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0;
        box-shadow: none;
        display: none;
    }
    
    /* Show on hover/touch */
    .nav-links .dropdown:hover .dropdown-menu,
    .nav-links .dropdown:focus-within .dropdown-menu {
        display: block;
    }
    
    .nav-links .dropdown-item {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-left: 2px solid rgba(43, 159, 217, 0.3);
        color: var(--text-secondary);
        background: transparent;
    }
    
    .nav-links .dropdown-item:hover {
        background: rgba(43, 159, 217, 0.1);
        color: white;
        padding-left: 1.25rem;
    }
}