/*───────────── BASIC ───────────── */
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

/*───────────── BASIC END ───────────── */
.slider {
      width: 350px;   /* smaller container */
      text-align: center;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
      background: white;
      margin: 50px auto; /* centers horizontally */
    }

    .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
    
    }

    .slide {
      min-width: 100%;
      padding: 10px; /* smaller padding */
    }

    .slide img {
      width: 100%;       /* image fits container width */
      height: 350px;     /* fixed height */
      object-fit: cover;
      border-radius: 12px;
      padding: 30px;
      border-radius: 40px;
    }

    .info {
      margin-top: 10px;
    }

    .info h3 {
      font-size: 25px;  /* adjusted text size */
      margin-bottom: 4px;
    }

    .info p {
      font-size: 18px;
      color: #555;
    }

    /* Optional: responsive on mobile */
    @media (max-width: 786px) {
    .slider {
      width: 300px;   /* smaller container */
      text-align: center;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
      background: white;
      margin: 50px auto; /* centers horizontally */
    }
     .slide img {
      width: 100%;       /* image fits container width */
      height: 300px;     /* fixed height */
      object-fit: cover;
      border-radius: 12px;
      padding: 30px;
      border-radius: 40px;
    }
    }
      .achiver-heading h2 {
      font-size: 28px;
      font-weight: bold;
      color: #0096FF;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
    }

    .achiver-heading h2::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 4px;
      background-color: #0096FF;
      border-radius: 2px;
    }
    .achiver-heading {
  text-align: center; /* centers text + underline */
}