
body{
    width: 100%;
    overflow-x: hidden;
}
/* Facilities css start */

.facility-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s;
  height: 100%;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.facility-icon {
  font-size: 45px;
  margin-bottom: 15px;
  color: #cfa670;
}

/* Facilities css end */
/* bar for hotel-spotlight.html css start */
#lightbox {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2000;
}
#lightbox img {
  max-width: 90%;
  max-height: 80%;
  margin-bottom: 20px;
  border-radius: 10px;
}
#lightbox button {
  margin: 5px;
}
#closeBtn {
  position: absolute;
  top:20px;
  right:30px;
  font-size:30px;
  color:white;
  cursor:pointer;
}

/* bar for hotel-spotlight.html css end */

/*index.html page reviews start */
.review-container {
  overflow: hidden;
  width: 100%;
}

.review-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: horizontalScroll 35s linear infinite;
}

.review-container:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  width: 320px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-header img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: #fbbc04;
  font-size: 16px;
  margin: 5px 0;
}

@keyframes horizontalScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/*index.html page reviews end */
#footer-anchor a , #footer-address-anchor a ,#footer-properties-a a{
  all: unset;
  cursor: pointer;
}

/* Bar.html , Bar gallery controls start */
/* SECTION */
.bar-gallery-section {
  padding: 60px 20px;
  background: #111;
  color: #fff;
}

/* GRID */
.bar-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.bar-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* IMAGE HOVER ANIMATION */
.bar-gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(255,255,255,0.2);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  animation: zoomIn 0.4s ease;
}

/* NAV BUTTONS
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 40px;
  padding: 12px 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.nav:hover {
  background: rgba(255,255,255,0.35);
}

.back { left: 30px; }
.next { right: 30px; }

.nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* CLOSE 
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  cursor: pointer;
} */

/* ANIMATION */
@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Bar.html , Bar gallery controls end */

/* css for popup start */
.card-box {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.card-box:hover {
  transform: translateY(-8px);
}

/* css for popup end */
/* carousel code start */
.carousel-content{
  margin-left: -170px;
  margin-bottom:50px ;
  text-align: center;
  justify-content: center;
}

/* carousel code end */
/* Brand start*/
.brand-section {
  padding: 50px 0;
  overflow: hidden;
  background: rgb(#fff);
  margin-bottom: 5px;
}

.brand-title {
  color: #d4af37;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 800;
}

.brand-row {
  overflow: hidden;
  white-space: nowrap;
  margin: 15px 0;
}

.brand-track {
  display: inline-flex;
  align-items: center;
  animation: scrollLTR 30s linear infinite;
}
.brand-track-slow {
  display: inline-flex;
  align-items: center;
  animation: scrollRTL 30s linear infinite;
}

.brand-track.slow {
  animation-duration: 10s;
}

.brand-track img {
  height: 60px;
  margin: 0 40px;
  opacity: 0.8;
  transition: 0.3s ease;
}

.brand-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

/* Animation */
@keyframes scrollLTR {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollRTL {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Brand end*/
/* Brand for mobile scrollable start*/
.brand-row {
  overflow: hidden;
  width: 100%;
}

.brand-track {
  display: flex;
  width: max-content;   /* 🔥 THIS FIXES MOBILE */
  animation: scrollLTR 30s linear infinite;
}

.brand-track.slow {
  animation-duration: 45s;
}
@keyframes scrollLTR {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brand-track {
  will-change: transform;
}


/* Brand for mobile scrollable end*/
/* new nav  start */
/* Navbar Background */
.custom-navbar {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  padding: 12px 0;
}

/* Nav Links */
.custom-navbar .nav-link {
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ffc107;
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
  width: 100%;
}

.custom-navbar .nav-link:hover {
  color: #ffc107;
}

/* Contact Button */
.book-btn {
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #ffc107;
  color: #000;
  border-color: #ffc107;
}

/* Mobile Menu */
@media (max-width: 991px) {
  .custom-navbar {
    background: rgba(0, 0, 0, 0.85);
  }

  .navbar-collapse {
    padding: 15px 0;
  }

  .nav-link::after {
    display: none;
  }
}
.custom-navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 8px 0;
}



/* navbar properties dropown start */
/* Custom Dropdown */
.dropdown-custom {
  position: relative;
}

.dropdown-toggle-custom::after {
  content: "▾";
  margin-left: 6px;
  font-size: 12px;
}

/* Dropdown Menu */
.dropdown-menu-custom {
  position: absolute;
  top: 120%;
  left: 0;
  background: #222;
  min-width: 220px;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Dropdown Links */
.dropdown-menu-custom li a {
  display: block;
  padding: 12px 20px;
  color: #f2f2f2;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-menu-custom li a:hover {
  background:#f2f2f2 ;
  color:#222;
}

/* Show Dropdown on Hover */
.dropdown-custom:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Keep nav-link color same */
.custom-navbar .nav-link {
  color: #fff;
}

/* navbar properties dropown end */
/* new nav end */
