    .overlay {
        background-color: #00933b87;
        backdrop-filter: blur(10px) grayscale(1);
    }
   #admissionHiro{
        text-align: left!important;
        width: 100%;
        padding: 100px 20px;
        background-color: #f8f9fa;
        font-family: 'Zilla Slab','Zilla-fallback',serif;
        
        
    }
    .back-image{
         background:  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../IMG/cd6.jpg') no-repeat center center/cover;
    }

    .button-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-bottom: 50px;
    }

    .custom-button {
      background-color: #00933b;
      color: #000;
      padding: 20px 40px;
      font-size: 18px;
      font-weight: bold;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      width: 27%;
    }

    .custom-button::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 12px;
      width: 0%;
      height: 2px;
      background-color: #000;
      transition: width 0.3s ease;
    }

    .custom-button:hover::after {
      width: 100%;
    }

    .arrow {
      font-size: 20px;
      color: black;
      transition: transform 0.3s ease;
    }

    .custom-button:hover .arrow {
      transform: translateX(3px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .custom-button {
        font-size: 16px;
        padding: 16px 30px;
      }
    }

    @media (max-width: 480px) {
      .custom-button {
        width: 100%;
        justify-content: center;
      }
    }
    /* section student  */
     h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
      font-family: 'Zilla Slab', 'Zilla-fallback', serif;
      font-size: 50px;
      font-weight: bold;
    }

    .stories {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .card {
      background: #fff;
      border: 1px solid #ddd;
      max-width: 340px;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: auto;
    }

    .card-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .card h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .card p {
      font-size: 0.95rem;
      color: #444;
      margin-bottom: 20px;
    }

    .card a {
      text-decoration: none;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: #000;
      border: 1px solid #00933b;
      padding: 10px 20px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .card a:hover {
      text-decoration: underline;
    }

    .arrow {
      font-size: 1.1rem;
      color: black;
      transition: transform 0.2s;
    }

    .card a:hover .arrow {
      transform: translateX(3px);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .card {
        max-width: 90%;
      }
    }

    @media (max-width: 768px) {
      .stories {
        flex-direction: column;
        align-items: center;
      }

      .card {
        max-width: 100%;
      }
    }

    /* admission section */

     .admission-section {
      margin-bottom: 40px;
    }
    .admission-image {
      max-width: 100%;
      height: auto;
    }
    .admission-button {
      text-decoration: none;
      border: 1px solid #00933b;
      color: #000;
      padding: 12px 24px;
      display: inline-block;
      font-weight: 500;
      transition: 0.3s;
    }
    .admission-button:hover {
      text-decoration: underline;
      color: #000;
    }