.video-overlay-container {
  position: relative;
  width: 60vw;          
  height: 70vh;         
  left: 50%;             /* Shift to middle */
  transform: translateX(-50%); /* Pull it back by half width for true center */
  margin: 0;
  overflow: hidden;
}


.tour_b-video,
.video-overlay-image {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 120%; /* Taller for parallax scroll movement */
  object-fit: cover;
}

.tour_b-video {
  z-index: 1;
}

.video-overlay-image {
  background-image: url("/image/packageSetB.webp");
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 2;
}

.content-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

