/** Rating Start **/
    .stats-section {
      display: flex;
      flex-wrap: wrap;
      background-color: #189655;
      color: white;
      border-radius: 8px;
      margin: 40px auto;
      padding: 40px;
      max-width: 1200px;
      align-items: flex-start;
      justify-content: space-between;
      background-image: url('your-pattern-image.png');
      background-repeat: no-repeat;
      background-position: center;
    }
    .stats-left, .stats-box {
      flex: 1 1 300px;
      padding: 20px;
      box-sizing: border-box;
    }
    .stats-left h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .stats-left p {
      font-size: 16px;
      margin-bottom: 30px;
      line-height: 1.6;
    }
    .students-count {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .students-icon {
      width: 80px;
      height: 80px;
      background: #f0c52c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      transition: transform 0.5s ease;
    }
    .students-icon:hover {
      transform: rotateY(180deg);
    }
    .students-data {
      font-size: 28px;
      font-weight: bold;
    }
    .students-label {
      font-size: 16px;
      font-weight: normal;
    }
    .stats-box {
      background: white;
      border-radius: 30px;
      padding: 30px;
      color: black;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .rating, .passout {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .rating-icon, .passout-icon {
      width: 80px;
      height: 80px;
      min-width: 80px;
      min-height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 20px;
      border-radius: 12px;
    }
    .rating-icon {
      background: blue;
      color: white;
    }
    .passout-icon {
      background: #28a745;
      color: white;
    }
    .text-block h3 {
      margin: 0;
      font-size: 20px;
    }
    .text-block p {
      margin: 5px 0 0;
      font-size: 14px;
      color: #555;
    }

    .features-section {
      background: #edf7f3;
      padding: 40px 20px;
      text-align: center;
    }
    .features-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }
    .feature {
      display: flex;
      align-items: center;
      gap: 15px;
      max-width: 250px;
    }
    .feature-icon {
      background: #f0c52c;
      border-radius: 50%;
      width: 90px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      transition: transform 0.6s ease;
    }
    .feature-icon:hover {
      transform: rotateY(180deg);
    }
    .feature-text {
      text-align: left;
    }
    .feature-text strong {
      font-size: 16px;
      display: block;
    }

    @media (max-width: 768px) {
      .stats-section {
        flex-direction: column;
        padding: 20px;
      }
      .stats-box {
        margin-top: 20px;
      }
      .rating, .passout {
        flex-direction: row;
        align-items: flex-start;
      }
      .features-wrapper {
        flex-direction: column;
        align-items: center;
      }
    }
    /** Rating End **/



    /** Chose Us Start  **/
       

    .why-choose-section {
        text-align: center;
        padding: 50px 20px;
        background: #fdf6ec;
    }

    .why-choose-section h2 {
        font-size: 32px;
        margin-bottom: 10px;
        color: #d17d00;
    }

    .why-choose-section p.subtitle {
        color: #777;
        margin-bottom: 40px;
        font-size: 16px;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        max-width: 1100px;
        margin: auto;
    }

    .why-card {
        background: #fff;
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .why-icon {
        font-size: 40px;
        color: #ffa026;
        margin-bottom: 15px;
    }

    .why-card h4 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #333;
    }

    .why-card p {
        font-size: 15px;
        color: #555;
        line-height: 1.5;
    }

    @media (max-width: 600px) {
        .why-choose-section h2 {
            font-size: 26px;
        }
        .why-card {
            padding: 20px 15px;
        }
    }
    
    /** Chose Us End  **/
    


