/* .cs-hero.cs-style4 .cs-swiper_parallax_bg video, .cs-hero.cs-style5 .cs-swiper_parallax_bg video {
    height: auto;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
} */

.video-container {
  width: 100%;
  /*height: 750px;*/
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio → adjust if needed */
  border-radius: 15px;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the div, crops edges */
}

/* Lightbox styles */
.lb {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  z-index: 9999;
  padding: 24px;
}
.lb.hidden { display: none; }

.lb-img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
  border-radius: 12px;
}

.lb-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  border: 0; background: rgba(255,255,255,.18);
  color: #fff; font-size: 34px; line-height: 1;
  width: 48px; height: 48px; border-radius: 999px;
  display: grid; place-items: center;
  cursor: pointer; user-select: none;
  transition: background .2s ease;
}
.lb-btn:hover { background: rgba(255,255,255,.3); }

.lb-prev { left: 18px; }
.lb-next { right: 18px; }

.lb-close {
  top: 18px; right: 18px; transform: none;
  font-size: 32px; width: 44px; height: 44px;
}

.lb-counter {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  color: #fff; font-size: 14px; opacity: .9;
  background: rgba(0,0,0,.35);
  padding: 6px 10px; border-radius: 999px;
}

/* Optional: disable body scroll when lightbox is open */
body.lb-open { overflow: hidden; }

/* Optional: adjust aspect ratio for mobile */
@media (max-width: 768px) {
  .video-container {
    padding-bottom: 75%; /* slightly taller ratio for mobile */
  }
}
