
.video-section {
  width: 100%;
  height: 88vh;
  overflow: hidden;
  margin-top: 0;
  position: relative;
  border-radius: 0;
  align-items: center;
  padding-top: 10%;
  aspect-ratio: auto;
  z-index: 1;
 }

 .video-section video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: fill;
  object-position: center;
  display: block;
  pointer-events: none;
 }

 /* Overlay Layer */
 .video-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.45); /* Black overlay with 90% opacity */
  z-index: 2; /* Ensure overlay is on top of the video */
  padding: 20px; /* Add some padding for smaller screens */
  box-sizing: border-box; /* Include padding in width and height */
 }

 .video-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Times New Roman", Times, serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Add a text shadow for better readability */
 }

 .video-overlay p {
  font-size: 1.2rem;
  font-family: "Times New Roman", Times, serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); /* Add a text shadow */
 }

@media (min-width: 768px) and (max-width: 1024px) {
  .video-section {
    width: 100%; /* Adjust width to create margin on the right */
    height: 50vh;
    /* Center the video section */
  }
}
 /* Responsive adjustments */
 @media (max-width: 768px) {
  .video-section {
    height: 43vh;
    width: 100%;
    margin:0; /* Adjust height for smaller screens */
  }

  .video-overlay h1 {
   font-size: 2.5rem;
   margin-bottom: 10px;
  }

  .video-overlay p {
   font-size: 1rem;
  }
 }

 @media (max-width: 480px) {
  .video-section {
    height: 34vh;
    width: 100%;
    margin: 0px;
    object-fit: fill;
  }

  .video-overlay h1 {
   font-size: 2rem;
  }

  .video-overlay p {
   font-size: 0.9rem;
  }
 }

/* Stats Section */
.stats-section {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 1rem;
  backdrop-filter: blur(10px);
  gap: 1.5rem;
}
.stat-box {
  background: #c0def5;
  border-radius: 12px;
  padding: 1rem;
  width: 220px;
  text-align: center;
  transition: transform 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-5px);
}
.stat-box img {
  margin-top: 1rem;
  width: 60px;
  margin-left: 65px;
  border-radius: 10px;
}
.stat-box h3 {
  color: #081929;
  font-size: 1.5rem;
}

@media (max-width: 767px){
  .stats-section{
    display: flex;
    

  }

  .stat-box {
    width: 158px;
  }
    .stat-box img{
      margin-left: 50px;
      border-radius: 10px;
      align-items: center;
    }
  
}
.slider-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  
}

.slider-track {
  display: flex;

  transition: transform 0.5s ease-in-out;

  
}

.slider-track img {
  flex: 0 0 33.3333%; /* Show 3 images at a time */
  width: 100%;;
  height: 390px;
  object-fit: cover;
  border-radius: 20px;
  padding: 0 10px;
  box-sizing: border-box;
}

.slider-track img:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {

  .slider-container {
    width: 100%;
    height: 50vh;
    max-width: 1200px;
    margin: 30px 0;
    overflow: hidden;
    position: relative;
    
  }
  .slider-track img {
    flex: 0 0 100%; /* Show 1 image on mobile */
   
  }
}


.learn-more-section {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
#learn-more-btn {
  padding: 12px 24px;
  background-color: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#learn-more-btn:hover {
  background-color: #1a252f;
}

.about-section {
  margin-bottom: 30px;
  text-align: center;
  padding: 30px;
  margin: 20px auto;
  max-width: 90%;
  background: #f0f0f0; /* Light gray background */
  border-radius: 10px;
  border: 1px solid #ddd; /* Subtle border */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  transition: transform 0.2s ease-in-out;
}

.about-section:hover {
  transform: scale(1.01);
}

.about-section h3 {
  align-content: center;
  margin-bottom: 20px;
  color: #555;
}

#about-text {
  cursor: pointer;
  margin-top: 20px;
  font-family: "Times New Roman", Times, serif;
}

#about-text em {
  font-style: italic;
}

#about-text strong {
  font-weight: bold;
  color: #007bff; /* Example primary color */
}

#about-text:hover {
  color: #0056b3; /* Darker shade on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
      padding: 20px;
      font-size: 16px;
      margin: 15px auto;
  }

  .about-section h3 {
      font-size: 1.5em;
      margin-bottom: 15px;
  }

  #about-text {
      margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .about-section {
      padding: 10px;
      font-size: 14px;
      margin: 20px;
  }

  .about-section h3 {
      font-size: 1.3em;
      margin-bottom: 10px;
  }

  #about-text {
      margin-top: 10px;
  }
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.5);
}

.modal-content {
  background: white;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

.form-heading-intro {
  text-align: center;
  padding: 60px 20px 30px;
  background: #fff;
}

.form-heading-intro h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.form-heading-intro p {
  font-size: 17px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}



.enquiry-section {
  max-width: 600px;
  margin-top: 6px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  /* margin: 80px auto; */
  padding: 40px 30px;
  background: linear-gradient(to right, #e6f0ff, #f4f9ff);;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.enquiry-section h2 {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

#enquiryForm input,
#enquiryForm textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

#enquiryForm input:focus,
#enquiryForm textarea:focus {
  border-color: #007BFF;
  outline: none;
}

.submit-btn {
  background: linear-gradient(to right, #007BFF, #0056b3);
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 10px;
  font-size: 17px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background: linear-gradient(to right, #0056b3, #003f7f);
  transform: translateY(-2px);
}
