/* === MODERN CSS RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  overflow-x: hidden;
  transition: opacity 0.4s ease-in-out;
}

body.fade-out {
  opacity: 0;
}

/* Smoother Page & Content Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply a base animation to sections */
.hero-modern,
.mission-section,
.impact-section,
.cta-section,
.page-hero,
.programs-section,
.collaborations-section,
footer {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger the animation for a cascade effect */
.mission-section {
  animation-delay: 0.1s;
}
.impact-section {
  animation-delay: 0.2s;
}
.cta-section {
  animation-delay: 0.3s;
}
footer {
  animation-delay: 0.4s;
}

/* === NAVIGATION === */
.modern-nav {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-left img {
  width: 50px;
  height: auto;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50 !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: #2c3e50 !important;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px !important;
  margin: 0 4px;
  border-radius: 6px;
  background: transparent;
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #3498db, #2980b9);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 6px;
}

.navbar-nav .nav-link:hover {
  color: white !important;
  transform: translateY(-1px);
}

.navbar-nav .nav-link:hover::before {
  opacity: 1;
}

/* === HERO SECTION === */
.hero-modern {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b3e0ff 0%, #4A90E2 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 70%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(45deg, #003566, #0077b6, #00b4d8, #0077b6, #003566);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.10);
  animation: gradientMove 4s ease-in-out infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Add text color */
.btn-primary-custom {
  background: linear-gradient(45deg, #3498db, #2980b9);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  color: white !important;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
  background: linear-gradient(45deg, #2980b9, #3498db);
}

.btn-outline-primary-custom {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icons {
  position: relative;
  width: 300px;
  height: 300px;
}

.floating-icon {
  position: absolute;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
  animation: floatIcon 4s ease-in-out infinite;
}

.icon-1 {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.icon-2 {
  top: 0;
  right: 0;
  animation-delay: 1s;
}

.icon-3 {
  bottom: 0;
  left: 0;
  animation-delay: 2s;
}

.icon-4 {
  bottom: 0;
  right: 0;
  animation-delay: 3s;
}

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

/* === HERO FLOATING ICONS (ADDITIONAL) === */
.floating-icon.icon-1 { left: 30px; top: 60px; color: white; font-size: 2.5rem; animation-delay: 0s; }
.floating-icon.icon-2 { left: 180px; top: 30px; color: white; font-size: 2.3rem; animation-delay: 0.3s; }
.floating-icon.icon-3 { left: 80px; top: 200px; color: white; font-size: 2.2rem; animation-delay: 0.5s; }
.floating-icon.icon-4 { left: 220px; top: 160px; color: white; font-size: 2.4rem; animation-delay: 0.6s; }
.floating-icon.icon-5 { left: 120px; top: 120px; color: white; font-size: 2.2rem; animation-delay: 0.7s; }
.floating-icon.icon-6 { left: 60px; top: 140px; color: white; font-size: 2.1rem; animation-delay: 1.2s; }
.floating-icon.icon-7 { left: 200px; top: 80px; color: white; font-size: 2.3rem; animation-delay: 1.7s; }

/* === MISSION SECTION === */
.mission-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-badge {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 1rem 0;
}

.title-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.mission-card {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #3498db, #2980b9);
}

.mission-text {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.mission-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.feature-item i {
  color: #27ae60;
  font-size: 1.2rem;
}

.feature-item span {
  color: #2c3e50;
  font-weight: 500;
}

.mission-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-illustration {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
}

.mission-illustration i {
  font-size: 4rem;
  color: white;
}

/* === MISSION SECTION GRADIENT & WAVY DIVIDER === */
.mission-gradient {
  background: linear-gradient(135deg, #eaf6ff 0%, #d0eaff 100%);
  position: relative;
  padding: 0 0 20px 0;
  border: none;
  box-shadow: none;
}
.wavy-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}
.mission-section .container {
  position: relative;
  z-index: 3;
}

/* Remove boxy card look */
.mission-card, .mission-section .mission-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

/* Remove .mission-modern-card styles and open up the mission section */
.mission-section {
  background: #eaf6ff;
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}

.mission-title-big {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 0;
}

.mission-section .section-badge {
  background: #eaf6ff;
  color: #0077b6;
  font-weight: 600;
  border-radius: 12px;
  padding: 6px 18px;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: inline-block;
}

.mission-section .title-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  border-radius: 2px;
  margin: 0 auto 1.5rem auto;
}

.mission-section .mission-text {
  color: #2c3e50;
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.mission-section .mission-features {
  margin-top: 2rem;
  gap: 1.5rem;
}

.mission-section .feature-item {
  background: #eaf6ff;
  border-radius: 16px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.08rem;
  color: #003566;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(44,62,80,0.04);
  transition: background 0.2s;
  justify-content: center;
}

.mission-section .feature-item i {
  color: #00b4d8;
  font-size: 1.3rem;
}

/* Fade-in animation for mission features */
.fade-in { opacity: 0; animation: fadeInUp 1s 0.3s forwards; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks for mission section */
@media (max-width: 992px) {
  .mission-visual-illustration { width: 160px; height: 160px; }
}
@media (max-width: 768px) {
  .mission-section .container { padding-top: 40px; padding-bottom: 40px; }
  .mission-visual-illustration { width: 120px; height: 120px; }
  .mission-modern-card {
    padding: 2rem 1rem;
  }
  .mission-modern-card .section-title {
    font-size: 1.5rem;
  }
}

/* === IMPACT SECTION === */
.impact-section {
  padding: 20px 0;
  background: #eaf6ff;
}

.section-description {
  font-size: 1.1rem;
  color: #5a6c7d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.stats-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #3498db, #2980b9);
}

.stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stats-icon-wrapper {
  margin-bottom: 20px;
}

.stats-icon {
  width: 60px;
  height: 60px;
}

.stats-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  display: block;
  margin-bottom: 10px;
}

.stats-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.stats-description {
  color: #5a6c7d;
  font-size: 0.9rem;
}

/* === CTA SECTION === */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.cta-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-2px);
}

/* === FOOTER === */
.modern-footer {
  background: #2c3e50;
  padding: 60px 0 30px;
  color: white;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #3498db;
  transform: translateY(-2px);
  color: white;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .hero-buttons,
  .cta-buttons {
    justify-content: center;
  }

  .mission-card {
    padding: 40px 20px;
  }
  
  .stats-card {
    margin-bottom: 2rem;
  }
}

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

  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #87CEEB 0%, #4A90E2 100%);
  color: white;
  padding: 150px 0 100px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* === PROGRAM CARDS === */
.program-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.1);
}

.program-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #4A90E2;
}

.program-content {
  padding: 30px;
}

.program-features {
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.feature-item i {
  margin-right: 10px;
  font-size: 14px;
}

/* === DETAIL CARDS === */
.detail-card {
  padding: 30px 20px;
  height: 100%;
}

.detail-icon {
  background: linear-gradient(135deg, #87CEEB 0%, #4A90E2 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

/* === PARTNER CARDS === */
.partner-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: none;
}

.partner-card:hover {
  transform: translateY(-5px);
}

.partner-logo {
  height: 100px;
  margin-bottom: 20px;
  text-align: center;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.partner-impact {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* === MODERN SPONSORS SECTION === */
.sponsors-section {
  padding: 10px 0;
  background: #eaf6ff;
  position: relative;
  overflow: hidden;
}

.sponsors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0f2fe" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 1;
}

.sponsors-section .container {
  position: relative;
  z-index: 2;
}

.sponsors-section .section-description {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sponsors Grid */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 0;
  align-items: stretch;
}

.sponsor-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.sponsor-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(41, 128, 185, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.sponsor-item:hover::before {
  opacity: 1;
}

.sponsor-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(52, 152, 219, 0.15);
  border-color: rgba(52, 152, 219, 0.2);
}

.sponsor-logo-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.sponsor-item:hover .sponsor-logo-wrapper {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

.sponsor-logo {
  max-height: 80px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%) contrast(1.1);
  transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
  filter: grayscale(0%) contrast(1.2);
}

.sponsor-info {
  position: relative;
  z-index: 2;
}

.sponsor-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.sponsor-item:hover .sponsor-name {
  color: #3498db;
}

.sponsor-description {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
  text-align: center;
  max-width: 100%;
}

.sponsor-item:hover .sponsor-description {
  color: #5a6c7d;
}

/* Partnership CTA */
.partnership-cta {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.partnership-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
  z-index: 1;
}

.partnership-cta .cta-content {
  position: relative;
  z-index: 2;
}

.partnership-cta .cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.partnership-cta .cta-text {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.partnership-cta .btn {
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.partnership-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(52, 152, 219, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .sponsors-section {
    padding: 20px 0;
  }
  
  .sponsors-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sponsor-item {
    padding: 2rem 1.5rem;
    min-height: 250px;
  }
  
  .sponsor-logo {
    max-height: 70px;
    max-width: 120px;
  }
  
  .partnership-cta {
    padding: 2rem 1.5rem;
  }
  
  .partnership-cta .cta-title {
    font-size: 1.5rem;
  }
}

/* Ensure consistent gap between Sponsors and the following Contact section on the home page */
.sponsors-section + section.py-5 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

@media (max-width: 576px) {
  .sponsors-grid {
    gap: 1.5rem;
  }
  
  .sponsor-item {
    padding: 1.5rem 1rem;
  }
  
  .sponsor-logo {
    max-height: 60px;
    max-width: 100px;
  }
  
  .sponsor-name {
    font-size: 1.1rem;
  }
  
  .sponsor-description {
    font-size: 0.9rem;
  }
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, #87CEEB 0%, #4A90E2 100%);
  color: white;
  padding: 80px 0;
}

.cta-buttons {
  margin-top: 30px;
}

.cta-buttons .btn {
  margin: 10px;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === MODERN FOOTER === */
.modern-footer {
  background: #2c3e50;
  color: white;
  padding: 40px 0;
}

.social-links a {
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #87CEEB !important;
}

/* === ADDITIONAL RESPONSIVE STYLES === */
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 80px;
    min-height: 50vh;
  }
  
  .program-content {
    padding: 20px;
  }
  
  .partner-card, .sponsor-card {
    padding: 20px;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

/* Mission Pillars Styles */
.mission-pillars {
  margin-top: 3rem;
}

.pillar-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.pillar-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pillar-item i {
  color: #3498db;
  margin-bottom: 1rem;
}

.pillar-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.pillar-text {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

/* Enhanced Mission Features */
.mission-features {
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item i {
  color: #3498db;
  font-size: 1.2rem;
}

.feature-item span {
  font-weight: 500;
  color: #2c3e50;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .mission-pillars {
    margin-top: 2rem;
  }
  
  .pillar-item {
    margin-bottom: 1.5rem;
  }
  
  .mission-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .feature-item {
    width: 100%;
    justify-content: center;
  }
}

/* Thank You Message Card Styles */
.thank-you-message {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100px;
  margin-top: 40px;
  animation: fadeInUp 0.7s ease-out;
}

.thank-you-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(39, 174, 96, 0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  border: 2px solid #eafaf1;
}

.checkmark-circle {
  margin-bottom: 18px;
}

.thank-you-headline {
  font-size: 1.7rem;
  font-weight: 700;
  color: #27ae60;
  margin-bottom: 0.5rem;
}

.thank-you-subtitle {
  font-size: 1.1rem;
  color: #003366;
  font-weight: 500;
}

.thank-you-home-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 12px 30px;
  background: #eaf6ff;
  color: #003366;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #003366;
  transition: background 0.3s, color 0.3s;
  font-size: 1rem;
}
.thank-you-home-btn:hover {
  background: #003366;
  color: #fff;
}

/* Hero Features for Programs Page */
.hero-feature {
  padding: 1.5rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.hero-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-feature-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.hero-feature-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.hero-feature:hover .hero-feature-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.hero-cta .btn {
  margin: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 50px;
  text-decoration: none;
}

.hero-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-cta .btn-light:hover {
  background: #f8f9fa;
  color: #003366;
}

.hero-cta .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* === DASHBOARD HERO === */
.dashboard-hero {
  background: linear-gradient(135deg, #b3e0ff 0%, #4A90E2 100%);
  color: #fff;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.dashboard-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.dashboard-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
}

.section-colored-bg {
  background: #eaf6ff !important;
}

/* === COMING SOON PROGRAM CARD === */
.program-card.coming-soon {
  background: #f2f2f2;
  border: 2px dashed #d1d5db;
  cursor: not-allowed;
}

.program-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.program-card.coming-soon .program-image img {
  filter: grayscale(100%) brightness(0.8);
}

.program-card.coming-soon .program-overlay {
  background: rgba(255, 255, 255, 0.75);
}

/* === SPECIAL SECTION ENHANCEMENTS === */
.special-section .text-center h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50; /* matches section-title color */
  display: inline-block;
}

.special-section .text-center .lead {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.detail-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 35px 25px;
}

.detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.detail-card h5 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}

.detail-card p {
  font-size: 0.95rem;
}

.detail-icon {
  background: linear-gradient(135deg, #5dade2 0%, #3498db 100%);
}