/* ================= Banner ================= */
.rounded{
  width: 100%;
}
.banner{
    background: #f0eeee32;
}
.me-2{
  
  background: #245446;
}
.me-2:hover{
  background: black;
}
.me-3{
  background: white;
}
.me-3:hover{
  background: black;
}

/* ================= Available Rooms ================= */
/* HEADER WRAPPER */
.section-header {
  margin-bottom: 40px;
}

/* BADGE */
.section-badge {
  display: inline-block;
  padding: 8px 18px;
  background: #e6f4ee;
  color: #245446;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* ICON */
.section-badge i {
  margin-right: 6px;
}

/* MAIN HEADING */
.main-heading {
  font-size: 36px;
  font-weight: 600;
  color: #222;
}

.main-heading span {
  color: #245446; /* green highlight */
}

/* SUBTEXT */
.section-subtext {
  color: #666;
  font-size: 15px;
  margin-top: 10px;
}
.rooms-section {
  background:#f0eeee32;
}

.room-card {
background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;

  height: 100%; /* 👈 full height */
  display: flex;
  flex-direction: column;
}

.room-card:hover {
transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* IMAGE */
.room-img {
  position: relative;
}

.room-img img {
  width: 100%;
  height: 400px; /* 👈 pehle 200 tha */
  object-fit: cover;
}


/* BADGE (LEFT) */
.badge {
  position: absolute;
  top: 12px;
  left: 12px; /* 👈 left side */
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  color: #fff;
}

.available {
  background: #245446;
}

.occupied {
  background: #c97b5b;
}
/* HEART ICON (RIGHT) */
.wishlist-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* Hover effect */
.wishlist-icon:hover {
  background: #245446;
  color: #fff;
}

.room-features {
  display: flex;
  gap: 6px;
  margin: 10px 0;
  flex-wrap: wrap;
}

.room-features span {
  background: #eef3f2;
  padding: 6px 12px;
  border-radius: 20px; /* 👈 pill button */
  font-size: 12px;
  border: 1px solid #ddd;
  cursor: default;
  transition: 0.3s;
}

/* Hover pe thoda premium feel */
.room-features span:hover {
  background: #245446;
  color: #fff;
}

/* CONTENT */
.room-content {
    padding: 18px;
  flex: 1; /* 👈 ye card ko equal height dega */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-content h5 {
  font-size: 16px;
  margin-bottom: 8px;
  color:#245446;
}

.price {
  font-weight: bold;
  color: #245446;
}

.price span {
  font-size: 14px;
  color: #245446 !important;
}


.meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

/* BUTTON */
.card-enquire {
  background: #245446;
  border: none;
}

.card-enquire:hover {
  background: black;
}

.btn-secondary {
  background: #ccc;
  border: none;
  color: #555;
}

/* BOTTOM BUTTON */
.explore-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #245446;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
}

.explore-btn:hover {
  background: black;
}




/* ================= Why Choose ================= */
.custom-container {
  max-width: 1100px;
  margin: 0 auto; /* center */
}
.why-section {
  background: #f8f9fa;
}

.why-card {
  background: #ffffffcc; /* slight glass feel */
  backdrop-filter: blur(10px);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.why-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* ================= Testimonial ================= */

.testimonials {
  background: #f8f9fa;
}

.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.3s;
  text-align: left;
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

/* Center card highlight */
.testimonial-card.active {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Avatar */
.avatar {
  width: 40px;
  height: 40px;
  background: #6c63ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Stars */
.stars {
  font-size: 14px;
  color: #f4b400;
}




/* ================= Slider ================= */
.feature-slider{
  padding:20px 0;
 
  overflow:hidden;
  position:relative;
}

.slider-track{
  display:flex;
  width:max-content;
  gap:20px;
  animation: scroll 30s linear infinite;
}

.slider-track{
  display:flex;
  width:max-content; /* 🔥 IMPORTANT */
  gap:20px;
  animation: scroll 25s linear infinite;
}

.feature-card{
  min-width:180px;
  background:#fff;
  border-radius:15px;
  padding:20px;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}


.icon-img{
  width:100px;
  height:100px;
  object-fit:contain;
  margin-bottom:10px;
}
.feature-card h4{
  margin:5px 0;
  font-size:15px;
  color:#1c4035;
}

.feature-card p{
  font-size:12px;

   color:#1c4035;
}

.feature-card:hover{
  transform:translateY(-5px);
}
.feature-slider:hover .slider-track{
  animation-play-state: paused;
}

/* AUTO SCROLL */
@keyframes scroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

/* ================= Available rooms page css ================= */
.rooms-section {
  background: #f8f9fb;
}
.rooms img{
  height: 400px;

}

/* Filter Box */
.filter-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Button */
.btn-orange {
  background: #f47c2c;
  color: #fff;
  border: none;
}
.btn-orange:hover {
  background: #e56a1f;
}

/* Room Card */
.room-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.price {
  font-weight: 600;
}
.price span {
  font-weight: normal;
  color: gray;
  margin-left: 10px;
}

/* Contact Box */
.contact-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Map */
.map-box img {
  border-radius: 10px;
}
/* Available Badge */
.badge-available {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #3bb77e;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
}

/* Location box */
.location-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.map-box iframe {
  border-radius: 10px;
}

/* icon spacing */
.location-box i {
  color: #3bb77e;
  margin-right: 5px;
}

/* ================= contact us page css ================= */
.contact-section {
  background: #f5f7f9;
}

/* Green Button */
.btn-green {
  background: #245446;
  color: #fff;
  border-radius: 6px;
}
.btn-green:hover {
  background: #1c4035;
}

/* Info Cards */
.info-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.info-card i {
  color: #245446;
  font-size: 18px;
}

/* Form Box */
.form-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Social */
.social i {
  margin-right: 10px;
  cursor: pointer;
  color: #245446;
}
.contact img{
  height: 400px;
}
