.page-hero {
      width: 100%;
      min-height: 55vh;
      background: linear-gradient(160deg, #0a2415 0%, #0f381e 40%, #14522d 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 2rem 5rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      top: -20%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
      border-radius: 55% 45% 60% 40% / 45% 55% 40% 60%;
      pointer-events: none;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      bottom: -15%;
      left: -8%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
      border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
      pointer-events: none;
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-hero-content .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.8rem;
      color: #a0c89a;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    .page-hero-content .breadcrumb a {
      color: #a0c89a;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-hero-content .breadcrumb a:hover {
      color: #d4f0c8;
    }

    .page-hero-content .breadcrumb i {
      font-size: 0.5rem;
    }

    .page-hero-content .service-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      color: #b5f0a0;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      margin-bottom: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .page-hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.2;
      letter-spacing: -1px;
      margin-bottom: 1.5rem;
    }

    .page-hero-content .hero-subtitle {
      font-size: 1.15rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.78);
      max-width: 600px;
      margin: 0 auto;
    }

    /* ============================================ */
    /* ========== MAIN CONTENT AREA ========== */
    /* ============================================ */
    .service-content {
      width: 100%;
      padding: 6rem 4rem;
      background: #ffffff;
    }

    .content-inner {
      max-width: 1300px;
      margin: 0 auto;
    }

    /* ----- Overview Section ----- */
    .overview-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-bottom: 6rem;
    }

    .overview-text .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf7e8;
      color: #125228;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.4rem 1.4rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      border: 1px solid #cbe5c3;
    }

    .overview-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      color: #0f2818;
      line-height: 1.3;
      margin-bottom: 1.2rem;
      letter-spacing: -0.5px;
    }

    .overview-text .lead-paragraph {
      font-size: 1.12rem;
      line-height: 1.8;
      color: #3d5140;
      font-weight: 500;
      margin-bottom: 1.2rem;
      border-left: 4px solid #1a6832;
      padding-left: 1.5rem;
    }

    .overview-text p {
      font-size: 0.98rem;
      line-height: 1.8;
      color: #4a5b47;
      margin-bottom: 1rem;
    }

    

    /* ----- Process / How It Works ----- */
    .process-section {
      margin-bottom: 6rem;
    }

    .process-section .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf7e8;
      color: #125228;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.4rem 1.4rem;
      border-radius: 50px;
      margin-bottom: 1rem;
      border: 1px solid #cbe5c3;
    }

    .process-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 3rem;
      letter-spacing: -0.5px;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.8rem;
    }

    .process-step {
      text-align: center;
      position: relative;
    }

    .process-step:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 35px;
      right: -40%;
      width: 80%;
      height: 2px;
      background: linear-gradient(90deg, #cbe5c3, #e8f2e4);
      z-index: 1;
    }

    .step-number {
      width: 70px;
      height: 70px;
      border-radius: 22px 6px 22px 6px;
      background: linear-gradient(135deg, #0f381e 0%, #1a5e32 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f4ffe8;
      font-size: 1.6rem;
      font-weight: 800;
      margin: 0 auto 1.5rem auto;
      position: relative;
      z-index: 2;
      box-shadow: 0 10px 24px rgba(26, 104, 50, 0.3);
      font-family: 'Playfair Display', serif;
    }

    .process-step h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 0.5rem;
    }

    .process-step p {
      font-size: 0.85rem;
      color: #5b6b55;
      line-height: 1.6;
    }

    /* ----- Key Advantages Grid ----- */
.advantages-section {
  margin-bottom: 6rem;
  width: 100%;
  overflow: hidden; /* Prevent any overflow */
}

.advantages-section .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ebf7e8;
  color: #125228;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid #cbe5c3;
}

.advantages-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #0f2818;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 100%;
}

.advantage-card {
  background: #ffffff;
  border-radius: 1.8rem 0.5rem 1.8rem 0.5rem;
  padding: 2.2rem 1.8rem;
  border: 1px solid #eef5ea;
  box-shadow: 0 8px 24px -8px rgba(15, 40, 20, 0.06);
  transition: all 0.35s ease;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(15, 55, 25, 0.18);
  border-color: #d4e8cc;
}

.advantage-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px 5px 18px 5px;
  background: #f4faf2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  color: #1a6832;
  font-size: 1.4rem;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.advantage-card:hover .advantage-icon {
  background: #1a6832;
  color: #ffffff;
  border-radius: 5px 20px 5px 20px;
  box-shadow: 0 10px 22px rgba(26, 104, 50, 0.35);
}

.advantage-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f2818;
  margin-bottom: 0.5rem;
}

.advantage-card p {
  font-size: 0.88rem;
  color: #5b6b55;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ========== FIXED RESPONSIVE BREAKPOINTS ========== */
@media (max-width: 1000px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .advantage-card {
    padding: 1.8rem 1.4rem;
  }
}

@media (max-width: 650px) {
  .advantages-section {
    margin-bottom: 4rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .advantage-card {
    padding: 1.6rem 1.3rem;
    border-radius: 1.5rem 0.4rem 1.5rem 0.4rem;
  }

  .advantage-card h4 {
    font-size: 1rem;
  }

  .advantage-card p {
    font-size: 0.85rem;
  }

  .advantage-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) {
  .advantages-grid {
    gap: 1rem;
  }

  .advantage-card {
    padding: 1.4rem 1.1rem;
  }
}
    




    /* ----- CTA Banner ----- */
    .cta-banner {
      background: linear-gradient(135deg, #0a3319 0%, #14522d 50%, #1a5e32 100%);
      border-radius: 2.5rem 0.8rem 2.5rem 0.8rem;
      padding: 4rem 3rem;
      text-align: center;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: "";
      position: absolute;
      top: -30%;
      right: -10%;
      width: 350px;
      height: 350px;
      background: rgba(255,255,255,0.03);
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-banner h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      z-index: 2;
    }

    .cta-banner p {
      font-size: 1rem;
      color: #c5e6ba;
      margin-bottom: 2rem;
      position: relative;
      z-index: 2;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-buttons {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: #ffffff;
      color: #0f381e;
      font-weight: 700;
      font-size: 0.93rem;
      text-decoration: none;
      padding: 0.95rem 2.2rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .btn-white:hover {
      background: #e8fce0;
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.3);
    }

    .btn-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: transparent;
      color: #ffffff;
      font-weight: 600;
      font-size: 0.93rem;
      text-decoration: none;
      padding: 0.95rem 2.2rem;
      border-radius: 50px;
      border: 2px solid rgba(255,255,255,0.5);
      transition: all 0.3s ease;
    }

    .btn-outline-white:hover {
      background: rgba(255,255,255,0.08);
      border-color: #ffffff;
      transform: translateY(-3px);
    }

    /* ============================================ */
    /* ========== RESPONSIVE ========== */
    /* ============================================ */
    @media (max-width: 1000px) {
      .service-content {
        padding: 4rem 2.5rem;
      }

      .overview-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .overview-image {
        height: 350px;
        order: -1;
      }

      .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .process-step:not(:last-child)::after {
        display: none;
      }

      .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 650px) {
      .page-hero {
        min-height: 45vh;
        padding: 120px 1.2rem 4rem 1.2rem;
      }

      .service-content {
        padding: 3rem 1.5rem;
      }

      .overview-image {
        height: 280px;
        border-radius: 1.8rem 0.5rem 1.8rem 0.5rem;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

      .advantages-grid {
        grid-template-columns: 1fr;
      }

      .cta-banner {
        padding: 2.5rem 1.5rem;
        border-radius: 1.8rem 0.5rem 1.8rem 0.5rem;
      }

      .cta-buttons {
        flex-direction: column;
      }

      .btn-white,
      .btn-outline-white {
        justify-content: center;
      }
    }

    @media (max-width: 400px) {
      .service-content {
        padding: 2.5rem 1rem;
      }

      .page-hero-content h1 {
        font-size: 1.8rem;
      }
    }


    /*Outside CSS*/

    /* ----- Stats Row ----- */
    .stats-row-crops {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-bottom: 6rem;
    }

    .stat-card-crops {
      text-align: center;
      padding: 2rem 1.5rem;
      background: #f9fdf7;
      border-radius: 1.5rem 0.4rem 1.5rem 0.4rem;
      border: 1px solid #e8f2e4;
      transition: all 0.35s ease;
    }

    .stat-card-crops:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px -10px rgba(15, 40, 20, 0.12);
      border-color: #cbe5c3;
    }

    .stat-card-crops .stat-icon-crops {
      font-size: 2rem;
      color: #1a6832;
      margin-bottom: 0.8rem;
    }

    .stat-card-crops .stat-number-crops {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: #0f2818;
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .stat-card-crops .stat-label-crops {
      font-size: 0.85rem;
      color: #5b6b55;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

      @media (max-width: 1000px) {   

.stats-row-crops {
        grid-template-columns: repeat(2, 1fr);
      }

       }

       @media (max-width: 650px) {

.stats-row-crops {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .stat-card-crops {
        padding: 1.5rem 1rem;
      }

      .stat-card-crops .stat-number-crops {
        font-size: 1.8rem;
      }
       }

       @media (max-width: 400px) {
      .service-content {
        padding: 2.5rem 1rem;
      }

      

      .stats-row-crops {
        grid-template-columns: 1fr;
      }
    }

     /* ----- Training Programs Grid ----- */
    .training-programs-section {
      margin-bottom: 6rem;
    }

    .training-programs-section .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf7e8;
      color: #125228;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.4rem 1.4rem;
      border-radius: 50px;
      margin-bottom: 1rem;
      border: 1px solid #cbe5c3;
    }

    .training-programs-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 3rem;
      letter-spacing: -0.5px;
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .program-card {
      background: #ffffff;
      border-radius: 1.8rem 0.5rem 1.8rem 0.5rem;
      padding: 2.5rem 2rem 2.2rem 2rem;
      border: 1px solid #eef5ea;
      box-shadow: 0 8px 24px -8px rgba(15, 40, 20, 0.06);
      transition: all 0.35s ease;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .program-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px -12px rgba(15, 55, 25, 0.18);
      border-color: #d4e8cc;
    }

    .program-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #1a6832, #5aad4e, #1a6832);
      opacity: 0;
      transform: scaleX(0.3);
      transform-origin: center;
      transition: all 0.5s ease;
    }

    .program-card:hover::before {
      opacity: 1;
      transform: scaleX(1);
    }

    .program-icon {
      width: 65px;
      height: 65px;
      border-radius: 20px 6px 20px 6px;
      background: #f4faf2;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.3rem auto;
      color: #1a6832;
      font-size: 1.5rem;
      transition: all 0.35s ease;
    }

    .program-card:hover .program-icon {
      background: #1a6832;
      color: #ffffff;
      border-radius: 6px 22px 6px 22px;
      box-shadow: 0 10px 22px rgba(26, 104, 50, 0.35);
    }

    .program-card h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 0.5rem;
    }

    .program-card .program-duration {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      color: #1a6832;
      background: #f4faf2;
      padding: 0.3rem 1rem;
      border-radius: 50px;
      margin-bottom: 0.8rem;
      letter-spacing: 0.5px;
    }

    .program-card p {
      font-size: 0.88rem;
      color: #5b6b55;
      line-height: 1.6;
    }

    /* ----- Process / How It Works ----- */
    .process-section {
      margin-bottom: 6rem;
    }

    .process-section .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf7e8;
      color: #125228;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.4rem 1.4rem;
      border-radius: 50px;
      margin-bottom: 1rem;
      border: 1px solid #cbe5c3;
    }

    .process-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 3rem;
      letter-spacing: -0.5px;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.8rem;
    }

    .process-step {
      text-align: center;
      position: relative;
    }

    .process-step:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 35px;
      right: -40%;
      width: 80%;
      height: 2px;
      background: linear-gradient(90deg, #cbe5c3, #e8f2e4);
      z-index: 1;
    }

    .step-number {
      width: 70px;
      height: 70px;
      border-radius: 22px 6px 22px 6px;
      background: linear-gradient(135deg, #0f381e 0%, #1a5e32 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f4ffe8;
      font-size: 1.6rem;
      font-weight: 800;
      margin: 0 auto 1.5rem auto;
      position: relative;
      z-index: 2;
      box-shadow: 0 10px 24px rgba(26, 104, 50, 0.3);
      font-family: 'Playfair Display', serif;
    }

    .process-step h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 0.5rem;
    }

    .process-step p {
      font-size: 0.85rem;
      color: #5b6b55;
      line-height: 1.6;
    }


 @media (max-width: 1000px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .process-step:not(:last-child)::after {
        display: none;
      }

      .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 650px) {

      .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

    }