.main-cont-head {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.room-head {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative;
}

.room-head::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #2980b9;
    border-radius: 2px;
}

.room-main-div-cont {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.room-send-main-cont {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.room-send-main-cont:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.room-send-main-cont img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-send-main-cont:hover img {
    transform: scale(1.05);
}

.room-send-main-cont h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  text-align: center;
  padding: 18px 10px;
  background: linear-gradient(135deg, #f5f7fa, #e4e4e4);
  border-top: 1px solid #ddd;
  margin: 0;
  transition: color 0.3s ease;
}

/* .room-info {
    padding: 0 20px 20px;
    text-align: center;
}

.room-price {
    color: #2980b9;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.room-features {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.book-btn {
    background-color: #2980b9;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
} */

/* .book-btn:hover {
    background-color: #1f618d;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .room-main-div-cont {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }

    .room-head {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .room-send-main-cont img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    .room-main-div-cont {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .room-head {
        font-size: 1.8rem;
    }

    .room-send-main-cont:hover h4 {
      color: #2980b9;
    }
}

.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: 10px;
  padding: 2rem 3rem;
}
.img-main-cont {
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px;
}
.img-main-cont img {
  width: 100%;
  height: 25vh;
}
@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;
  }
}
