
  .zoom-hover {
     transition: transform 0.4s ease, box-shadow 0.4s ease;
     cursor: pointer;
  }

  .zoom-hover:hover {
     transform: scale(1.05);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .fade-in {
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 1s ease forwards;
  }

  @keyframes fadeInUp {
     to {
        opacity: 1;
        transform: translateY(0);
     }
  }
  img {
     image-rendering: auto;
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
     -webkit-transform: translateZ(0);
     transform: translateZ(0);
  }

  .why-choose-us-section {
     /* background: linear-gradient(135deg, #1e3c72, #2a5298);  Deep blue gradient */
	 /* background: linear-gradient(to right, #83a4d4, #b6fbff); */
	 background: linear-gradient(to right, #43cea2, #185a9d);
     color: white;
  }

  .white-card i {
     font-size: 3rem;
  }

  .white-card {
     background-color: white;
     color: #333;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border-radius: 16px;
  }

  .white-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }


  .why-card h5 {
     font-weight: bold;
     margin-bottom: 10px;
  }
  
  .mission-vision-section {
    /* background: linear-gradient(to right, #e0eafc, #cfdef3);  soft blue gradient */
     padding: 60px 20px;
     border-radius: 15px;
  }

  .mission-card {
     background-color: white;
     border-radius: 15px;
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .mission-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .mission-img {
     height: 250px;
     object-fit: cover;
  }

  .fade-in-up {
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 1s ease forwards;
  }

  @keyframes fadeInUp {
     to {
        opacity: 1;
        transform: translateY(0);
     }
  }
  
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  img {
    transition: transform 0.5s ease;
  }
  img:hover {
    transform: scale(1.02);
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
  }

  .section-description {
	font-family: "Poppins", sans-serif;
    font-size: 1rem !important;
    font-weight: 400;
  }

