/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    min-height: 100vh;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Header Styles */
  .header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #dcfce7;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #166534;
  }
  
  .nav {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #16a34a;
  }
  
  .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #16a34a;
  }
  
  /* Button Styles */
  .btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
  }
  
  .btn-primary {
    background: #16a34a;
    color: white;
  }
  
  .btn-primary:hover {
    background: #15803d;
  }
  
  .btn-white {
    background: white;
    color: #16a34a;
  }
  
  .btn-white:hover {
    background: #f9fafb;
  }
  
  .btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid white;
  }
  
  .btn-outline-white:hover {
    background: white;
    color: #16a34a;
  }
  
  /* Hero Section */
  .hero {
    padding: 4rem 0;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #166534;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #dcfce7;
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #16a34a;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
  }
  
  .hero-image {
    position: relative;
  }
  
  .hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  /* Section Styles */
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #166534;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
  }
  
  /* Vision Mission Section */
  .vision-mission {
    padding: 4rem 0;
    background: white;
  }
  
  .vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .vm-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #dcfce7;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  }
  
  .vm-icon {
    width: 4rem;
    height: 4rem;
    background: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .vm-icon i {
    font-size: 1.5rem;
    color: white;
  }
  
  .vm-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #166534;
    margin-bottom: 1rem;
  }
  
  .vm-description {
    color: #6b7280;
    line-height: 1.7;
  }
  
  .vm-list {
    list-style: none;
    color: #6b7280;
  }
  
  .vm-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
  }
  
  .vm-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
  }
  
  /* Programs Section */
  .programs {
    padding: 4rem 0;
  }
  
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .program-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #dcfce7;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .program-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .program-card.featured {
    border: 2px solid #16a34a;
    transform: scale(1.05);
  }
  
  .program-badge {
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    background: #16a34a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .program-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .program-icon i {
    font-size: 1.5rem;
    color: white;
  }
  
  .program-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #166534;
    margin-bottom: 1rem;
  }
  
  .program-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .program-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
  }
  
  .feature-item i {
    color: #16a34a;
    font-size: 0.75rem;
  }
  
  /* Team Section */
  .team {
    padding: 4rem 0;
    background: white;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .team-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #dcfce7;
    transition: all 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .team-image {
    margin-bottom: 1.5rem;
  }
  
  .team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #16a34a;
  }
  
  .team-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #166534;
    margin-bottom: 0.5rem;
  }
  
  .team-role {
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .team-experience {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .skill-tag {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 4rem 0;
  }
  
  .testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
  }
  
  .testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .testimonial-card {
    min-width: 100%;
    padding: 2rem;
  }
  
  .testimonial-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #dcfce7;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    justify-content: center;
  }
  
  .testimonial-stars i {
    color: #fbbf24;
    font-size: 1.25rem;
  }
  
  .testimonial-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
  }
  
  .author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-name {
    font-weight: bold;
    color: #166534;
    margin-bottom: 0.25rem;
  }
  
  .author-role {
    color: #6b7280;
    font-size: 0.875rem;
  }
  
  .testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .nav-btn {
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: #16a34a;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-btn:hover {
    background: #15803d;
    transform: scale(1.1);
  }
  
  .nav-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
  }
  
  /* Timeline Section */
  .timeline {
    padding: 4rem 0;
    background: white;
  }
  
  .timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .timeline-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dcfce7;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .timeline-item:nth-child(odd) {
    flex-direction: row;
  }
  
  .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .timeline-year {
    width: 100px;
    height: 100px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }
  
  .timeline-content {
    flex: 1;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border-radius: 1rem;
    border: 1px solid #dcfce7;
    margin: 0 2rem;
    position: relative;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #f0fdf4;
  }
  
  .timeline-item:nth-child(even) .timeline-content::before {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #f0fdf4;
  }
  
  .timeline-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #166534;
    margin-bottom: 0.5rem;
  }
  
  .timeline-description {
    color: #6b7280;
    line-height: 1.6;
  }
  
  /* CTA Section */
  .cta-section {
    background: #16a34a;
    color: white;
    padding: 4rem 1rem;
    text-align: center;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .header-left {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  
    .nav {
      display: none;
    }
  
    .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  
    .vm-grid {
      grid-template-columns: 1fr;
    }
  
    .programs-grid {
      grid-template-columns: 1fr;
    }
  
    .program-card.featured {
      transform: none;
    }
  
    .team-grid {
      grid-template-columns: 1fr;
    }
  
    .timeline-container::before {
      left: 30px;
    }
  
    .timeline-item {
      flex-direction: row !important;
      padding-left: 80px;
    }
  
    .timeline-year {
      position: absolute;
      left: 0;
      width: 60px;
      height: 60px;
      font-size: 1rem;
    }
  
    .timeline-content {
      margin: 0;
    }
  
    .timeline-item .timeline-content::before {
      left: -10px !important;
      right: auto !important;
      border-right: 10px solid #f0fdf4 !important;
      border-left: none !important;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .cta-title {
      font-size: 2rem;
    }
  
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 0.5rem;
    }
  
    .hero-stats {
      grid-template-columns: 1fr;
    }
  
    .stat-item {
      padding: 0.75rem;
    }
  
    .vm-card,
    .program-card,
    .team-card {
      padding: 1.5rem;
    }
  
    .testimonial-content {
      padding: 1.5rem;
    }
  }
  