  .testmonials {
      padding: 50px 0;
    }
    /* Success Stories Section Styles - preserving existing tag-based styling and font family */
    .success-stories-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #fef9e8 0%, #fff5e6 100%);
    }
    .success-stories-title {
      font-family: inherit;
      margin-bottom: 20px;
    }
    .success-stories-subtitle {
      font-family: inherit;
      color: #b502ac;
      letter-spacing: 1px;
    }
    .success-story-card-custom {
      background: white;
      border-radius: 20px;
      padding: 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .success-story-card-custom:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .story-icon {
      width: 70px;
      height: 70px;
      background: #f5a62320;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .story-icon i {
      font-size: 32px;
      color: #f5a623;
    }
    .story-quote {
      font-size: 1rem;
      line-height: 1.6;
      color: #4a5568;
      margin-bottom: 20px;
      font-style: italic;
    }
    .student-name {
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 5px;
    }
    .student-grade {
      font-size: 0.85rem;
      color: #f5a623;
    }
    .stats-badge {
      background: white;
      border-radius: 16px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      transition: all 0.3s;
    }
    .stats-badge:hover {
      transform: translateY(-5px);
    }
    .stats-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: #b502ac;
      font-family: inherit;
    }
    .mission-quote {
      background: #2d6a4f;
      border-radius: 30px;
      padding: 40px;
      color: white;
      margin-top: 50px;
    }
    @media (max-width: 768px) {
      .success-stories-section {
        padding: 50px 0;
      }
      .success-story-card-custom {
        padding: 20px;
      }
      .stats-number {
        font-size: 1.8rem;
      }
      .mission-quote {
        padding: 25px;
      }
    }
    .pe-lg-4{text-align:justify;}
    /* Make all cards same height */
.stats-badge {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}