
    .about-intro {
    padding: 3rem 1.5rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
  }
  
  .about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }
  
  .about-intro h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0 4rem;
  }
  
  .mission-box, .vision-box {
    flex: 1 1 300px;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--box-shadow);
    background-color: var(--card-bg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .mission-box:hover, .vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--box-shadow);
  }
  
  .mission-box h3, .vision-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .mission-box h3:after, .vision-box h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .mission-box p, .vision-box p {
    color: var(--text-body);
    line-height: 1.6;
  }
  
  .mission-box:before, .vision-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
  }
  
  .key-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 1rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 1200px;
  }
  
  .stat-box {
    flex: 1 1 200px;
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--card-bg);
    box-shadow: 0 4px 10px var(--box-shadow);
    transition: transform 0.3s ease;
  }
  
  .stat-box:hover {
    transform: translateY(-5px);
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
    color: var(--text-body);
  }
  
  /* Hero Section Enhancements */
  .hero {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 1rem auto 3rem;
    max-width: 1400px;
  }
  /* Responsive Video Container */
.video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* Media queries for better responsiveness */
@media (max-width: 768px) {
  /* Maintain aspect ratio but ensure it's not too small on mobile */
  .hero-video{
    width: 400px;
  }
  .video-responsive {
    padding-bottom: 56.25%; /* 16:9 ratio */
    min-height: 200px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  /* Medium devices */
  .hero-video{
    width: 500px;
  }
  .hero-content {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (min-width: 1201px) {
  /* Large devices */
  .hero-video{
    width: 700px;
  }
  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
  }
}
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .hero-content {
      flex-direction: row;
      align-items: stretch;
    }

    .hero-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  }
  
  .hero-text {
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 0 0 12px 12px;
  }
  
  @media (min-width: 768px) {
    .hero-text {
      border-radius: 0 12px 12px 0;
    }
  }
  
  .hero-text h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
  }
  
  .hero-text p {
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    background-color: rgba(var(--button-bg), 0.9);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
  }
  
  .cta-button:hover {
    background-color: var(--button-bg-hover);
    transform: translateY(-2px);
  }
  
  /* Timeline Enhancements */
  .timeline-container {
    position: relative;
    padding: 2rem 0;
  }
  
  .timeline-center-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
  }
  
  @media (max-width: 768px) {
    .timeline-center-line {
      left: 30px;
    }
  }
  /* Impact Stories Section  */
  @keyframes moveDown {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    50% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(100%);
      opacity: 0;
    }
  }

  .svg-container {
    height: 100px;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .svg-container svg {
    animation: moveDown 3s infinite linear;
  }
   

  /* Section Headings */
  .section-title {
    text-align: center;
    margin: 3rem 0 2rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .section-title h3 {
    font-size: 2rem;
    color: var(--text-primary);
    display: inline-block;
  }
  
  .section-title h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  /* Animation for elements */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
  }
  
  /* Responsive adjustments */
  @media (max-width: 576px) {
    .about-intro h2 {
      font-size: 1.8rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
    
    .section-title h3 {
      font-size: 1.7rem;
    }
  }