/* Reset and Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: #fff; background: #000; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Header Styles (from header.tsx) */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 0.3s ease; height: 5rem; }
.header.scrolled { backdrop-filter: blur(20px); background: rgba(255,255,255,0.1); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.header-content { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo-section { display: flex; align-items: center; gap: 1.5rem; }
.logo-circle { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: linear-gradient(to bottom right, #3b82f6, #06b6d4); padding: 0.125rem; box-shadow: 0 0 20px rgba(59,130,246,0.5); }
.logo-img { width: 100%; height: 100%; border-radius: 0.75rem; background: #fff; object-fit: contain; }
.title-section { display: flex; flex-direction: column; gap: 0.25rem; }
.header-title { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.025em; color: #fff; }
.header-subtitle { font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.zap-icon { width: 1.25rem; height: 1.25rem; background: #3b82f6; border-radius: 50%; animation: pulse 2s infinite; display: none; } /* Shown on glitch */
.glitch-container.glitching .zap-icon { display: block; }
.glitch-container.glitching { animation: glitch 1s linear; }

.desktop-nav { display: none; } /* Hidden on mobile */
@media (min-width: 1024px) { .desktop-nav { display: flex; gap: 0.25rem; } }
.nav-link { padding: 0.5rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.8); text-decoration: none; transition: all 0.2s; position: relative; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 0.125rem; background: linear-gradient(to right, #3b82f6, #06b6d4); transform: translateX(-50%) scaleX(0); transition: transform 0.2s; border-radius: 0.25rem; }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

.mobile-menu-btn { display: block; background: none; border: none; width: 1.5rem; height: 1.5rem; cursor: pointer; } /* lg:hidden */
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.hamburger { display: block; width: 100%; height: 2px; background: #fff; position: relative; transition: 0.2s; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 100%; height: 2px; background: #fff; left: 0; transition: 0.2s; }
.hamburger::before { top: -0.375rem; }
.hamburger::after { bottom: -0.375rem; }
.mobile-menu-btn.open .hamburger { background: none; }
.mobile-menu-btn.open .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-menu-btn.open .hamburger::after { bottom: 0; transform: rotate(-45deg); }

.mobile-nav { display: none; overflow: hidden; max-height: 0; opacity: 0; transition: all 0.3s; border-top: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.8); }
.mobile-nav.open { display: block; max-height: 20rem; opacity: 1; padding: 1.5rem 0; }
.mobile-nav-link { display: block; padding: 0.75rem 1rem; color: rgba(255,255,255,0.8); text-decoration: none; font-weight: 500; transition: all 0.2s; }
.mobile-nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* Hero Gallery Styles */
.hero-gallery { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.background-container { position: absolute; inset: 0; }
.image-wrapper { position: absolute; inset: 0; transition: all 1s ease-in-out; opacity: 0.3; transform: scale(1.1); filter: blur(4px); }
.image-wrapper.active { opacity: 1; transform: scale(1); filter: blur(0); }
.bg-image { width: 100%; height: 100%; object-fit: cover; }
.gradient-overlay { position: absolute; inset: 0; pointer-events: none; }
.gradient-overlay.vertical { background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6)); }
.gradient-overlay.horizontal { background: linear-gradient(to right, rgba(0,0,0,0.4), transparent 50%, rgba(0,0,0,0.4)); }

.content { position: relative; z-index: 10; text-align: center; width: 100%; }
.content-inner { max-width: 72rem; margin: 0 auto; }
.main-title { margin-bottom: 2rem; animation: fadeInUp 1s ease-out; }
.hero-title { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 900; margin-bottom: 1.5rem; letter-spacing: -0.025em; }
.text-gradient { background: linear-gradient(90deg, #009966 0%, #005ec1 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-white { color: #fff; }
.underline { height: 0.25rem; width: 8rem; background: linear-gradient(to right, #3b82f6, #06b6d4); margin: 0 auto; border-radius: 9999px; box-shadow: 0 0 10px rgba(59,130,246,0.5); }

.subtitle-section { margin-bottom: 3rem; animation: fadeInUp 1s ease-out 0.2s both; }
.static-subtitle { font-size: clamp(1rem, 3vw, 1.25rem); color: rgba(255,255,255,0.9); font-weight: 500; letter-spacing: 0.05em; margin-bottom: 1rem; }
.dynamic-content { position: relative; height: 5rem; display: flex; align-items: center; justify-content: center; }
.dynamic-slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: all 0.5s ease; opacity: 0; transform: translateY(1rem); }
.dynamic-slide.active { opacity: 1; transform: translateY(0); }
.dynamic-title { font-size: clamp(1.25rem, 4vw, 1.875rem); font-weight: 700; margin-bottom: 0.5rem; color: #fff; }
.dynamic-subtitle { font-size: 1rem; color: rgba(255,255,255,0.8); }

.event-info { animation: fadeInUp 1s ease-out 0.6s both; }
.event-text { font-size: 1.125rem; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.controls-container { display: flex; align-items: center; justify-content: center; gap: 1rem; backdrop-filter: blur(20px); background: rgba(255,255,255,0.1); padding: 0.75rem 1rem; border-radius: 1rem; border: 1px solid rgba(255,255,255,0.2); }
.control-btn { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; color: #fff; font-size: 1rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.control-btn:hover { background: rgba(255,255,255,0.3); }
.play-pause-btn { font-size: 0.875rem; } /* Pause symbol: ⏸, Play: ▶ */
.dots-container { display: flex; gap: 0.5rem; }
.dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; cursor: pointer; transition: all 0.3s; }
.dot.active { background: #fff; transform: scale(1.25); box-shadow: 0 0 10px rgba(255,255,255,0.5); }
.dot:hover { background: rgba(255,255,255,0.75); }

.scroll-indicator { position: absolute; bottom: 2rem; right: 2rem; z-index: 20; display: flex; flex-direction: column; align-items: center; color: rgba(255,255,255,0.6); }
.scroll-indicator span { font-size: 0.75rem; font-weight: 500; margin-bottom: 0.5rem; transform: rotate(90deg); transform-origin: center; }
.scroll-line { width: 2px; height: 3rem; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6), transparent); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(2rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes glitch { 0%, 100% { transform: translate(0); } 20% { transform: translate(-2px, 2px); } 40% { transform: translate(-2px, -2px); } 60% { transform: translate(2px, 2px); } 80% { transform: translate(2px, -2px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Responsive */
@media (max-width: 768px) {
  .header-content { padding: 0 1rem; }
  .controls-container { gap: 0.5rem; padding: 0.5rem; }
  .hero-title { font-size: 2.5rem; }
  .dynamic-content { height: 4rem; }
}

/* Reset and basics */
* {
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

/* Header & Nav */
.header {
    background: linear-gradient(180deg, #ccc 0%, #eaeaea 100%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo-circle {
  width: 2.5rem;  /* Change from 3.5rem to your desired size, e.g., 5rem for larger */
  height: 2.5rem; 
  
}

.logo-img {
  width: 100%;  /* This makes the image fill the .logo-circle container */
  height: 4rem;
   box-shadow: 0 0 8px #00cc99;
}
.logo img {
    width: 150px;
    border-radius: 25px;
    box-shadow: 0 0 8px #00cc99;
}
.title-area h1 {
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0;
    color: #000;
}
.title-area .tagline {
    font-size: 0.8rem;
    color: #7d7d7d;
    margin-top: 0;
}

/* Navigation Menu */
.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav ul li a:hover {
    color: #07a;
}

/* Hero Section with background image */
.hero-section {
    position: relative;
    height: 450px;
    overflow: hidden;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-bg {
    background-image: url('images/stadium-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}
.hero-tagline {
    font-size: 1.1rem;
    margin: 10px 0 0;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
}
.hero-desc {
    font-weight: 400;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* Gradient Text */
.gradient-text, .gradient-text-green-blue {
    background: linear-gradient(90deg, #009966 0%, #005ec1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Buttons */
.btn-gradient {
    padding: 12px 30px;
    background: linear-gradient(90deg, #009966 0%, #005ec1 100%);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}
.btn-gradient:hover {
    background: linear-gradient(90deg, #005ec1 0%, #009966 100%);
}
/* and many more styles for cards, icons, forms, footer etc. */



/* Info Box */
.info-box {
  background: #fff;
  padding: 2rem; /* p-8 */
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
  border: 2px solid #e5e7eb; /* border-2 border-gray-200 */
  max-width: 64rem; /* max-w-4xl */
  margin: 4rem auto 0; /* mt-16 */
  text-align: center;
}

.info-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}

.info-description {
  color: #4b5563; /* text-gray-600 */
  line-height: 1.7; /* leading-relaxed */
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; /* gap-6 */
  margin-top: 2rem; /* mt-8 */
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem; /* text-3xl */
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem; /* text-sm */
  color: #4b5563; /* text-gray-600 */
}

/* Partners Section Styles */
.partners-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.heart-icon {
    font-size: 1.2rem;
}

.section-label {
    color: #00bfa5;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-partners {
    color: #00bfa5;
}

.title-sponsors {
    color: #333;
}

.section-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.partner-logo {
    margin-bottom: 1.5rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-img {
    max-width: 120px;
    max-height: 100px;
    object-fit: contain;
}

.partner-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.partner-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.partner-link {
    color: #00bfa5;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.partner-link:hover {
    color: #00a693;
}

.link-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.partner-link:hover .link-arrow {
    transform: translate(2px, -2px);
}

/* Root variables for colors (add to :root or body) */
:root {
  --accent: #3b82f6; /* Blue for accents */
  --purple: #a855f7; /* Purple for radio */
  --blue: #60a5fa; /* Blue for causes */
  --red: #ef4444; /* Red for hearts */
  --gray-900: #111827;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
}

/* Footer Base Styles */
.footer {
  background: linear-gradient(to bottom, var(--gray-900), #000000);
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-content {
  padding: 64px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

@media (max-width: 1023px) {
  .main-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }
}

/* Organization Info */
.org-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.org-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-glow {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(to bottom right, var(--accent), #2563eb);
  padding: 2px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); /* Glow effect */
}

.logo-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}

.org-title {
  font-weight: bold;
  font-size: 18px;
  margin: 0;
}

.org-subtitle {
  font-size: 14px;
  color: var(--gray-400);
  margin: 0;
}

.org-description {
  color: var(--gray-300);
  line-height: 1.6;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}




/* Quick Links */
.section-title {
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 12px 0;
}

.accent { color: var(--accent); }

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-link {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.quick-link:hover {
  color: var(--accent);
}

.link-dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.event-info {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
}

.event-title {
  font-weight: 600;
  color: white;
  margin: 0 0 12px 0;
  font-size: 14px;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-300);
}

.event-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-item i {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* Our Causes */
.blue { color: var(--blue); }

.causes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cause-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.6;
}

.cause-item i {
  width: 16px;
  height: 16px;
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}

.red { color: var(--red); }

/* Radio Partners */
.purple { color: var(--purple); }

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.radio-station {
  background: rgba(203, 17, 17, 0.05);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.radio-station:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: scale(1.05);
}

.radio-station:hover span { /* If you add spans for color transition */
  color: var(--purple);
}

.hashtags-section {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
}

.hashtags-title {
  font-weight: 600;
  color: white;
  margin: 0 0 12px 0;
  font-size: 14px;
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hashtag {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  color: var(--gray-300);
}


.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Contact CTA */
.contact-cta {
    text-align: center;
    color: #666;
    font-size: 1rem;
}

.contact-link {
    color: #00bfa5;
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #00a693;
}

/* Responsive Design for Partners Section */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .partner-card {
        padding: 2rem 1.5rem;
    }
    
    .partners-section {
        padding: 2rem 0;
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 6px;
   
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navigation {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #e8f5e8;
    color: #27ae60;
    transform: translateY(-1px);
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.areas-section {
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.impact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #f8fdf8;
}

.icon-container {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 3px solid;
    background-color: white;
}

.icon-placeholder {
    width: 32px;
    height: 32px;
    background-color: #ddd;
    border-radius: 4px;
    /* Your PNG icons will replace this placeholder */
}



/* Icon Container Colors */
.pink-border {
    border-color: #e91e63;
}

.blue-border {
    border-color: #2196f3;
}

.green-border {
    border-color: #4caf50;
}

.purple-border {
    border-color: #9c27b0;
}

.orange-border {
    border-color: #ff9800;
}

.cyan-border {
    border-color: #00bcd4;
}

.impact-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.impact-card p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .section-title {
        font-size: 36px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .impact-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}


/* Social Section Base */
#socials {
  padding: 6rem 0; /* py-24 */
  background: linear-gradient(to bottom right, #111827, #000000, #111827); /* from-gray-900 via-black to-gray-900 */
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; /* Assume system font for modernity */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem; /* px-4 */
}

.intro-section {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}

.intro-section h2 {
  font-size: 2.5rem; /* text-4xl */
  font-size: 3rem; /* md:text-5xl (adjust via media query) */
  font-weight: bold;
  margin-bottom: 1.5rem; /* mb-6 */
}

.intro-section p {
  font-size: 1.25rem; /* text-xl */
  color: #d1d5db; /* text-gray-300 */
  max-width: 48rem; /* max-w-3xl */
  margin: 0 auto;
}

/* Social Grid */
.social-grid {
  display: grid;
  grid-template-columns: 1fr; /* Default 1 column */
  gap: 1.5rem; /* gap-6 */
  max-width: 72rem; /* max-w-6xl */
  margin: 0 auto 4rem; /* mb-16 */
}

@media (min-width: 768px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}

@media (min-width: 1024px) {
  .social-grid {
    grid-template-columns: repeat(5, 1fr); /* lg:grid-cols-5 */
  }
  
  .intro-section h2 {
    font-size: 3rem;
  }
}

/* Social Card Base */
.social-card {
  position: relative;
  padding: 1.5rem; /* p-6 */
  border-radius: 1rem; /* rounded-2xl */
  transition: all 0.5s ease; /* transition-all duration-500 */
  cursor: pointer;
  transform: translateY(0);
  overflow: hidden;
}

.social-card:hover {
  transform: scale(1.1); /* hover:scale-110 */
}

.social-card.blurred {
  filter: blur(4px); /* blur-sm */
  opacity: 0.5;
  transform: scale(0.95); /* scale-95 */
}

/* Gradient Backgrounds (exact from Figma) */
.gradient-bg {
  position: absolute;
  inset: 0;
  border-radius: 1rem; /* rounded-2xl */
  z-index: -1;
}

.instagram-gradient {
  background: linear-gradient(to bottom right, #ec4899, #ef4444, #eab308); /* from-pink-500 via-red-500 to-yellow-500 */
}

.tiktok-gradient {
  background: linear-gradient(to bottom right, #26f3f3, #000000, #ea1289); /* from-black via-red-500 to-white */
}

.facebook-gradient {
  background: linear-gradient(to bottom right,#fafbfe, #2563eb, #1e40af); /* from-blue-600 to-blue-800 */
}

.twitter-gradient {
  background: linear-gradient(to bottom right, #7b818b, #000000, #7b818b); /* from-gray-800 to-black */
}

.youtube-gradient {
  background: linear-gradient(to bottom right, #000000, #ef4444, #b91c1c); /* from-red-500 to-red-700 */
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}

.icon {
  width: 3rem; /* w-12 */
  height: 3rem;
  margin: 0 auto 1rem; /* mx-auto mb-4 */
  display: block;
  color: white;
  transition: transform 0.3s ease;
}

.social-card:hover .icon {
  animation: bounce 0.6s ease; /* group-hover:animate-bounce */
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.card-content h3 {
  font-size: 1.125rem; /* text-lg */
  font-weight: bold;
  margin-bottom: 0.5rem; /* mb-2 */
}

.card-content p {
  font-size: 0.875rem; /* text-sm */
  opacity: 0.9;
}

/* Hover Overlay */
.hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* bg-black/40 */
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease; /* transition-opacity duration-300 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-card:hover .hover-overlay {
  opacity: 1; /* group-hover:opacity-100 */
}

.hover-overlay span {
  color: white;
  font-weight: 600;
  font-size: 1.125rem; /* text-lg */
}

/* Animated Border */
.animated-border {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2); /* border-2 border-white/20 */
  transition: border-color 0.3s ease; /* transition-colors duration-300 */
  pointer-events: none;
}

.social-card:hover .animated-border {
  border-color: rgba(255, 255, 255, 0.6); /* hover:border-white/60 */
}

/* Call to Action */
.cta-section {
  text-align: center;
  margin-top: 4rem; /* mt-16 */
}

.cta-box {
  background: linear-gradient(to right, rgba(34, 197, 94, 0.2), rgba(59, 130, 246, 0.2)); /* from-green-500/20 to-blue-500/20 */
  padding: 2rem; /* p-8 */
  border-radius: 1rem; /* rounded-2xl */
  border: 1px solid rgba(255, 255, 255, 0.2); /* border border-white/20 */
}

.cta-box h3 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: bold;
  margin-bottom: 1rem; /* mb-4 */
}

.cta-box p {
  font-size: 1.125rem; /* text-lg */
  color: #d1d5db; /* text-gray-300 */
  margin-bottom: 1.5rem; /* mb-6 */
}

.hashtag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem; /* gap-4 */
}

.hashtag-list span {
  background: rgba(255, 255, 255, 0.1); /* bg-white/10 */
  padding: 0.5rem 1.5rem; /* px-6 py-2 */
  border-radius: 9999px; /* rounded-full */
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hashtag-list {
    flex-direction: column;
    align-items: center;
  }
  
  .hashtag-list span {
    width: fit-content;
  }
}


/* Base Styles for Section */
.event-overview {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, #000, #000e);
  color: #fff;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

/* Soccer Balls */
.soccer-ball {
  position: absolute;
  top: 4rem;
  font-size: 5rem;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
  z-index: 20;
  animation: float 3s ease-in-out infinite;
}

.left-ball {
  left: 3rem;
  animation-delay: 0.5s;
}

.right-ball {
  right: 3rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(59, 130, 246, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  color: #3b82f6;
  font-weight: 600;
}


.section-header h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(90deg, #009966 0%, #005ec1 100%);;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.white-text {
  color: #fff;
}

.section-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Details Cards */
.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .details-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.detail-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.582);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.detail-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: scale(1.05);
}

.detail-card:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.1));
  opacity: 1;
}

.icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  padding: 0.125rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(101, 247, 90, 0.5);
  transition: all 0.3s ease;
}

.icon-wrapper:hover {
  animation: pulse-glow 1s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }
  50% { box-shadow: 0 0 30px currentColor; }
}

.green-gradient { background: linear-gradient(to bottom right, #10b981, #059669); }
.blue-gradient { background: linear-gradient(to bottom right, #3b82f6, #06b6d4); }
.purple-gradient { background: linear-gradient(to bottom right, #8b5cf6, #a855f7); }
.amber-gradient { background: linear-gradient(to bottom right, #f59e0b, #d97706); }

.green-gradient .calendar-icon, .blue-gradient .map-pin-icon, .purple-gradient .radio-icon, .amber-gradient .trophy-icon,
.green-gradient svg, .blue-gradient svg, .purple-gradient svg, .amber-gradient svg {
  color: #fafafa;
  width: 100%;
  height: 100%;
  padding: 0.75rem;
  background: #000000;
  border-radius: 0.75rem;
}

.detail-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.primary {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.25rem;
}

.secondary {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Schedule and Stats Grid */
.schedule-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .schedule-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.schedule h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.schedule-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background:  rgba(255, 255, 255, 0.582);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.schedule-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.time-badge {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(90deg, #009966 0%, #005ec1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.schedule-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.schedule-item:hover h4 {
  color: #3b82f6;
}

.schedule-item p {
  color: rgba(255, 255, 255, 0.7);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background:  rgba(255, 255, 255, 0.582);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.stat-card svg {
  width: 2rem;
  height: 2rem;
  color: #3b82f6;
  margin: 0 auto 0.75rem;
  display: block;
}

.star-icon { color: #3b82f6; }
.radio-icon:nth-of-type(2) { color: #60a5fa; }
.clock-icon { color: #a855f7; }
.trophy-icon:nth-of-type(2) { color: #f59e0b; }

.stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA */
.cta {
  text-align: center;
  margin-top: 5rem;
}

.cta-card {
  background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.1));
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #fff;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .soccer-ball {
    font-size: 3rem;
    top: 2rem;
  }
  .left-ball { left: 1rem; }
  .right-ball { right: 1rem; }
  .section-header h2 { font-size: 2.5rem; }
  .schedule-item { flex-direction: column; gap: 1rem; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
}


/*footer*/
/* Root variables for colors (add to :root or body) */
:root {
  --accent: #3b82f6; /* Blue for accents */
  --purple: #a855f7; /* Purple for radio */
  --blue: #60a5fa; /* Blue for causes */
  --red: #ef4444; /* Red for hearts */
  --gray-900: #111827;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
}

/* Footer Base Styles */
.footer {
  background: linear-gradient(to bottom, var(--gray-900), #000000);
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-content {
  padding: 64px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

@media (max-width: 1023px) {
  .main-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }
}

/* Organization Info */
.org-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.org-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-glow {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(to bottom right, var(--accent), #2563eb);
  padding: 2px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); /* Glow effect */
}

.logo-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}

.org-title {
  font-weight: bold;
  font-size: 18px;
  margin: 0;
}

.org-subtitle {
  font-size: 14px;
  color: var(--gray-400);
  margin: 0;
}

.org-description {
  color: var(--gray-300);
  line-height: 1.6;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.instagram:hover { color: #ec4899; } /* Pink */
.tiktok:hover { color: var(--red); }
.facebook:hover { color: #3b5998; } /* Blue */
.twitter:hover { color: #6b7280; } /* Gray */
.youtube:hover { color: var(--red); }

/* Quick Links */
.section-title {
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 12px 0;
}

.accent { color: var(--accent); }

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-link {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.quick-link:hover {
  color: var(--accent);
}

.link-dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.event-info {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
}

.event-title {
  font-weight: 600;
  color: white;
  margin: 0 0 12px 0;
  font-size: 14px;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-300);
}

.event-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-item i {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* Our Causes */
.blue { color: var(--blue); }

.causes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cause-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.6;
}

.cause-item i {
  width: 16px;
  height: 16px;
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}

.red { color: var(--red); }

/* Radio Partners */
.purple { color: var(--purple); }

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.radio-station {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.radio-station:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: scale(1.05);
}

.radio-station:hover span { /* If you add spans for color transition */
  color: var(--purple);
}

.hashtags-section {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
}

.hashtags-title {
  font-weight: 600;
  color: white;
  margin: 0 0 12px 0;
  font-size: 14px;
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hashtag {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  color: var(--gray-300);
}

/* Bottom Footer */
.bottom-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .bottom-content {
    flex-direction: row;
  }
}

.copyright {
  text-align: center;
}

@media (min-width: 768px) {
  .copyright {
    text-align: left;
  }
}

.copyright-text {
  color: var(--gray-400);
  font-size: 14px;
  margin: 0;
}

.mission-text {
  color: var(--gray-500);
  font-size: 12px;
  margin: 4px 0 0 0;
}

.made-with {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 14px;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}



/* Import Google Font for Figma-like typography */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* Our Partners Section Styles */
.partners-section {
  background-color: #F5F5F5;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.partners-tab {
  display: inline-block;
  background: linear-gradient(90deg, #009966 0%, #005ec1 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.title-container {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #333;
}

.title-part1 {
  color: #333;
}

.title-highlight {
  

  background: linear-gradient(90deg, #009966 0%, #005ec1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .partners-section {
    padding: 40px 16px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
}


  .stronger-together-section {
    padding: 40px 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }

  .stronger-together-box {
    background: linear-gradient(90deg, #0099665b 0%, #005dc15f 100%); 
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border: 1px solid #b2ebf2; /* Light border to enhance gradient */
  }

  .stronger-together-box h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #232323; /* Dark teal for contrast */
    margin-bottom: 16px;
  }

  .stronger-together-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2e302f; /* Slightly darker teal for readability */
    margin: 0;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .stronger-together-section {
      padding: 20px 15px;
    }
    .stronger-together-box {
      padding: 20px;
    }
    .stronger-together-box h2 {
      font-size: 1.5rem;
    }
  }
  
.bridging-card {
  background: linear-gradient(90deg, #0099665b 0%, #005dc15f 100%); 
  padding: 24px; /* Internal spacing */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  max-width: 1000px; /* Approximate width from image */
  margin: 20px auto; /* Centering and outer margin */
  text-align: center;
  font-family: Arial, sans-serif; /* Clean font stack */
  color: #333; /* Dark text for readability, but white was used in image—adjust if needed */
}

.bridging-card h3 {
 font-size: 2rem;
    font-weight: bold;
    color: #232323; /* Dark teal for contrast */
    margin-bottom: 16px;
}

.bridging-card p {
 font-size: 1.1rem;
    line-height: 1.6;
    color: #2e302f; /* Slightly darker teal for readability */
    margin: 0;
}

.movement-card {
background: linear-gradient(90deg, #00996634 0%, #c100b444 100%); 
  padding: 24px; /* Internal spacing */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  max-width: 1000px; /* Approximate width from image */
  margin: 20px auto; /* Centering and outer margin */
  text-align: center;
  font-family: Arial, sans-serif; /* Clean font stack */
  color: #333; /*


.movement-card h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #232323; /* Dark teal for contrast */
    margin-bottom: 16px;
  }

.movement-card p {
font-size: 1.1rem;
    line-height: 1.6;
    color: #2e302f; 
    margin: 0;
}

.get-involved-btn {
  background: linear-gradient(90deg, #009966 0%, #005ec1 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px; /* Rounded button */
  cursor: pointer;
  transition: transform 0.3s ease; /* Hover effect */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Button shadow */
}

.get-involved-btn:hover {
  transform: translateY(-2px); /* Slight lift on hover */
}



/* Our Reach Section Styles */
.our-reach-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #ffffff, #f9fafb, #ffffff);
  position: relative;
  overflow: hidden;
}

.bg-decoration {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.bg-icon {
  position: absolute;
  font-size: 4rem;
}

.top-left {
  top: 5rem;
  left: 2.5rem;
}

.bottom-right {
  bottom: 5rem;
  right: 2.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.1); /* accent/10 */
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.user-icon,
.sparkle-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981; /* accent */
}

.header-badge span {
  color: #10b981; /* accent */
  font-weight: 600;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 4.5rem;
  }
}

.gradient-text {
  background: linear-gradient(to right, #10b981, #059669); /* from-accent to-emerald-600 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.25rem;
  color: #4b5563; /* gray-600 */
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.625;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto 3rem auto;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.audience-card {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 2px solid #e5e7eb; /* gray-200 */
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
}

.audience-card:hover {
  border-color: #77caae; /* accent */
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
}

.icon-badge {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, #10b981, #059669); /* from-accent to-emerald-600 for primary */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.secondary-card .icon-badge {
  background: linear-gradient(to bottom right, #2563eb, #7c3aed); /* from-blue-600 to-purple-600 */
}

.card-content {
  margin-top: 1rem;
}

.group-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.group-label span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #10b981; /* accent */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.age-range {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 0.75rem;
}

.description {
  color: #4b5563; /* gray-600 */
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.stats-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stat-tag {
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, #f3f4f6, #e5e7eb); /* from-gray-100 to-gray-50 */
  border: 1px solid #d1d5db; /* border-gray-200 */
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151; /* gray-700 */
}

.hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #10b981, #059669); /* Matches primary, adjust per card if needed */
  opacity: 0;
  border-radius: 1.5rem;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.primary-card .hover-overlay {
  background: linear-gradient(to bottom right, #10b981, #059669);
}

.secondary-card .hover-overlay {
  background: linear-gradient(to bottom right, #2563eb, #7c3aed);
}

.audience-card:hover .hover-overlay {
  opacity: 0.05;
}






:root {
  --bg-primary: #ffffff; /* background */
  --bg-secondary: rgba(255, 255, 255, 0.8); /* glass effect */
  --border: rgba(0, 0, 0, 0.1);
  --accent: #10b981; /* green */
  --blue: #3b82f6;
  --text-primary: #000000;
  --text-muted: #6b7280;
  --gradient-text: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
  --phone-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --email-gradient: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --button-gradient: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
}

.contact-section {
  position: relative;
  padding: 6rem 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-weight: 600;
}

.icon {
  color: currentColor;
  flex-shrink: 0;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 0 auto;
  max-width: 56rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-card:hover h3 {
  color: var(--accent);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  padding: 0.125rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  animation: pulse-glow 2s infinite alternate;
}

.phone-gradient {
  background: var(--phone-gradient);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.email-gradient {
  background: var(--email-gradient);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

@keyframes pulse-glow {
  from { box-shadow: 0 0 10px currentColor; }
  to { box-shadow: 0 0 30px currentColor; }
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover::after {
  opacity: 1;
}

.form-container {
  background: var(--bg-secondary);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .form-container {
    padding: 3rem;
  }
}

.form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.875rem;
  font-weight: 700;
}

.success-message {
  text-align: center;
  padding: 3rem 0;
}

.success-icon {
  color: var(--accent);
  margin: 0 auto 1rem;
}

.success-message h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.success-message p {
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

input, select, textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: var(--button-gradient);
  color: white;
  padding: 1.5rem;
  border: none;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
}

.hidden {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Broadcast Section Styles */
.broadcast-section {
  text-align: center;
  margin-top: 4rem; /* Matches mt-16 in Tailwind */
}

.broadcast-card {
  background-color: white;
  padding: 2rem; /* Matches p-8 */
  border-radius: 1rem; /* Matches rounded-2xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Matches shadow-lg */
  border: 2px solid #e5e7eb; /* Matches border-2 border-gray-200 */
  max-width: 56rem; /* Matches max-w-4xl */
  margin: 0 auto; /* Matches mx-auto */
}

.broadcast-title {
  font-size: 1.5rem; /* Matches text-2xl */
  font-weight: bold;
  color: black; /* Matches text-black */
  margin-bottom: 1rem; /* Matches mb-4 */
}

.broadcast-description {
  color: #4b5563; /* Matches text-gray-600 */
  line-height: 1.625; /* Matches leading-relaxed */
  margin: 0; /* Ensures no extra margins */
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column on small screens */
  gap: 1.5rem; /* Matches gap-6 */
  margin-top: 2rem; /* Matches mt-8 */
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr); /* Matches md:grid-cols-3 */
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem; /* Matches text-3xl */
  font-weight: bold;
  margin-bottom: 0.25rem; /* Small space before label */
}

.green {
  color: #10b981; /* Matches text-green-500 */
}

.blue {
  color: #3b82f6; /* Matches text-blue-500 */
}

.purple {
  color: #8b5cf6; /* Matches text-purple-500 */
}

.stat-label {
  font-size: 0.875rem; /* Matches text-sm */
  color: #4b5563; /* Matches text-gray-600 */
  margin: 0;
}