.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% 6px;
}

.room-send-main-cont img {
  width: 100%;
  height: 65vh;
  border-radius: 20% 4px;
  border-radius: 6px;
}

.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;
}

/* .video-cont-main h2 {
    padding-bottom: 30px;
    text-align: center;
  } */
.video-main-cont-div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.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;
}

.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: 30px;
  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: 30px;
}

.img-main-cont img {
  width: 20%;
  height: 8vh;
  aspect-ratio: 1;
}

.img-main-cont p {
  line-height: 1.5;
}

@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.2rem;
    background-color: rgba(128, 128, 128, 0.1);
  }

  .video-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .heading-index {
    font-size: 19px;
  }

  .send-div-main-cont {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    padding: 2rem 0.2rem;
  }
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Changed from flex-end to flex-start */
  gap: 1rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Heading */
.footer-legal .footer-subhead {
  font-size: 20px;
  font-weight: 600;
  color: white;
}

/* Line */
.footer-legal hr,
.footer-legal span {
  height: 2px;
  width: 100px;
  background-color: white;
  border: none;
  margin: 0;
}

/* List */
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal ul li {
  margin: 6px 0;
}

.footer-legal ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal ul li a:hover {
  color: white;
  text-decoration: underline;
}


@media (max-width: 768px) {
  .footer-legal {
    align-items: center;
    text-align: center;
  }

  .footer-legal .footer-subhead {
    font-size: 18px;
  }

  .footer-legal span {
    width: 60px;
  }

  .footer-legal ul li {
    margin: 4px 0;
  }

  .video-secont-div img {
    width: 100%;
    height: 35vh;
    padding: 10px;
  }

  .room-send-main-cont img {
    width: 100%;
    height: 35vh;
    border-radius: 20% 4px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .footer-legal {
    font-size: 12px;
    gap: 0.8rem;
  }

  .footer-legal .footer-subhead {
    font-size: 16px;
  }

  .footer-legal span {
    width: 50px;
  }

  .footer-legal ul li a {
    font-size: 13px;
  }
}

.floating-button {
  position: fixed;
  bottom: 90px;
  right: 5px;
  background-color: #28a745;
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: none;
  /* hidden by default */
  z-index: 9999;
  /* stay on top */
}

.floating-button:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Show button only on mobile (max-width 768px) */
@media (max-width: 768px) {
  .floating-button {
    display: inline-block;
  }
}