  /* Banner section start */

  .image-banner {
    position: relative;
    margin-top: 4vh;
    width: 100%;
    height:95vh;
   
    overflow: hidden;
  }


.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;   /* 👈 ab image upar se hamesha safe rahegi */
  animation: zoomImage 10s infinite alternate ease-in-out;
  display: block;
}


  /* Dark Overlay for Text */
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
  }

  /* Heading Animation */
  .banner-heading {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideDown 2s forwards;
  text-shadow: 2px 2px 8px rgb(194, 154, 154); /* Cyan shadow */
}

/* Paragraph Animation */
.banner-text {
  font-size: 25px;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 2s 1s forwards;
    text-shadow: 2px 2px 8px rgb(194, 154, 154); /* Cyan shadow */
}



  /* 📌 Banner Section Responsive CSS */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .image-banner {
    height: 380px;
    margin-top: 70px;
  }

  .banner-heading {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .banner-text {
    font-size: 20px;
    max-width: 500px;
  }
}

/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {
  .image-banner {
    height: 300px;
    margin-top: 60px;
  }

  .banner-heading {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .banner-text {
    font-size: 18px;
    max-width: 90%;
  }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
  .image-banner {
    height: 220px;
    margin-top: 11vh;
  }

  .banner-heading {
    font-size: 20px;
    margin-bottom: 5px;
    line-height: 1.2;
    padding: 0 8px;
  }

  .banner-text {
    font-size: 14px;
    line-height: 1.4;
    max-width: 95%;
    padding: 0 10px;
  }
}
    /* Banner section end*/



      /* intro section start*/
.other-section {
    padding: 15px 10px;
    text-align: center;      
    background: white;
    border-radius: 12px;
    margin: 30px 0;
    display: flex;           
    flex-direction: column;
    align-items: center;     
    justify-content: center; 
}

.other-heading {
    font-size: 30px;
    width: 78%;       
    margin: 0 auto 15px auto; 
    font-weight: 500;
    color: #00a0e3;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeSlideDown 1.5s forwards;
    text-align: center;    
}

  .other-intro {
    font-size: 22px;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1.5s 0.5s forwards;
  }

  /* Animations */
  @keyframes fadeSlideDown {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeSlideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }



/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .other-section {
    padding: 18px 16px;
    margin: 25px 0;
  }

  .other-heading {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .other-intro {
    font-size: 18px;
    max-width: 700px;
    line-height: 1.5;
  }
}

/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {
  .other-section {
    padding: 15px 12px;
    margin: 20px 0;
  }

  .other-heading {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .other-intro {
    font-size: 16px;
    max-width: 90%;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .other-section {
    padding: 15px 12px;     
    text-align: center;
    background: white;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .other-heading {
    font-size: 22px;         
    width: 90%;              
    margin: 0 auto 12px auto;
    font-weight: 500;
    color: #00a0e3;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeSlideDown 1.5s forwards;
    text-align: center;
  }

  .other-intro {
    font-size: 16px;          
    color: #555;
    max-width: 95%;            
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1.5s 0.5s forwards;
  }
}

 /* intro section End*/







/* Images section start */

.professional-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; 
  margin: 20px;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Image box */
.professional-images .img-box {
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: auto; 
}

/* Image */
.professional-images .img-box img {
  width: 100%;
  height: 40vh; 
  object-fit: cover;
  display: block;
  border-radius: 12px; 
  transition: transform 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}


.professional-images .img-box .overlay {
  position: static; 
  background: none; 
  text-align: center;
  margin-top: 18px;
  margin-bottom: 18px;
  opacity: 1;
  transition: color 0.3s ease;
}


.professional-images .img-box:hover img {
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* Heading style */
.professional-images .img-box .overlay h3 {
  color: #111;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}


.professional-images .img-box:hover .overlay h3 {
  color: #000;
}



.professional-images .img-box .overlay {
  position: static;
  text-align: center;
  margin-top: 10px;
  opacity: 1;
  transition: all 0.3s ease;
}

.professional-images .img-box .overlay .video-link {
  display: inline-block;
  color: #0078ff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.professional-images .img-box .overlay .video-link:hover {
  text-decoration: underline;
  color: #0047b3;
}

.professional-images .img-box .overlay h3 {
  color: #111;
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0 0 0;
}



/* Responsive layout */
@media screen and (max-width: 1024px) {
  .professional-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .professional-images {
    grid-template-columns: 1fr;
  }
  .professional-images .img-box img {
    height: 280px;
  }
}



@media screen and (max-width: 480px) {
  .professional-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .professional-images .img-box img {
    height: 320px; /* mobile friendly height */
  }
}


/* Images section start */