/* Enhanced Modern CSS for OGEN Website */
:root {
  --primary-green: #1d7a4e;
  --primary-green-light: #2d9f66;
  --primary-green-dark: #0f5436;
  --accent-gold: #d4a574;
  --accent-light: #e8f5f0;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-white: #ffffff;
  --bg-light: #f8faf9;
  --border-light: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}
/* Enhanced Page Hero with Background Image */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(29, 122, 78, 0.85) 0%, rgba(45, 159, 102, 0.75) 100%);
    color: var(--bg-white);
    padding-top: 5rem;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.page-hero.about-hero::before {
    background-image: url('img/osiligi\ community.jpeg');
}

.page-hero.programs-hero::before {
    background-image: url('img/back\ to\ school.jpeg');
}

.page-hero.gallery-hero::before {
    background-image: url('img/engaging\ with\ our\ empowered\ girls.jpeg');
}

.page-hero.contact-hero::before {
    background-image: url('img/community\ engagement.jpg');
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--bg-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Enhanced Hero Content */
.page-hero .hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.page-hero .hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive adjustments for page hero */
@media (max-width: 768px) {
    .page-hero {
        min-height: 60vh;
    }
    
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-hero .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero .hero-cta-buttons .btn-cta {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 50vh;
    }
    
    .page-hero .hero-title {
        font-size: 2rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
/* Enhanced CTA Section with Image Background */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(29, 122, 78, 0.85) 0%, rgba(45, 159, 102, 0.75) 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/community\ engagement.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 122, 78, 0.9) 0%, rgba(45, 159, 102, 0.8) 100%);
    z-index: -1;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

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

/* Responsive adjustments for CTA section */
@media (max-width: 992px) {
    .cta-section .row {
        text-align: center;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
    }
    
    .cta-buttons {
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 5rem;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  font-weight: 400;
}

/* Logo Image Styling */
.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Adjust logo wrapper for image */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .logo-image {
    height: 35px;
  }
}

@media (max-width: 576px) {
  .logo-image {
    height: 30px;
  }
}

/* Top Contact Bar */
.top-contact-bar {
  background: var(--primary-green-dark);
  color: var(--bg-white);
  padding: 0.75rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1002;
}

.contact-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-info-left {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.contact-item a {
  color: var(--bg-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-gold);
}

.social-links-top {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  color: var(--bg-white);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 0.9rem;
}

.social-icon:hover {
  background: var(--accent-gold);
  color: var(--primary-green-dark);
  transform: translateY(-2px);
}

/* Navigation */
.navbar-custom {
  background: var(--bg-white) !important;
  box-shadow: var(--shadow-sm);
  padding: 1rem 0 !important;
  margin-top: 2.5rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.navbar-custom.scrolled {
  padding: 0.75rem 0 !important;
  box-shadow: var(--shadow-md);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.logo-text {
  color: var(--primary-green);
  letter-spacing: 0.1em;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  position: relative;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  border-radius: var(--border-radius);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-green) !important;
}

.btn-donate {
  background: var(--primary-green) !important;
  color: var(--bg-white) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-donate:hover {
  background: var(--primary-green-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Section with Image Background */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--bg-white);
  padding-top: 5rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('img/hero1.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 122, 78, 0.85) 0%, rgba(45, 159, 102, 0.75) 100%);
  z-index: -1;
}

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

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-gold);
  top: -50px;
  right: -50px;
  animation: float 8s ease-in-out infinite;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--bg-white);
  bottom: 100px;
  left: -100px;
  animation: float 10s ease-in-out infinite 2s;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: var(--accent-gold);
  bottom: 50px;
  right: 100px;
  animation: float 12s ease-in-out infinite 4s;
}

.blob-4 {
  width: 350px;
  height: 350px;
  background: var(--bg-white);
  top: 50%;
  left: 10%;
  animation: float 9s ease-in-out infinite 1s;
}

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

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-text-wrapper {
  padding-right: 2rem;
}

.hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  animation: slideUp 0.8s ease-out;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #f8e0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  animation: slideUp 0.8s ease-out 0.1s backwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  animation: slideUp 0.8s ease-out 0.2s backwards;
}

.stat-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.stat-text {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.3s backwards;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem !important;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}

.btn-cta.btn-primary {
  background: var(--accent-gold) !important;
  color: var(--primary-green) !important;
}

.btn-cta.btn-primary:hover {
  background: #e8c69a !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-cta.btn-secondary {
  background: transparent !important;
  color: var(--bg-white) !important;
  border: 2px solid var(--bg-white);
}

.btn-cta.btn-secondary:hover {
  background: var(--bg-white) !important;
  color: var(--primary-green) !important;
  transform: translateY(-3px);
}

.hero-image-wrapper {
  position: relative;
  z-index: 5;
}

.image-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-float {
  animation: imageFloat 4s ease-in-out infinite;
}

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

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.image-accent {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-green-light);
  opacity: 0.2;
}

.accent-1 {
  width: 80px;
  height: 80px;
  bottom: -20px;
  left: -20px;
}

.accent-2 {
  width: 60px;
  height: 60px;
  top: -10px;
  right: 30%;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-indicator i {
  font-size: 1.5rem;
}

/* Section Styling */
.py-section {
  padding: 6rem 0;
}

.section-hero {
  background: linear-gradient(135deg, rgba(45, 159, 102, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.section-hero.alt {
  background: var(--bg-light);
}

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

.blob-light-1, .blob-light-2, .blob-light-3, 
.blob-light-4, .blob-light-5, .blob-light-6 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.08;
}

.blob-light-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-green-light);
  top: -100px;
  right: -100px;
}

.blob-light-2 {
  width: 250px;
  height: 250px;
  background: var(--accent-gold);
  bottom: -50px;
  left: -50px;
}

.blob-light-3 {
  width: 280px;
  height: 280px;
  background: var(--primary-green);
  top: 50%;
  left: -100px;
}

.blob-light-4 {
  width: 320px;
  height: 320px;
  background: var(--accent-gold);
  bottom: -100px;
  right: -100px;
}

.blob-light-5 {
  width: 290px;
  height: 290px;
  background: var(--primary-green-light);
  top: -50px;
  left: 10%;
}

.blob-light-6 {
  width: 310px;
  height: 310px;
  background: var(--accent-gold);
  bottom: -80px;
  right: 10%;
}

.section-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.section-label {
  display: inline-block;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-hero h2 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Page Hero with Background Image */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(29, 122, 78, 0.9) 0%, rgba(45, 159, 102, 0.8) 100%);
  color: var(--bg-white);
  padding-top: 5rem;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.page-hero.about-hero::before {
  background-image: url('img/osiligi\ community.jpeg');
}

.page-hero.programs-hero::before {
  background-image: url('img/back\ to\ school.jpeg');
}

.page-hero.gallery-hero::before {
  background-image: url('img/engaging\ with\ our\ empowered\ girls.jpeg');
}

.page-hero.contact-hero::before {
  background-image: url('img/community\ engagement.jpg');
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

.page-hero .lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
}

/* About Section */
.about-section {
  background: var(--bg-white);
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.image-blur {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--primary-green);
  border-radius: 50%;
  opacity: 0.1;
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent-gold);
  color: var(--primary-green);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.highlight-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--accent-light);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: var(--primary-green);
  color: var(--bg-white);
  transform: translateY(-5px);
}

.highlight-item:hover h4,
.highlight-item:hover p {
  color: var(--bg-white);
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: var(--bg-white);
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
  background: var(--accent-gold);
  color: var(--primary-green);
}

.highlight-item h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-green);
  transition: color 0.3s ease;
}

.highlight-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

/* Core Values */
.core-values-section h4 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: var(--accent-light);
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  background: var(--primary-green);
  color: var(--bg-white);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.value-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
  transition: color 0.3s ease;
}

.value-card:hover i {
  color: var(--accent-gold);
}

.value-card span {
  font-weight: 600;
}

/* Vision & Mission */
.vision-mission-section {
  background: var(--bg-light);
}

.vm-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--primary-green);
  transition: left 0.3s ease;
}

.vm-card:hover::before {
  left: 0;
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.vm-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.vm-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.vm-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.vm-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.read-more {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--primary-green-dark);
  gap: 1rem;
}

/* Programs Section */
.programs-section {
  background: var(--bg-white);
}

.program-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  height: 100%;
}

.program-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
}

.program-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--accent-light);
}

.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-content {
  padding: 2rem;
  text-align: center;
}

.program-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-green);
  margin: -3rem auto 1rem;
  transition: all 0.3s ease;
  border: 4px solid var(--bg-white);
}

.program-card:hover .program-icon {
  background: var(--primary-green);
  color: var(--bg-white);
  transform: rotate(360deg);
}

.program-content h3 {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.program-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.program-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.program-link:hover {
  color: var(--primary-green-dark);
  gap: 1rem;
}

/* Impact Section */
.impact-section {
  background: var(--bg-light);
}

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

.impact-stat-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.impact-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.stat-count {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.85rem;
  color: var(--text-light);
}

.impact-story {
  position: relative;
  border-radius: var(--border-radius-lg);
  height: 300px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

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

.impact-story:hover img {
  transform: scale(1.1);
}

.story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  color: var(--bg-white);
  padding: 2rem;
  transform: translateY(50px);
  transition: transform 0.3s ease;
}

.impact-story:hover .story-overlay {
  transform: translateY(0);
}

.story-overlay h3 {
  color: var(--bg-white);
  margin-bottom: 0.5rem;
}

.story-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-white);
}

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

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 122, 78, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--bg-white);
  font-size: 2.5rem;
}

/* Lightbox */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
  border-radius: var(--border-radius);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--bg-white);
  font-size: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bg-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  transition: all 0.3s ease;
  user-select: none;
  z-index: 2001;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--accent-gold);
  background: rgba(0, 0, 0, 0.7);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* Get Involved Section */
.get-involved-section {
  background: var(--bg-white);
}

.involvement-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.involvement-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.involvement-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-green);
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.involvement-card:hover .involvement-icon {
  background: var(--primary-green);
  color: var(--bg-white);
  transform: scale(1.1);
}

.involvement-card h4 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.involvement-card p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.involvement-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.involvement-link:hover {
  color: var(--primary-green-dark);
  gap: 1rem;
}

/* Contact Section */
.contact-section {
  background: var(--bg-light);
}

.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(29, 122, 78, 0.1);
  outline: none;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.contact-info-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-green);
  margin: 0 auto 1.5rem;
}

.contact-info-card:hover .info-icon {
  background: var(--primary-green);
  color: var(--bg-white);
}

.contact-info-card h4 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-info-card p {
  margin-bottom: 0;
  color: var(--text-light);
}

.contact-info-card a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--primary-green-dark);
}

.map-container {
  margin-top: 2rem;
}

/* Footer */
.footer {
  background: var(--primary-green-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 1rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer h5 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

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

.social-link:hover {
  background: var(--accent-gold);
  color: var(--primary-green-dark);
  transform: translateY(-3px);
}

.newsletter-form .input-group {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn {
  border-radius: var(--border-radius);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-bottom {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Chatbot Widget */
.chatbot-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1500;
}

.chatbot-button {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(29, 122, 78, 0.4);
  transition: all 0.3s ease;
}

.chatbot-button:hover {
  background: var(--primary-green-dark);
  transform: scale(1.1);
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 350px;
  height: 500px;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-window.active {
  display: flex;
}

.chatbot-header {
  background: var(--primary-green);
  color: var(--bg-white);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--bg-white);
}

.btn-close-chat {
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-close-chat:hover {
  transform: scale(1.2);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bot-message {
  background: var(--accent-light);
  padding: 1rem;
  border-radius: 15px;
  border-bottom-left-radius: 5px;
  align-self: flex-start;
  max-width: 80%;
}

.bot-message p {
  margin: 0;
  color: var(--text-dark);
}

.user-message {
  background: var(--primary-green);
  color: var(--bg-white);
  padding: 1rem;
  border-radius: 15px;
  border-bottom-right-radius: 5px;
  align-self: flex-end;
  max-width: 80%;
}

.user-message p {
  margin: 0;
  color: var(--bg-white);
}

.chatbot-input-area {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--border-light);
}

#chatbotInput {
  flex: 1;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

#chatbotInput:focus {
  border-color: var(--primary-green);
}

.btn-send-chat {
  background: var(--primary-green);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-send-chat:hover {
  background: var(--primary-green-dark);
  transform: scale(1.05);
}

/* Utility Classes */
.text-success {
  color: var(--primary-green) !important;
}

.bg-success {
  background-color: var(--primary-green) !important;
}

.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-success:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
}

.btn-outline-success {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-outline-success:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.rounded-4 {
  border-radius: var(--border-radius) !important;
}

.rounded-5 {
  border-radius: var(--border-radius-lg) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow {
  box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
}

@media (max-width: 992px) {
  body {
    padding-top: 4rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-bar-content {
    justify-content: center;
    gap: 1rem;
  }
  
  .navbar-custom {
    margin-top: 2rem;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .py-section {
    padding: 4rem 0;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.375rem; }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .btn-cta {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .stat-badge {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item {
    height: 250px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  
  .chatbot-window {
    width: 300px;
    height: 450px;
  }
  
  .hero-text-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .page-hero .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .top-contact-bar {
    display: none;
  }
  
  body {
    padding-top: 3rem;
  }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.375rem; }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 1.375rem;
  }
  
  .impact-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-cta {
    width: 100%;
  }
  
  .hero-cta-buttons .btn-cta {
    padding: 0.85rem 1.5rem !important;
  }
  
  .contact-bar-content {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .social-links-top {
    justify-content: center;
  }
  
  .chatbot-widget {
    bottom: 20px;
    left: 20px;
  }
  
  .chatbot-window {
    width: 280px;
    height: 400px;
  }
  
  .navbar-custom {
    margin-top: 0;
  }
  
  .page-hero {
    min-height: 50vh;
  }
  
  .page-hero h1 {
    font-size: 1.75rem;
  }
  
  .page-hero .lead {
    font-size: 1rem;
  }
}

/* Print Styles */
/* Page Hero for Internal Pages */
.page-hero {
    background: linear-gradient(135deg, rgba(29, 122, 78, 0.9) 0%, rgba(45, 159, 102, 0.8) 100%);
    color: var(--bg-white);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Enhanced Story Section */
.story-content {
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.achievement-stats {
    background: var(--accent-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.achievement-item {
    padding: 1rem;
}

.achievement-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.achievement-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Enhanced Value Cards */
.value-card-enhanced {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.value-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.value-icon-enhanced {
    width: 80px;
    height: 80px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card-enhanced:hover .value-icon-enhanced {
    background: var(--primary-green);
    color: var(--bg-white);
    transform: scale(1.1);
}

.value-title {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-description {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Team Cards */
.team-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

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

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

.team-content {
    padding: 2rem;
    text-align: center;
}

.team-name {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-description {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin: 0 auto 1.5rem;
}

.partner-item h5 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.partner-item p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Program Page Styles */
.program-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.program-image {
    width: 100%;
    height: auto;
    display: block;
}

.program-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-gold);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.program-icon-large {
    width: 80px;
    height: 80px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.program-title {
    margin-bottom: 0;
    color: var(--text-dark);
}

.program-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.program-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.program-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--accent-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.program-feature:hover {
    background: var(--primary-green);
    color: var(--bg-white);
}

.program-feature:hover i,
.program-feature:hover span {
    color: var(--bg-white);
}

.program-feature i {
    color: var(--primary-green);
    font-size: 1rem;
    flex-shrink: 0;
}

.program-feature span {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.program-impact {
    background: var(--accent-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.impact-stat {
    display: flex;
    flex-direction: column;
}

.impact-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.impact-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Alternative Program Cards */
.program-card-alt {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.program-card-alt:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.program-card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.program-card-alt:hover .program-card-icon {
    background: var(--primary-green);
    color: var(--bg-white);
}

.program-card-alt h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.program-card-alt p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.program-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric {
    background: var(--accent-light);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Partner Cards */
.partner-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-green);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-icon {
    background: var(--primary-green);
    color: var(--bg-white);
}

.partner-title {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.partner-description {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-green);
    color: var(--bg-white);
    border-color: var(--primary-green);
}

/* Enhanced Gallery Grid */
.gallery-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item-enhanced {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-enhanced:hover img {
    transform: scale(1.1);
}

.gallery-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(29, 122, 78, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-enhanced:hover .gallery-overlay-enhanced {
    opacity: 1;
}

.gallery-content {
    color: var(--bg-white);
}

.gallery-title {
    margin-bottom: 0.5rem;
    color: var(--bg-white);
}

.gallery-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.gallery-category {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Gallery Stats */
.gallery-stat {
    padding: 2rem;
}

.gallery-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.gallery-stat .stat-label {
    font-weight: 600;
    color: var(--text-dark);
}

/* Video Cards */
.video-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-card:hover .video-play-btn {
    background: var(--primary-green);
    color: var(--bg-white);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 1.5rem;
}

.video-title {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.video-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.video-duration {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Sections */
.cta-title {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

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

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

/* Vision & Mission Highlights */
.vm-highlights {
    margin-top: 1.5rem;
}

.vm-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.vm-highlight-item i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.vm-highlight-item span {
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .program-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .impact-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .program-features {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}