.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px; /* Adjust spacing */
    flex-wrap: wrap; /* Ensures responsiveness */
    margin-top: -40px;

}

.logo-container img {
    height: 125px; /* Adjusted for responsiveness */
    max-width: 100%; /* Ensures images don’t overflow */
}

.title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .logo-container {
        flex-direction: row; /* Ensures horizontal layout */
        justify-content: center; 
        gap: 0px; /* Reduced gap for smaller screens */
        margin-bottom: 20px;
    }

    .logo-container img {
        height: 75px; /* Slightly smaller for mobile */
    }
}

@media screen and (min-width: 320px) and (max-width: 375px) {
  .logo-container img {
      height: 65px;
  }
}


  .slider {
    position: relative;
    height: 490px;
    overflow: hidden;
    display: flex;
  }

  .slides-container {
    display: flex;
    width: 300%;
    transition: transform 1s ease-in-out;
  }

  .slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }

  .slide img {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* Overlay */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .slide:hover .overlay {
    opacity: 1;
    visibility: visible;
  }

  .view-more-btn {
  background: rgba(255, 0, 0, 0);
  color: white;
  padding: 12px 24px;
  border: 2px solid white;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
  border-radius: 5px;
}

.view-more-btn:hover {
  background: rgb(0, 104, 139);
  border-color: #f1f1f1;
}

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  @media (max-width: 768px) {
    .slider {
      height: 350px;
    }

    .slide img {
      height: 350px;
      object-fit: cover;
    }

    .slider-btn {
      padding: 8px;
    }

    .view-more-btn {
      padding: 10px 20px;
      font-size: 16px;
    }
  }



  .hidden-content {
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s;
}

.hidden-content.show {
    visibility: visible;
    opacity: 1;
    height: auto;
}

.btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #0056b3;
    color: #fff;
}



.custom-wrapper {
  width: 100%;
  padding: 20px 0;
}
.custom-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-slider-container {
  width: 48%;
  overflow: hidden;
  position: relative;
}
.custom-text-container {
  width: 48%;
}
.custom-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.custom-slide {
  min-width: 100%;
}
.custom-borderedbox {
  width: 100%;
  border: 2px solid #ddd;
  padding: 5px;
}
.custom-wrapper {
    margin-bottom: 40px;
  }
  






  <style>
  .video-banner {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 20px;
  }

  .video-banner img {
    width: 100%;
    height: auto;
    display: block;
  }

  .video-banner::after {
    content: "▶"; /* Play icon */
    font-size: 50px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 50%;
  }
</style>






<style>
  body {
      font-family: Arial, sans-serif;
      text-align: center;
  }
  .gallery {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      margin-bottom: 30px;
  }
  .gallery img, .gallery video {
      width: 300px;
      height: 225px;
      border-radius: 10px;
      object-fit: cover;
  }
  h2 {
      text-decoration: underline;
      font-size: 22px;
      margin-bottom: 10px;
  }
  /* Responsive Styles */
  @media (max-width: 768px) {
      .gallery {
          flex-direction: column;
          align-items: center;
      }
      .gallery img, .gallery video {
          width: 90%;
          height: auto;
      }
  }
  @media (min-width: 769px) {
      .gallery.video-gallery {
          display: flex;
          justify-content: center;
          gap: 15px;
      }
      .gallery.video-gallery video {
          width: 500px;
          height: 280px;
      }
  }




  .scrollable-list {
    max-height: 200px; /* Adjust the height as needed */
    overflow-y: auto; /* Enables vertical scrolling */
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px; /* Rounded corners */
    background-color: #f9f9f9; /* Light background */
  }
  
  /* Custom scrollbar for WebKit browsers (Chrome, Edge, Safari) */
  .scrollable-list::-webkit-scrollbar {
    width: 8px; /* Thin scrollbar */
  }
  
  .scrollable-list::-webkit-scrollbar-track {
    background: #f0f0f0; /* Light gray background */
    border-radius: 8px;
  }
  
  .scrollable-list::-webkit-scrollbar-thumb {
    background: #888; /* Darker gray scrollbar */
    border-radius: 8px;
  }
  
  .scrollable-list::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker color on hover */
  }
  
  /* Optional: Hide scrollbar in Firefox but keep scrolling enabled */
  .scrollable-list {
    scrollbar-width: thin;
    scrollbar-color: #888 #f0f0f0;
  }
  <style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.banner-text {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 1.2s ease-in-out;
}

.banner-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 20px;
}




.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
</style>




<style>
.gallery img:hover {
    transform: scale(1.05);
}
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}
.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.lightbox .controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 20px;
    transition: opacity 0.3s;
    margin-left: -5px;
}
.lightbox button:hover {
    opacity: 0.7;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}
.photo-count {
    color: white;
    margin-top: 10px;
    font-size: 16px;
    position: absolute;
    bottom: 20px;
}
</style>



<style>
.video-banner {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 20px;
}

.video-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.video-banner::after {
    content: "▶";
    /* Play icon */
    font-size: 50px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 50%;
}
</style>