* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-dark: #0a0a0a;
  --bg-dark-soft: #111111;
  --bg-card-light: rgba(255, 255, 255, 0.9);
  --accent: #e85d04;
  --accent-hover: #f48c06;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --glass-border-light: rgba(0, 0, 0, 0.06);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), #b84700);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: rgba(232, 93, 4, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Modern Glass Navbar – light */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  padding: 0.9rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border-bottom-color: rgba(232, 93, 4, 0.2);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), #b84700);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.logo a:hover {
  filter: drop-shadow(0 0 6px rgba(232, 93, 4, 0.3));
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link,
.mega-trigger {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.6rem 0;
  transition: all 0.25s ease;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-link::after,
.mega-trigger::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #ffaa44);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

.nav-link:hover::after,
.mega-trigger:hover::after {
  width: 100%;
}

.nav-link:hover,
.mega-trigger:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

/* Mega Menu – light */
.mega-menu {
  position: relative;
}

.mega-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-icon {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.mega-menu:hover .dropdown-icon {
  transform: rotate(180deg);
}

.mega-content {
  position: absolute;
  top: 100%;
  left: -200px;
  width: 720px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 1100;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

.mega-menu:hover .mega-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-grid-item {
  text-align: center;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 14px;
  padding: 10px 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  transition: all 0.2s;
}

.mega-grid-item:hover {
  background: rgba(232, 93, 4, 0.1);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Mobile Menu – light */
.mobile-menu-btn {
  display: none;
  background: rgba(232, 93, 4, 0.1);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn i {
  font-size: 1.3rem;
  color: var(--text-primary);
}

.mobile-menu-btn:hover {
  background: rgba(232, 93, 4, 0.2);
  transform: scale(0.96);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding: 80px 24px 24px;
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-link {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px 0;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.mobile-link:hover {
  color: var(--accent);
}

.mobile-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 16px 0;
}

.mobile-subsidiaries-title {
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.mobile-subsidiaries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mobile-subsidiary {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 8px 0;
  transition: var(--transition-smooth);
}

.mobile-subsidiary:hover {
  color: var(--accent);
}

/* Hero Slideshow */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease-in-out,
    visibility 1s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 2;
}

.slide-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  max-width: 550px;
  z-index: 3;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease 0.2s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s;
}

.slide-btn:hover {
  background: #ff7b2c;
  transform: translateX(5px);
}

.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slide-prev {
  left: 20px;
}
.slide-next {
  right: 20px;
}

.slide-prev:hover,
.slide-next:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-50%) scale(1.05);
}

.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 10px;
}

/* Who We Are */
.who-we-are {
  padding: 80px 0;
  background: var(--bg-primary);
}

.who-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 48px;
}

.who-text h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.who-text p {
  color: var(--text-secondary);
}

.mt-4 {
  margin-top: 16px;
}

.who-stats-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.who-stats-row .stat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background-image: url("https://www.transparenttextures.com/patterns/diagmonds-light.png");
  background-blend-mode: overlay;
  background-size: auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
}

.who-stats-row .stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(232, 93, 4, 0.5);
  box-shadow:
    0 20px 30px -8px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(232, 93, 4, 0.2);
}

.who-stats-row .stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.who-stats-row .stat-card:hover::after {
  left: 150%;
}

.stat-number-large {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-number-wrapper {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #1e293b;
  margin-top: 8px;
  font-weight: 500;
}

/* Metro Cards */
.metro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 2rem;
}

.metro-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  background-image: url("https://www.transparenttextures.com/patterns/diagmonds-light.png");
  background-blend-mode: overlay;
  background-size: auto;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.metro-card:hover {
  transform: translateY(-8px) scale(1.01);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(232, 93, 4, 0.5);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(232, 93, 4, 0.2);
}

.metro-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.metro-card:hover::after {
  left: 150%;
}

.metro-card .card-icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 93, 4, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.2s;
}

.metro-card:hover .card-icon {
  background: rgba(232, 93, 4, 0.25);
}

.metro-card .card-icon i {
  font-size: 1.6rem;
  color: var(--accent);
}

.metro-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.3;
  text-align: left;
}

.metro-card p {
  color: #1e293b;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  text-align: left;
}

.card-hover-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  transition:
    gap 0.2s,
    color 0.2s;
}

.card-hover-detail:hover {
  gap: 10px;
  color: #b84700;
  text-decoration: underline;
}

.card-lg {
  flex: 2 1 380px;
}
.card-md {
  flex: 1 1 280px;
}
.card-sm {
  flex: 1 1 240px;
}

@media (max-width: 1200px) {
  .metro-card {
    flex: 1 1 280px;
  }
}

/* Strategic Growth – white background */
.strategic-growth {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.strategic-growth .section-header h2 {
  color: var(--text-primary);
}

.strategic-growth .section-header p {
  color: var(--text-secondary);
}

.strategic-growth .section-tag {
  background: rgba(232, 93, 4, 0.1);
}

.growth-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  text-align: center;
}

.growth-stat {
  flex: 1;
  min-width: 150px;
}

.growth-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.growth-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Leadership – smaller image */
.leadership {
  padding: 80px 0;
  background: var(--bg-primary);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.leadership-image {
  display: block;
  width: 100%;
}

.leadership-image .image-placeholder {
  background: #f1f5f9;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: block;
}

.leadership-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
  display: block;
}

.leadership-img:hover {
  transform: scale(1.02);
}

.leadership-content h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 2rem;
}

.leadership-title-logo {
  height: 50px;
  width: auto;
  display: inline-block;
}

.leadership-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.awards {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.award-item i {
  color: var(--accent);
  width: 20px;
}

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .leadership-image .image-placeholder {
    max-width: 220px;
  }
  .leadership-content h2 {
    justify-content: center;
  }
  .leadership-title-logo {
    height: 36px;
  }
}

/* News */
.news {
  padding: 80px 0;
  background: #ffffff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.news-card {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-card h3 {
  font-size: 1.25rem;
  margin: 16px 20px 12px 20px;
}

.news-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 20px 20px 20px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 20px 20px 20px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .news-image {
    height: 180px;
  }
}

/* Foundation */
.foundation {
  padding: 80px 0;
  background: var(--bg-primary);
}

.foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.foundation-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.foundation-title-logo {
  height: 48px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}

.foundation-content > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.foundation-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 93, 4, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon i {
  font-size: 1.25rem;
  color: var(--accent);
}

.pillar-text h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.pillar-text p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.foundation-image .image-placeholder {
  background: #f1f5f9;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.foundation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.foundation-img:hover {
  transform: scale(1.02);
}

/* Full-Width Image Banner */
.image-banner {
  position: relative;
  background-image: url("../images/stock/african_businesswoman.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center 30%;
  height: 450px;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.image-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
  animation: fadeInUp 0.8s ease;
}

.banner-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.8rem;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s;
}

.banner-btn:hover {
  background: #ff7b2c;
  transform: translateX(5px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 24px;
  text-align: center;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
  margin: 0 auto 12px auto;
}

.footer-logo p {
  color: #a0aab5;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-social a {
  color: #a0aab5;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .leadership-grid,
  .foundation-grid {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 1.75rem;
  }
  .growth-stats {
    justify-content: center;
  }
  .mega-content {
    width: 90vw;
    left: -40px;
    grid-template-columns: repeat(3, 1fr);
  }
  .slide-content h2 {
    font-size: 1.8rem;
  }
  .slide-prev,
  .slide-next {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .metro-card {
    flex: 1 1 100% !important;
  }
  .image-banner {
    height: 350px;
    background-attachment: scroll;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .banner-content h2 {
    font-size: 1.8rem;
  }
  .banner-content p {
    font-size: 1rem;
  }
  .foundation-title-logo {
    height: 36px;
  }
  .foundation-content h2 {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .slide-content {
    left: 5%;
    right: 5%;
    bottom: 15%;
    text-align: center;
  }
  .slide-content h2 {
    font-size: 1.5rem;
  }
  .stat-plus {
    font-size: 1.5rem;
  }
}
