.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loader-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-video {
  max-width: 80%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.load-content {
  display: none;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Media queries for different screen sizes */
@media (max-width: 768px) {
  .loader-video {
    max-width: 90%;
    max-height: 70vh;
  }
}

@media (max-width: 480px) {
  .loader-video {
    max-width: 95%;
    max-height: 60vh;
  }
}


.slide-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.swiper-slide {
  position: relative;
  overflow: hidden;
}
