
/* room countr and rview counter start  */
.stats-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  text-align: center;
}

.stats-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-box h2 {
  font-size: 64px;
  font-weight: 700;
  color: #d4af37; /* Luxury gold */
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 18px;
  letter-spacing: 1px;
  opacity: 0.9;
}
footer a{
  text-decoration: none;
  color:white
}
footer ol{
  list-style: none;
}
/*Mat integration start  */
.map-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.map-section .section-title h2 {
  font-weight: 600;
  color: #222;
}

.map-section .section-title p {
  color: #666;
  font-size: 15px;
}

.map-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.map-box:hover {
  transform: scale(1.01);
}
/*whatsapp integration start  */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
  transform: scale(1.1);
  color: #fff;
}
/* reviews start*/
.review-scroll-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.review-scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.review-scroll-track {
  display: flex;
  gap: 20px;
  animation: scrollX 30s linear infinite;
}

.review-scroll-wrapper:hover .review-scroll-track {
  animation-play-state: paused;
}

.review-card {
  min-width: 280px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.review-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.review-card h5 {
  margin: 0;
  font-weight: 600;
}

.review-card span {
  font-size: 14px;
  color: #777;
}

.review-card p {
  font-size: 14px;
  margin-top: 10px;
  color: #555;
}

@keyframes scrollX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .review-card {
    min-width: 240px;
  }
}


/* reviews end*/

/* Mobile optimization */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}

/*whatsapp integration end  */

/* Mobile Optimization */
@media (max-width: 768px) {
  .map-box iframe {
    height: 300px;
  }
}

/*Mat integration end  */

/* Mobile */
@media (max-width: 576px) {
  .stat-box h2 {
    font-size: 48px;
  }
}

/* footer css start  */
/* ===== FOOTER BASE ===== */
.footer-section {
  background: linear-gradient(135deg, #0f0f0f, #060707, #0b171d);
  color: #ddd;
  padding: 70px 0 30px;
  position: relative;
}

.footer-section h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-section h5::after {
  content: "";
  width: 45px;
  height: 2px;
  background: #f9b233;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* ===== TEXT & LINKS ===== */
.footer-section p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #d0d0d0;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  font-size: 14.5px;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.footer-links a::before {
  content: "›";
  margin-right: 8px;
  color: #f9b233;
}

.footer-links a:hover {
  color: #f9b233;
  padding-left: 6px;
}

/* ===== CONTACT LINKS ===== */
.footer-section a {
  color: #ccc;
  text-decoration: none;
}

.footer-section a:hover {
  color: #f9b233;
}

/* ===== SOCIAL ICONS ===== */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.4s;
}

.footer-social a:hover {
  background: #f9b233;
  color: #000;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ===== DIVIDER ===== */
.footer-line {
  margin: 40px 0 20px;
  border-color: rgba(255,255,255,0.1);
}

/* ===== COPYRIGHT ===== */
.copyright {
  font-size: 14px;
  color: #bbb;
}

.copyright img {
  margin-left: 8px;
  vertical-align: middle;
  transition: 0.3s;
}

.copyright img:hover {
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-section h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/*  footer css end */
/* Navbar start*/
.navbar {
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(10px);
    }
    .navbar .nav-link {
      color: #fff !important;
      font-weight: 500;
    }
    .navbar .nav-link:hover {
      color: #ffdd59 !important;
    }
    .btn-book {
      background: linear-gradient(to right, #ff5a5f, #fdbb2d);
      color: #fff;
      font-weight: 600;
    }

/* Navbar end*/
/* facilitystart */
.facilities-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: gold;
  display: block;
  margin: 15px auto;
}

.facilities-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.facility-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.facility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, gold, transparent, gold);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.facility-card:hover::before {
  opacity: 0.3;
}

.facility-card:hover {
  transform: translateY(-15px) scale(1.05);
}

.icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.6s ease;
}

.facility-card:hover .icon {
  transform: rotateY(360deg) scale(1.2);
}

.facility-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.facility-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

/* facility end*/