/* ============================================
   HULT PRIZE AT FENI UNIVERSITY — MAIN STYLES
   Colors: Magenta #E8006A / Navy #1A1464
   ============================================ */

:root {
  --magenta: #E8006A;
  --magenta-light: #FF2B82;
  --magenta-dark: #B0004E;
  --navy: #1A1464;
  --navy-light: #2A2090;
  --navy-dark: #0D0A3A;
  --white: #FFFFFF;
  --off-white: #F8F5FF;
  --gray-100: #F2F2F7;
  --gray-300: #C5C5D3;
  --gray-500: #888899;
  --gray-800: #2A2A3E;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-light: 'Lato', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-md: 0 4px 20px rgba(26,20,100,0.12);
  --shadow-lg: 0 8px 40px rgba(26,20,100,0.18);
  --shadow-pink: 0 8px 30px rgba(232,0,106,0.25);
  --radius: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ============ UTILITY ============ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent-text { color: var(--magenta); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  background: rgba(232,0,106,0.08);
  border: 1px solid rgba(232,0,106,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-label.light {
  color: var(--magenta-light);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin-bottom: 48px;
}
.section-desc.light { color: rgba(255,255,255,0.75); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(26,20,100,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

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

.nav-logo { text-decoration: none; }

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-box.small .logo-h { font-size: 1.6rem; }
.logo-box.small .logo-top { font-size: 0.75rem; }
.logo-box.small .logo-bottom { font-size: 0.6rem; }

.logo-h {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  background: var(--magenta);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  line-height: 1;
  letter-spacing: 0;
  flex-shrink: 0;
}

.logo-h {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.hult-icon {
    /* Adjust height to match your surrounding font size */
    height: 1.2em; 
    width: auto;
    display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-top {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.2;
}
.logo-bottom {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO SECTION ============ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* --- Layer 1: The Image Slider (Background Swap) --- */
/* --- Layer 1: The Image Slider (Fixed Rotation) --- */
.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) contrast(1.1) saturate(0.8);
  /* Increased duration to 21s for 7 images (3s each) */
  animation: heroCrossfade 21s infinite; 
  opacity: 0; /* Default to hidden */
  transition: transform 0.5s ease-out;
}

/* Staggered Delays (Total Duration / Number of Images) */
.img-1 { background-image: url('Hero_Hult.jpg');  animation-delay: 0s; }
.img-2 { background-image: url('Hero_Hult2.jpg'); animation-delay: 3s; }
.img-3 { background-image: url('Hero_Hult3.jpg'); animation-delay: 6s; }
.img-4 { background-image: url('Hero_Hult4.jpg'); animation-delay: 9s; }
.img-5 { background-image: url('Hero_Hult5.jpg'); animation-delay: 12s; }
.img-6 { background-image: url('Hero_Hult6.jpg'); animation-delay: 15s; }
.img-7 { background-image: url('Hero_Hult7.jpg'); animation-delay: 18s; }

@keyframes heroCrossfade {
  0% { opacity: 0; }
  5% { opacity: 1; }   /* Fade In */
  14% { opacity: 1; }  /* Visible (roughly 3 seconds) */
  19% { opacity: 0; }  /* Fade Out */
  100% { opacity: 0; }
}


/* --- Layer 2: Brand Glows & Tech Grid --- */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    /* Top Right Magenta Glow */
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(232,0,106,0.18) 0%, transparent 60%),
    /* Bottom Left Subtle Glow */
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(232,0,106,0.1) 0%, transparent 50%),
    /* Center Vignette for Focus */
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(10,10,46,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px);
  z-index: 2;
}

/* --- Layer 3: Content Structure --- */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.04em;
  display: block;
}

.title-line.accent {
  color: var(--magenta-light);
  -webkit-text-stroke: 1px var(--magenta-light);
  text-shadow: 0 0 40px rgba(232,0,106,0.4);
}

.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* --- Stats Board --- */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 24px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--magenta-light);
  letter-spacing: 0.05em;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.5s both;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .stat-divider { display: none; }
  .stat { width: 50%; padding: 15px 0; }
  .hero-stats { padding: 10px; }
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--magenta);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  border: 2px solid var(--magenta);
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--magenta-light);
  border-color: var(--magenta-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}
.btn-primary.full-width { width: 100%; justify-content: center; border-radius: var(--radius); padding: 16px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 12px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 5px;
  background: var(--magenta-light);
  border-radius: 2px;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

/* ============ ABOUT ============ */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 8px;
}

.about-text p {
  color: var(--gray-500);
  margin-bottom: 20px;
  font-size: 1rem;
  font-family: var(--font-light);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  padding: 16px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--magenta);
  transition: all var(--transition);
}
.highlight-item:hover {
  transform: translateX(6px);
  background: rgba(232,0,106,0.05);
}

.highlight-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.highlight-item strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.highlight-item span {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.about-visual {
  position: relative;
  height: 380px;
}

.card-stack {
  position: relative;
  height: 100%;
}

.visual-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow), box-shadow var(--transition);
  overflow: hidden;
}
.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--magenta);
}
.visual-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-pink);
}

.card-inner {
  padding: 28px;
}
.card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.card-inner h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.card-inner p {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-family: var(--font-light);
}

.card-1 { top: 0; left: 0; width: 220px; transform: rotate(-4deg); }
.card-2 { top: 80px; right: 0; width: 220px; z-index: 2; transform: rotate(2deg); background: var(--navy); }
.card-2::before { background: var(--magenta-light); }
.card-2 h4, .card-2 p { color: var(--white) !important; }
.card-2 p { color: rgba(255,255,255,0.65) !important; }
.card-3 { bottom: 0; left: 40px; width: 220px; transform: rotate(-2deg); z-index: 1; }

/* ============ JOURNEY ============ */


.journey {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.journey-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(232,0,106,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 5% 90%, rgba(232,0,106,0.10) 0%, transparent 50%);
  z-index: 0;
}
.journey .container { position: relative; z-index: 1; }

.timeline {
  position: relative;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: linear-gradient(to bottom, var(--magenta), var(--navy-light));
  border-radius: 3px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 48px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: -46px;
  top: 0;
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--magenta);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.timeline-icon {
  width: 52px;
  height: 52px;
  background: var(--navy-light);
  border: 2px solid rgba(232,0,106,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.timeline-item:hover .timeline-icon {
  background: var(--magenta);
  border-color: var(--magenta);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(232,0,106,0.4);
}

.timeline-content {
  padding-top: 10px;
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.timeline-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  font-family: var(--font-light);
  margin-bottom: 12px;
}

.timeline-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--magenta-light);
  background: rgba(232,0,106,0.12);
  border: 1px solid rgba(232,0,106,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
}

/* ============ TEAM ============ */
.team {
  padding: 100px 0;
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition);
  border: 1px solid rgba(26,20,100,0.06);
  overflow: hidden;
}
.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-card:hover::after { transform: scaleX(1); }

.team-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 28px;
  align-items: start;
  background: var(--navy);
}
.team-card.featured::after { background: var(--magenta-light); }
.team-card.featured h3, .team-card.featured .team-role, .team-card.featured .team-desc { color: var(--white) !important; }
.team-card.featured .team-role { color: rgba(255,255,255,0.6) !important; }
.team-card.featured .team-desc { color: rgba(255,255,255,0.7) !important; }

.team-role-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta-light);
  background: rgba(232,0,106,0.12);
  border: 1px solid rgba(232,0,106,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.team-role-badge.advisor { color: #7B61FF; background: rgba(123,97,255,0.1); border-color: rgba(123,97,255,0.3); }
.team-role-badge.judge { color: #00C7B1; background: rgba(0,199,177,0.1); border-color: rgba(0,199,177,0.3); }
.team-role-badge.mentor { color: #FF7B00; background: rgba(255,123,0,0.1); border-color: rgba(255,123,0,0.3); }

.team-avatar {
  width: 80px; /* Adjust size based on your design */
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
  
}
.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This prevents the image from stretching */
  display: block;
}
.avatar-placeholder {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.team-card.featured .team-role-badge { grid-column: 1 / -1; }
.team-card.featured .team-avatar { grid-row: 2 / 4; }
.team-card.featured .avatar-placeholder { width: 84px; height: 84px; font-size: 1.4rem; }

.team-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem;
  color: var(--magenta);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.team-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-family: var(--font-light);
  line-height: 1.6;
}

/* ============ ACHIEVEMENTS ============ */
.achievements {
  padding: 100px 0;
  background: var(--white);
}

.achievement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.achievement-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(26,20,100,0.06);
  transition: all var(--transition);
}
.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,0,106,0.2);
}

.achievement-card.big {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: none;
}
.achievement-card.big h3, .achievement-card.big p, .achievement-card.big strong { color: var(--white); }
.achievement-card.big p { color: rgba(255,255,255,0.75); }

.achievement-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(232,0,106,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.achievement-card.big .achievement-icon {
  background: rgba(255,255,255,0.1);
}

.achievement-content h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.achievement-content p {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-family: var(--font-light);
  line-height: 1.65;
}

.achievement-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.achievement-meta span {
  font-size: 0.78rem;
  color: var(--magenta-light);
  font-weight: 600;
  background: rgba(232,0,106,0.12);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ============ GLOBAL STRIP (FENI + GLOBAL) ============ */
.global-strip {
  background: var(--navy); /* Changed to Navy for a more prestigious, corporate feel */
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background Accent (Optional: Adds a premium magenta glow) */
.global-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 0, 106, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.strip-context-label {
  text-align: center;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
  font-weight: 800;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly; /* Better distribution than center */
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 20px;
  transition: transform 0.3s ease;
}

.strip-item:hover {
  transform: translateY(-5px);
}

.strip-num {
  font-family: var(--font-display);
  font-size: 2.4rem; /* Increased for impact */
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

/* Highlight for the $1M or National Qualifier */
.strip-item.highlight .strip-num {
  color: var(--magenta-light);
  text-shadow: 0 0 20px rgba(232, 0, 106, 0.3);
}

.strip-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5); /* Muted to let numbers shine */
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip-div {
  color: rgba(255, 255, 255, 0.15); /* More subtle divider */
  font-size: 1rem;
  user-select: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .strip-num { font-size: 1.8rem; }
  .strip-div { display: none; } /* Hide diamonds on mobile for a clean grid */
  .strip-inner { gap: 20px; }
}

/* ============ CONTACT ============ */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: flex-start;
  margin-top: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(26,20,100,0.06);
  transition: all var(--transition);
}
.contact-item:hover {
  border-color: rgba(232,0,106,0.25);
  transform: translateX(6px);
}
.contact-icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  background: rgba(232,0,106,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-family: var(--font-light);
  text-decoration: none;
}
.contact-item a:hover { color: var(--magenta); }

/* ============ FORM ============ */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  outline: none;
  transition: all var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--magenta);
  background: rgba(232,0,106,0.03);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-icon { font-size: 1.1rem; transition: transform var(--transition); }
.btn-primary:hover .btn-icon { transform: translateX(4px); }

.form-success {
  display: none;
  background: rgba(0,199,177,0.1);
  border: 1px solid rgba(0,199,177,0.3);
  color: #00A693;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; animation: fadeInUp 0.4s ease; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-light);
  line-height: 1.7;
  max-width: 360px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta-light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-family: var(--font-light);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-light);
}
.footer-tagline {
  color: rgba(232,0,106,0.6) !important;
  font-style: italic;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.4; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 300px; }
  .card-1 { left: 0; }
  .card-2 { right: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .achievement-grid { grid-template-columns: 1fr; }
  .achievement-card.big { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .team-card.featured { grid-column: auto; grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,10,58,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.3rem; padding: 12px 24px; }
  .hamburger { display: flex; z-index: 1001; position: relative; }

  .hero-stats {
    gap: 0;
    padding: 16px;
    flex-wrap: wrap;
  }
  .stat { padding: 8px 16px; }
  .stat-divider { display: none; }

  .timeline { padding-left: 40px; }
  .timeline::before { left: 10px; }
  .timeline-item { grid-template-columns: 44px 1fr; gap: 16px; }
  .timeline-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .timeline-item::before { left: -34px; }

  .strip-inner { gap: 0; }
  .strip-item { padding: 6px 16px; }
  .strip-div { display: none; }

  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-form { padding: 24px 20px; }

  .card-stack { display: flex; flex-direction: column; gap: 16px; height: auto; }
  .visual-card { position: static; transform: none !important; width: 100%; }
  .visual-card:hover { transform: translateY(-4px) !important; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card.featured { display: block; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .stat-num { font-size: 1.6rem; }
  .achievement-card { flex-direction: column; }
  .about-grid { gap: 32px; }
}