/* ================= VARIABLES ================= */
:root {
  --primary-color: #00008b;
  --secondary-color: hwb(16 1% 23%);
  --text-color: #333;
  --bg-color: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), #4169e1);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ff6b35);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lora', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

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

.unique-left h2,
.mission-poster h3,
.programs-photo-overlay h3 {
  font-weight: 600;
}

.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1200;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* ================= HERO ================= */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: url("images/session.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0 20px;
}

.about-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
}

.about-hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.about-hero-content .highlight-bg {
  background: var(--gradient-secondary);
  color: #fff;
  padding: 4px 14px;
}


.about-hero-content p {
  font-size: 1.3rem;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  max-width: 600px;
  margin: 1.2rem auto 0;
}

/* ================= MISSION / VISION ================= */
.mission-vision {
  padding: 90px 0;
  background: var(--bg-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission-box,
.vision-box {
  padding: 40px;
  border-radius: 15px;
  background: white;
  box-shadow: var(--box-shadow);
}

.mission-box h2,
.vision-box h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.mission-box p,
.vision-box p {
  color: #555;
  line-height: 1.7;
}

/* ================= VIDEO SHOWCASE ================= */
.video-showcase {
  padding: 60px 0;
  background: #f7f6f3;
}

.video-showcase .container {
  display: block;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.showcase-text h2 {
  font-weight: 600;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  color: #0a2158;
  line-height: 1.3;
  margin: 0 0 14px;
}

.showcase-text .lead {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444;
  margin: 0 0 20px;
  max-width: 640px;
}

.showcase-btn {
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 26px;
  transition: background 0.2s ease;
}

.showcase-btn:hover { background: #d9541f; }

.showcase-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-media-main,
.showcase-media-item {
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.showcase-media-main video {
  width: 100%;
  max-height: 420px;
  display: block;
}

.showcase-media-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.showcase-media-item video {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
  }
  .showcase-media-row { grid-template-columns: repeat(3, 1fr); }
  .showcase-media-item video { height: 200px; }
}

@media (min-width: 1100px) {
  .video-showcase { padding: 80px 0; }
  .showcase-grid { gap: 60px; }
  .showcase-media-main video { max-height: 460px; }
}

/* ================= AFSN STORIES / SPOTLIGHT ================= */
.afsn-stories__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 420px;
}

.afsn-stories__photo {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 32px 48px;
  overflow: hidden;
}

.afsn-stories__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7,22,56,0.35) 0%, rgba(7,22,56,0.7) 55%, rgba(7,22,56,0.95) 100%),
    url('images/hero-slide-2.jpeg');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.afsn-stories__photo-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.afsn-stories__heading {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}

.afsn-stories__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: opacity 0.2s ease;
}

.afsn-stories__link:hover { opacity: 0.75; }

.afsn-stories__chevron {
  color: var(--secondary-color);
  font-weight: 900;
}

.afsn-stories__yt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.afsn-stories__yt-icon {
  width: 20px;
  height: 15px;
  background: #fff;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.afsn-stories__yt-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #071127;
  margin-left: 1px;
}

.afsn-stories__video-wrap {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7,22,56,0.15) 0%, rgba(7,22,56,0.55) 55%, rgba(7,22,56,0.92) 100%),
    radial-gradient(circle at 70% 20%, #3b4f7a 0%, #1c2c52 45%, #0e1a3a 100%);
  min-height: 420px;
}

.afsn-stories__video-card {
  position: absolute;
  top: 14%;
  left: -18%;
  width: 118%;
  height: 72%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
  background: #0c295e;
}

.afsn-stories__video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0c295e;
}

.afsn-stories__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  background: rgba(10,33,88,0.25);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.25s ease;
}

.afsn-stories__play:hover {
  background: rgba(10,33,88,0.5);
  transform: translate(-50%, -50%) scale(1.06);
}

.afsn-stories__play::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
  margin-left: 4px;
}

.afsn-stories__video-card.is-playing .afsn-stories__play {
  opacity: 0;
  pointer-events: none;
}

.afsn-stories__cta {
  background: #0d1b3d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px 48px 72px;
  min-height: 420px;
}

.afsn-stories__cta-top {
  margin-bottom: 34px;
}

.afsn-stories__q-text {
  color: #fff;
  font-size: clamp(22px, 2.1vw, 27px);
  line-height: 1.25;
  margin: 0;
  font-weight: 400;
}

.afsn-stories__cta-button {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--secondary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 20px 28px;
  border-radius: 2px;
  width: 100%;
  transition: background 0.2s ease;
}

.afsn-stories__cta-button:hover { background: #d9541f; }

.afsn-stories__arrow { font-size: 18px; font-weight: 400; }

.afsn-stories + .afsn-stories { margin-top: 4px; }

@media (max-width: 1024px) {
  .afsn-stories__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .afsn-stories__photo { grid-column: 1 / 2; grid-row: 1 / 2; }
  .afsn-stories__video-wrap { grid-column: 2 / 3; grid-row: 1 / 2; }
  .afsn-stories__cta { grid-column: 1 / 3; grid-row: 2 / 3; padding: 48px; }
  .afsn-stories__cta-top { margin-bottom: 24px; }
}

@media (max-width: 680px) {
  .afsn-stories__grid { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .afsn-stories__photo { grid-column: 1 / 2; grid-row: 1 / 2; min-height: 320px; padding: 0 0 28px 24px; }
  .afsn-stories__video-wrap { grid-column: 1 / 2; grid-row: 2 / 3; min-height: 260px; }
  .afsn-stories__video-card { left: 6%; width: 88%; top: 10%; height: 80%; }
  .afsn-stories__cta { grid-column: 1 / 2; grid-row: 3 / 4; padding: 40px 24px; min-height: unset; }
  .afsn-stories__cta-button { padding: 18px 20px; font-size: 14px; }
  .afsn-stories__heading { font-size: 26px; }
}

/* ================= VIDEO SHOWCASE — text left, videos stacked right ================= */
.afsn-vshow {
  padding: 70px 0;
  background: #f7f6f3;
}

.afsn-vshow-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.afsn-vshow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.afsn-vshow-text h2 {
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: #0d1b3d;
  line-height: 1.25;
  margin: 0 0 16px;
}

.afsn-vshow-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin: 0 0 22px;
  max-width: 480px;
}

.afsn-vshow-btn {
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 24px;
  border-radius: 26px;
  transition: background 0.2s ease;
}

.afsn-vshow-btn:hover { background: #d9541f; }

.afsn-vshow-videos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.afsn-vshow-video-item {
  border-radius: 6px;
  overflow: hidden;
  background: #0c295e;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.afsn-vshow-video-el {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #0c295e;
}

@media (min-width: 900px) {
  .afsn-vshow-grid { grid-template-columns: 400px 1fr; gap: 60px; align-items: start; }
  .afsn-vshow-videos { gap: 24px; }
}

/* ================= OBJECTIVES ================= */
.objectives { background: #f7f6f3; }

.objectives-banner {
  background: #070f3d;
  padding: 90px 40px 0;
}

.objectives-banner-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.objectives-banner-text h2 {
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 20px;
  line-height: 1.15;
}

.objectives-banner-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px;
}

.objectives-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  margin-bottom: 48px;
  transition: background 0.2s ease;
}

.objectives-pill:hover { background: rgba(255, 255, 255, 0.28); }

.objectives-banner-media {
  max-width: 1100px;
  margin: 0 auto;
  transform: translateY(60px);
}

.objectives-banner-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 70px;
}

.objective-card {
  background: #fff;
  border: 1px solid #e4e2dd;
  border-radius: 10px;
  padding: 30px 26px;
  color: #1a1a1a;
}

.objective-card i {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 16px;
  display: block;
}

.objective-card h3 {
  font-size: 1.15rem;
  color: #0a2158;
  margin: 0 0 10px;
}

.objective-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

@media (max-width: 900px) {
  .objectives-banner { padding: 60px 24px 0; }
  .objectives-banner-media { transform: translateY(40px); }
  .objectives-banner-media img { height: 320px; }
  .objectives-grid { padding: 70px 20px 50px; }
}

@media (max-width: 600px) {
  .objectives-banner { padding: 50px 20px 0; }
  .objectives-banner-media { transform: translateY(28px); }
  .objectives-banner-media img { height: 220px; }
  .objectives-grid { grid-template-columns: 1fr; padding: 60px 20px 40px; }
}

/* ================= QUOTE ================= */
.afsn-quote {
  background: #fff;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

.afsn-quote blockquote {
  max-width: 900px;
  margin: 0;
  text-align: center;
}

.afsn-quote p {
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.45;
  color: #1a1a1a;
  margin: 0;
}

@media (max-width: 600px) {
  .afsn-quote { padding: 80px 20px; min-height: 40vh; }
}

/* ================= STRATEGIC PARTNERS ================= */
.strategic-partners {
  padding: 90px 0;
  background: #f7f6f3;
}

.strategic-partners .section-title {
  color: #0a2158;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  text-align: center;
  margin-bottom: 16px;
}

.strategic-partners .section-subtitle {
  color: #555;
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 50px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.partner-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e4e2dd;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.partner-content { padding: 36px 32px; }

.partner-logo-wrapper {
  width: 130px;
  height: 130px;
  margin: 0 auto 26px;
}

.logo-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
}

.logo-sphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-sphere-flat {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  border: none;
}

.logo-sphere-flat img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.partner-info { text-align: center; color: #1a1a1a; }

.partner-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 18px;
}

.partner-info p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 26px;
  font-size: 0.95rem;
}

.partnership-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.stat { display: flex; flex-direction: column; align-items: center; }

.stat-value {
  font-size: 1.7rem;
  font-weight: 700;
  color: #0a2158;
  margin-bottom: 4px;
}

.stat-label { font-size: 0.85rem; color: #777; }

@media (max-width: 992px) {
  .partners-grid { grid-template-columns: 1fr; max-width: 600px; }
}

@media (max-width: 768px) {
  .strategic-partners .section-title { font-size: 2rem; }
  .partner-content { padding: 28px 24px; }
  .partner-logo-wrapper { width: 110px; height: 110px; }
  .partnership-stats { grid-template-columns: 1fr; }
}

/* ================= LEADERSHIP TEAM ================= */
.quantum-leadership {
  padding: 80px 20px;
  background: #f2f1ee;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.holographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card-container { min-height: 420px; }

.quantum-card {
  width: 100%;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.quantum-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.quantum-card:hover .quantum-img { transform: scale(1.04); }

.quantum-card-front {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e4e2dd;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.holographic-image {
  height: 280px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.quantum-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.quantum-info {
  padding: 1.5rem;
  background: #0a2158;
}

.quantum-name {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quantum-title {
  color: #ffb84d;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.quantum-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.quantum-link {
  color: #ffb84d;
  font-size: 1.15rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.quantum-link:hover { color: #fff; transform: translateY(-2px); }

.neon-heading {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: #0a2158;
  margin-bottom: 3.5rem;
  position: relative;
}

.neon-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  margin-top: 14px;
  width: 70px;
  height: 3px;
  background: var(--secondary-color);
}

@media (max-width: 768px) {
  .holographic-grid { grid-template-columns: 1fr; }
  .card-container { min-height: 400px; }
  .quantum-info { padding: 1.2rem; }
  .quantum-name { font-size: 1.15rem; }
  .quantum-title { font-size: 0.9rem; }
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  border-bottom: 2px solid rgba(0, 0, 139, 0.1);
}

.nav-container {
  max-width: none;
  margin: 0;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand { display: flex; align-items: center; gap: 15px; }

.logo img {
  height: 40px;
  transition: transform 0.3s ease;
}

.logo img:hover { transform: scale(1.05); }

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

.nav-links { display: flex; gap: 30px; align-items: center; }

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--secondary-color); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-icon { width: 30px; height: 20px; position: relative; }

.menu-icon .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.menu-icon .bar:first-child { top: 0; }
.menu-icon .bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-icon .bar:last-child { bottom: 0; }

.mobile-menu-btn.active .menu-icon .bar:first-child { transform: rotate(45deg); top: 9px; }
.mobile-menu-btn.active .menu-icon .bar:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active .menu-icon .bar:last-child { transform: rotate(-45deg); bottom: 9px; }

.register-btn {
  display: inline-block;
  padding: 12px 28px;
  min-width: 160px;
  height: 48px;
  background: var(--secondary-color);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 139, 0.2);
  transition: all 0.3s ease;
}

.register-btn:hover {
  transform: translateY(-2px);
  color: white !important;
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active { right: 0; }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
  }

  .nav-links a { font-size: 1.2rem; width: 100%; padding: 10px 0; }
  .register-btn { width: 100%; text-align: center; margin-top: 20px; }
}

/* ================= FOOTER SPACING FIX ================= */
.afsn-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.afsn-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

.afsn-logo-box img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

/* ================= RESPONSIVE — HERO / MISSION / LEADERSHIP ================= */
@media (max-width: 768px) {
  .about-hero-content h2 { font-size: 2.2rem; }
  .about-hero-content p { font-size: 1.1rem; }

  .mission-vision { padding: 60px 0; }
  .container { grid-template-columns: 1fr; text-align: center; }
  .mission-box, .vision-box { text-align: center; }
}

@media (max-width: 480px) {
  .about-hero { min-height: 60vh; }
  .about-hero-content h2 { font-size: 1.7rem; }
  .about-hero-content p { font-size: 1rem; }

  .mission-vision { padding: 40px 15px; }
  .mission-box, .vision-box { padding: 20px; }
  .mission-box h2, .vision-box h2 { font-size: 1.4rem; }

  .objective-card { padding: 20px; }
}

.hero-overlay-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;   /* adjust this number to control how visible your image is */
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 39, 0.55);   /* darkens everything underneath so text stays legible */
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;   /* was: 2 — now sits above both the overlay image and the dark tint */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0 20px;
}