/* video section start */
.custom-video-ratio {
  position: relative;
  width: 100%;
  padding-top: 60%; /* You can increase this for more height (e.g., 65%, 70%) */
  overflow: hidden;
}

.custom-video-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* video section ends */

/* resort section start */

.img-hover-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.img-hover-wrapper img {
  transition: transform 0.4s ease;
  width: 100%;
  height: auto;
  display: block;
}

.img-hover-wrapper:hover img {
  transform: scale(1.05);
}

.img-caption {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3); /* Optional: semi-transparent background */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  transition: background 0.3s ease;
}

.img-hover-wrapper:hover .img-caption {
  background: rgba(0, 0, 0, 0.6);
}



/* resort section end */



