.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.room-main-div-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.main-cont-head {
  padding: 2rem 4rem;
}
.social-icon-div {
  display: flex;
}
.social-icon-div a {
  width: auto;
  padding: 0;
  border: none;
}
.social-icon-div img {
  width: 50px;
  padding: 3px;
}
.room-head {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.room-send-main-cont {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
  border-radius: 5%;
}

.room-send-main-cont img {
  width: 100%;
  height: 55vh;
  border-top-left-radius: 5%;
  border-top-right-radius: 5%;
}

.room-send-main-cont h4 {
  font-size: 24px;
  font-weight: 500;
  padding: 10px;
}

.video-cont-main {
  padding: 2rem 4rem;
  background-color: rgba(128, 128, 128, 0.1);
}

.video-heading {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.room-desc {
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-weight: 100;
  text-align: center;
}
/* .video-cont-main h2 {
    padding-bottom: 30px;
    text-align: center;
  } */
.video-main-cont-div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding-bottom: 40px;
}

.video-secont-div {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 6px;
}

.video-secont-div img {
  width: 100%;
  height: 60vh;
  padding: 10px;
  transition: all 0.5s ease-in-out;
}

.video-secont-div img:hover {
  width: 100%;
  height: 60vh;
  padding: 0px;
 
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .video-secont-div img {
    max-height: 40vh;
    padding: 5px;
  }
}

.video-secont-div video {
  width: 100%;
  height: 60vh;
  border-radius: 6px;
}
.reveiw-ptag {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-align: justify;
}
.reveiw-h5tag {
  font-size: 18px;
  font-weight: 600;

  margin-top: 10px;
}
.send-div-main-cont {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 2rem 3rem;
}
.img-main-cont {
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 20px;
}
.img-main-cont img {
  height: 5vh;
}
@media (max-width: 992px) {
  .video-main-cont-div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .room-main-div-cont {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .main-cont-head {
    padding: 2rem 0rem;
  }
  .room-send-main-cont h4 {
    font-size: 24px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
  }
  .video-cont-main {
    padding: 2rem 0.6rem;
    background-color: rgba(128, 128, 128, 0.1);
  }
  .video-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .heading-index {
    font-size: 18px;
  }
  .send-div-main-cont {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    padding: 2rem 0.2rem;
  }
}


.book-now-btn {
  display: inline-block;
  background-color: #e63946; /* red background */
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.book-now-btn:hover {
  background-color: #c21828; /* darker red on hover */
}

.mobile-floating-book-btn {
  display: none;
}

/* Hide desktop button on mobile, show floating one */
@media (max-width: 768px) {
  .desktop-book-now {
    display: none; /* Hide regular nav button */
  }

  .mobile-floating-book-btn {
    display: inline-block;
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: #e63946;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: background 0.3s ease;
  }

  .mobile-floating-book-btn:hover {
    background-color: #c21828;
  }
}