/* ----- RESET & BASE ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--light);
      color: var(--text);
      line-height: 1.6;
      position: relative;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1.2rem;
    }

    h2 {
      font-size: 2.2rem;
      position: relative;
      padding-bottom: 0.8rem;
    }

    h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 70px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
    }

    p {
      margin-bottom: 1.2rem;
      font-size: 1.1rem;
      color: var(--text-light);
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    ul {
      padding-left: 1.8rem;
      margin-bottom: 1.5rem;
    }

    li {
      margin-bottom: 0.8rem;
    }

    section {
      padding: 5rem 0;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .btn {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 0.8rem 1.8rem;
      border-radius: var(--border-radius);
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: var(--transition);
      border: 2px solid var(--primary);
      font-size: 0.95rem;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
    }

    .btn:hover {
      background: transparent;
      color: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
    }

    .btn-outline {
      background: transparent;
      color: var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: white;
    }

    .btn-accent {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--text);
    }

    .btn-accent:hover {
      color: var(--text);
      background: #ffcc00;
    }


    
    /* ----- BANNER SLIDER ----- */
    .banner-slider {
      position: relative;
      width: 100%;
      height: 600px;
      overflow: hidden;
      border-bottom: 4px solid var(--accent);
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .slide:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .slide-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 2rem;
    }

    .slide-content h1 {
      font-size: 3.2rem;
      margin-bottom: 1.5rem;
      color: white;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 0.8s ease;
    }

    .slide-content p {
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2.5rem;
      text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 0.8s ease 0.2s forwards;
      opacity: 0;
    }

    .slider-indicators {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .indicator {
      width: 14px;
      height: 14px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      cursor: pointer;
      transition: var(--transition);
    }

    .indicator.active {
      background: var(--accent);
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ----- SECTION STYLES ----- */
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .section-header h2:after {
      left: 50%;
      transform: translateX(-50%);
    }

    .section-header p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.2rem;
      color: var(--text-light);
    }

    /* WHY EDUCATION MATTERS */
    .why-education {
      background: linear-gradient(to bottom, #fdfcce 0%, #fff 100%);
      position: relative;
      overflow: hidden;
    }

    .why-education:before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: rgb(255, 218, 9);
      opacity: 0.09;
      border-radius: 50%;
      z-index: 0;
    }

    .why-education:after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -100px;
      width: 400px;
      height: 400px;
      background:  rgb(255, 218, 9);
      opacity: 0.09;
      border-radius: 50%;
      z-index: 0;
    }

    .why-education .content {
      background: white;
      padding: 2.5rem;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      position: relative;
      z-index: 1;
      max-width: 1000px;
      margin: 0 auto;
    }

    /* PROGRAMS SECTION */
    .programs-section {
      background: white;
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .program-card {
      background: white;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border-top: 4px solid var(--primary);
      height: 100%;
      position: relative;
    }

    .program-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .program-content {
      padding: 1.8rem;
    }

    .program-card h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .program-card h3 i {
      color: var(--accent);
      background: rgba(255, 214, 0, 0.15);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .program-card p {
      font-size: 1rem;
      color: var(--text-light);
    }

    /* VOLUNTEER SECTION */
    .volunteer-section {
      background: linear-gradient(rgba(0, 167, 11, 0.95), rgba(27, 94, 32, 0.95)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3') center/cover;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .volunteer-section h2 {
      color: white;
    }

    .volunteer-section h2:after {
      background: white;
    }

    .volunteer-section p {
      color: rgba(255, 255, 255, 0.9);
      max-width: 800px;
      margin: 0 auto 2.5rem;
    }

    .volunteer-section:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background: white;
    }
    /* =======================
   MENTORING PROGRAMS SECTION
   ======================= */
.mentoring-section {
  background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.mentoring-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 0;
}

.mentoring-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.mentoring-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.mentoring-section .section-header h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.mentoring-section .section-header h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.mentoring-section .section-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.mentoring-section .content {
  background: var(--glass-bg);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 1000px;
  margin: 2rem auto 3rem;
  border: 1px solid rgba(138, 255, 95, 0.3);
}

.mentoring-section .content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.mentoring-section .btn {
  display: inline-block;
  background: var(--green-accent);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--green-accent);
  box-shadow: 0 4px 15px rgba(74, 124, 59, 0.3);
}

.mentoring-section .btn:hover {
  background: transparent;
  color: var(--green-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 124, 59, 0.4);
}

/* Slider Container (already in your code but enhanced) */
.mentoring-section .slider-container {
  background: linear-gradient(90deg, #f0fff4 0%, #e6fffa 100%);
  border-radius: 20px;
  margin-top: 3rem;
  border: 1px solid rgba(138, 255, 95, 0.3);
}

.mentoring-section .slider-track img {
  border: 3px solid white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mentoring-section .slider-track img:hover {
  transform: scale(1.08) rotate(1deg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

/* =======================
   RESPONSIVE ADJUSTMENTS
   ======================= */
@media (max-width: 768px) {
  .mentoring-section {
    padding: 3rem 1rem;
  }
  
  .mentoring-section .section-header h2 {
    font-size: 1.8rem;
  }
  
  .mentoring-section .content {
    padding: 1.5rem;
  }
  
  .mentoring-section .slider-track img {
    width: 260px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .mentoring-section .section-header p,
  .mentoring-section .content p {
    font-size: 1rem;
  }
  
  .mentoring-section .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

    /* Image Slider */
    .slider-container {
      width: 100%;
      margin: 3rem auto;
      background: linear-gradient(to right, var(--light-alt) 0%, white 100%);
      padding: 2.5em 0;
      overflow: hidden;
      position: relative;
      z-index: 2;
      border-radius: var(--border-radius);
      border: 1px solid rgba(46, 125, 50, 0.1);
    }

    .slider-track {
      display: flex;
      gap: 1.2em;
      width: max-content;
      animation: slide 35s linear infinite;
      align-items: center;
      padding: 0 1em;
    }

    .slider-track img {
      width: 300px;
      height: 200px;
      object-fit: cover;
      border-radius: var(--border-radius);
      box-shadow: 0 4px 24px rgba(14,165,233,0.08);
      filter: grayscale(0.08) contrast(1.07) brightness(1.06);
      transition: transform 0.4s, filter 0.4s;
      border: 3px solid white;
    }

    .slider-track img:hover {
      transform: scale(1.05) rotate(-1deg);
      filter: grayscale(0) contrast(1.2) brightness(1.13);
      z-index: 2;
    }

    @keyframes slide {
      0% { transform: translateX(0);}
      100% { transform: translateX(-1800px);}
    }
/* =======================
   TRAINING CAMPS SECTION
   ======================= */
.training-section {
  background: linear-gradient(135deg, #f0fdfa 40%, #e0e7ff 100%);
  padding: 5rem 0;
  position: relative;
}

.training-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.training-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.training-section .section-header h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.training-section .section-header h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.training-section .section-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: var(--text-light);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.image-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(138, 255, 95, 0.23);
  position: relative;
  height: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(138, 255, 95, 0.3);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-card:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-card:hover .image-overlay {
  opacity: 1;
}

.training-description {
  background: var(--glass-bg);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 2rem auto 0;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  border: 1px solid rgba(138, 255, 95, 0.3);
}

/* =======================
   HIGHLIGHT SECTION
   ======================= */
.highlight-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f0fdfa 0%, #ffffff 100%);
}

.highlight-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.highlight-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.highlight-section .section-header h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.highlight-section .section-header h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.highlight-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.highlight-box {
  background: var(--glass-bg);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-top: 4px solid var(--green-main);
}

.highlight-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px var(--blue-shadow);
}

.highlight-box h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.highlight-box h3 i {
  color: var(--green-accent);
  font-size: 1.8rem;
}

.highlight-box ul {
  list-style-type: none;
  padding-left: 0;
}

.highlight-box li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.highlight-box li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-accent);
  font-weight: bold;
}

.highlight-section p {
  background: var(--glass-bg);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  border-left: 4px solid var(--green-main);
}

/* =======================
   RESPONSIVE ADJUSTMENTS
   ======================= */
@media (max-width: 1100px) {
  .highlight-container {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto 3rem;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 3rem auto;
  }
}

@media (max-width: 700px) {
  .training-section,
  .highlight-section {
    padding: 3rem 1rem;
  }
  
  .training-section .section-header h2,
  .highlight-section .section-header h2 {
    font-size: 1.8rem;
  }
  
  .training-description,
  .highlight-section p {
    padding: 1.5rem;
  }
  
  .highlight-box {
    padding: 1.5rem;
  }
}
a.btn.btn-outline {
  color: yellow;
}
