/* Reset */
body {
  margin: 0;
  padding: 0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Navbar Styling Start */
/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 10px 0;
}

/* Wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logos */
.logo-left img,
.logo-right img {
  height: 30px;
  object-fit: contain;
  padding-right: 10px;
}

/* Right controls (logo2 + hamburger) */
.right-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Menu */
.navbar-nav {
  align-items: center;
  gap: 20px;
}

.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #007bff;
}

/* Remove ugly button border */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 991px) {

  .nav-wrapper {
      flex-wrap: wrap;
  }

  /* Top row layout */
  .logo-left {
      order: 1;
  }

  .right-controls {
      order: 2;
      margin-left: auto;
  }

  /* Menu dropdown */
  .navbar-collapse {
      order: 3;
      width: 100%;
      margin-top: 10px;
      background: #fff;
      padding: 15px;
      border-radius: 8px;
  }

  .navbar-nav {
      flex-direction: column;
      gap: 10px;
      text-align: center;
  }
}

/* Navbar Styling End */

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  background: url("assests/banner.jpeg") no-repeat center center/cover;
  display: flex;
  align-items: center;
}

/* Dark overlay for readability */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

/* Text */
.hero-text h1 {
  font-size: 48px;
  font-weight: bold;
}

.hero-text p {
  font-size: 18px;
  margin-top: 10px;
}

/* Form Box */
/* FORM BOX - RECTANGULAR GLASS STYLE */
.form-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px 24px;
  border-radius: 6px; /* less rounded */
  width: 360px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Heading */
.form-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

/* Inputs */
.form-box input[type="text"],
.form-box input[type="tel"] {
  width: 100%;
  padding: 13px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px; /* rectangular feel */
  background: rgba(255,255,255,0.85);
  font-size: 14px;
  outline: none;
  transition: 0.25s ease;
}

/* Focus */
.form-box input:focus {
  border-color: #007bff;
  background: #fff;
}

/* Checkbox */
.checkbox {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #eee;
}

.checkbox input {
  margin-right: 8px;
  margin-top: 4px;
  transform: scale(1.1);
}

/* Button */
.form-box button {
  width: 100%;
  padding: 13px;
  border: none;
  background: #007bff;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px; /* rectangular */
  cursor: pointer;
  transition: 0.25s ease;
}

/* Hover */
.form-box button:hover {
  background: #0056b3;
}

/* Mobile */
@media (max-width: 768px) {

  .hero {
      height: 100vh;
      background: url("images/hero.jpg") no-repeat center center/cover;
      position: relative;
  }

  /* Strong overlay for premium look */
  .overlay {
      background: linear-gradient(
          to bottom,
          rgba(0,0,0,0.7),
          rgba(0,0,0,0.6)
      );
  }

  /* Hide left text completely */
  .hero-text {
      display: none;
  }

  /* Center everything */
  .hero-content {
      justify-content: center;
      align-items: center;
      height: 100%;
  }

  /* Form styling for mobile */
  .form-box {
      width: 90%;
      max-width: 380px;
      padding: 25px 20px;
      border-radius: 8px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(14px);
      color: #fff;
      box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  }

  /* Heading */
  .form-box h3 {
      text-align: center;
      font-size: 22px;
      margin-bottom: 15px;
  }

  /* Inputs */
  .form-box input {
      padding: 14px;
      font-size: 15px;
  }

  /* Checkbox text shorter */
  .checkbox label {
      font-size: 11px;
      line-height: 1.4;
  }

  /* Button */
  .form-box button {
      font-size: 16px;
      padding: 14px;
  }
}

/* Hero Section Styling End */

/*About Us Styling*/
/* ABOUT SECTION */
.about-section {
  padding: 90px 0;
  background: linear-gradient(to bottom, #0b1220, #111827);
  color: #fff;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.about-header p {
  color: white;
  margin-top: 10px;
  font-size: 16px;
}

/* Content Layout */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
}

/* Image */
.about-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* Text */
.about-text h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.about-text p {
  color: #d1d5db;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Cards */
.highlight-card {
  background: rgba(255,255,255,0.06);
  padding: 22px;
  border-radius: 6px;
  text-align: left;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
}

.highlight-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.highlight-card p {
  font-size: 14px;
  color: #9ca3af;
}

/* MOBILE */
@media (max-width: 768px) {

  .about-content {
      flex-direction: column;
      gap: 25px;
  }

  .about-header h2 {
      font-size: 28px;
  }

  .about-highlights {
      grid-template-columns: repeat(2, 1fr);
  }
}
/*About Us Styling End*/

/*Ameneties Styling Start*/
/* SECTION
.amenities-section {
  padding: 70px 0;
  background: linear-gradient(to bottom, #111827, #0b1220);
  color: #fff;
}

/* HEADER */
/* .amenities-header {
  text-align: center;
  margin-bottom: 50px;
}

.amenities-header h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
} */

/* GRID (6 x 2 layout) */
/* .amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 20px; /* vertical horizontal */
  /*text-align: center;
} */

/* ITEM */
/* .amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} */

/* ICON */
/* .amenity-item img {
  height: 45px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
  transition: 0.3s ease;
} */

/* TEXT */
/* .amenity-item p {
  font-size: 15px;
  color: #d1d5db;
  margin: 0;
} */

/* HOVER EFFECT */
/* .amenity-item:hover img {
  transform: scale(1.15);
} */

/* ===============================
 RESPONSIVE DESIGN
================================ */

/* TABLET */
/* @media (max-width: 992px) {
  .amenities-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
  }
} */

/* MOBILE */
/* @media (max-width: 576px) {
  .amenities-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
  }

  .amenity-item img {
      height: 35px;
  }

  .amenity-item p {
      font-size: 14px;
  }
} */ 

/* SECTION - MATCH DARK THEME */
.amenity-banner-section {
  padding: 70px 20px;
  background: linear-gradient(to bottom, #111827, #0b1220);
  color: #fff;
}

/* HEADING */
.amenity-header {
  text-align: center;
  margin-bottom: 40px;
}

.amenity-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
}

/* SWIPER CONTAINER */
.amenitySwiper {
  max-width: 1100px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* VIDEO */
.swiper-slide video {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* OVERLAY TEXT */
.overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  background: rgba(0,0,0,0.5);
  padding: 8px 16px;
  border-radius: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .swiper-slide video {
      height: 250px;
  }

  .overlay-text {
      font-size: 18px;
  }
}

/*Ameneties Styling end*/

/* GALLERY SECTION */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #0b1220, #111827);
  color: #fff;
}

/* Header */
.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-size: 34px;
  font-weight: 700;
}

/* Swiper */
.swiper {
  width: 100%;
  padding-bottom: 20px;
}

/* Slides */
.swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}

/* Images */
.swiper-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}

/* Hover effect */
.swiper-slide img:hover {
  transform: scale(1.05);
}

/* Gallery Section Styling End */
/* FLOOR SECTION */
.floor-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #111827, #0b1220);
  color: #fff;
}

/* Header */
.floor-header {
  text-align: center;
  margin-bottom: 50px;
}

.floor-header h2 {
  font-size: 32px;
  font-weight: 700;
}

.floor-header span {
  color: #3b82f6;
}

/* Grid */
.floor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.floor-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

/* Image (Blur Effect) */
.floor-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: blur(6px);
  transform: scale(1.05);
  transition: 0.4s ease;
}

/* Hover → slightly reveal */
.floor-card:hover img {
  filter: blur(3px);
  transform: scale(1.1);
}

/* Overlay button */
.floor-card button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 18px;
  background: #2563eb;
  border: none;
  color: #fff;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.floor-card button:hover {
  background: #1d4ed8;
}

/* Shadow */
.floor-card {
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* TABLET */
@media (max-width: 992px) {
  .floor-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE (CLEAN STACK) */
@media (max-width: 576px) {
  .floor-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .floor-card img {
      height: 240px;
  }
}


/* MAP SECTION */

.map-section {
  background: #0b1220;
  padding: 70px 0;
  color: #fff;
}

/* Layout */
.map-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE */
.map-left {
  flex: 1;
}

.map-left h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* List */
.map-left ul {
  list-style: none;
  padding: 0;
}

.map-left ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #d1d5db;
}

/* Bullet Icon */
.map-left ul li::before {
  content: "*";
  position: absolute;
  left: 0;
  color: #f9fafb;
  font-size: 14px;
}

/* RIGHT SIDE */
.map-right {
  flex: 1.5;
}

/* Map */
.map-right iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  border-radius: 6px;
}

/* TABLET */
@media (max-width: 992px) {
  .map-wrapper {
      flex-direction: column;
  }

  .map-right iframe {
      height: 350px;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .map-left h2 {
      text-align: center;
  }

  .map-left ul {
      text-align: left;
  }

  .map-right iframe {
      height: 300px;
  }
}
/*End of Map Section Styling*/

/*Contact Us Section Styling Start*/
/* CONTACT SECTION */
.contact-section {
  background: #1e4f91;
  padding: 80px 0;
  color: #fff;
}

/* Layout */
.contact-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Image */
.contact-image img {
  width: 100%;
  border-radius: 6px;
}

/* Form */
.contact-form {
  width: 100%;
}

/* Heading */
.contact-form h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-form p {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Inputs */
.contact-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
  background: #e5e7eb;
  font-size: 14px;
}

/* Button */
.contact-form button {
  width: 100%;
  padding: 14px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #fff;
  color: #1e4f91;
}

/* MOBILE */
@media (max-width: 768px) {

  .contact-wrapper {
      flex-direction: column;
  }

  .contact-image img {
      margin-bottom: 20px;
  }

  .contact-form h2 {
      text-align: center;
  }

  .contact-form p {
      text-align: center;
  }
}
/*Contact Us Section Styling End*/

/* Disclaimer Section Styling Start */

.disclaimer-section {
  background: #f3f4f6;
  padding: 30px 0;
  font-size: 13px;
  color: #333;
}

/* Layout */
.disclaimer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Left Text */
.disclaimer-text {
  flex: 3;
}

.disclaimer-text p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Links */
.disclaimer-text .links a {
  color: #2563eb;
  text-decoration: none;
}

.disclaimer-text .links a:hover {
  text-decoration: underline;
}

/* Right Side */
.disclaimer-side {
  flex: 1;
  text-align: center;
}

.disclaimer-side img {
  width: 100px;
  margin-bottom: 10px;
}

.disclaimer-side p {
  font-size: 14px;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {

  .disclaimer-wrapper {
      flex-direction: column;
      text-align: center;
  }

  .disclaimer-side {
      margin-top: 20px;
  }
}
/* Disclaimer Section Styling End */

/* Footer Styling Start */
/* FINAL FOOTER */
.footer-final {
  background: #020617;
  color: #d1d5db;
  padding: 40px 0;
}

/* Layout */
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Left + Right */
.footer-left,
.footer-right {
  flex: 1;
}

/* Headings */
.footer-final h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.footer-final h5 {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #fff;
}

/* Text */
.footer-final p {
  font-size: 13px;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {

  .footer-wrapper {
      flex-direction: column;
      text-align: center;
  }

  .footer-left,
  .footer-right {
      margin-bottom: 20px;
  }
}

.footer-final {
  border-top: 1px solid rgba(255,255,255,0.08);
}
/* Footer Styling End */

/* popup form styling*/
/* OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* POPUP BOX */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 500px;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* LOGO */
.popup-logo {
  width: 180px;
  margin-bottom: 10px;
}

/* HEADING */
.popup-box h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

/* INPUTS */
.popup-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* CHECKBOX WRAPPER */
.popup-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

/* CHECKBOX */
.popup-checkbox input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* LABEL TEXT */
.popup-checkbox label {
  font-size: 13px;
  line-height: 1.4;
  color: #444;
}

/* LINKS */
.popup-checkbox a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.popup-checkbox a:hover {
  text-decoration: underline;
}

/* BUTTON */
.popup-box button {
  width: 100%;
  padding: 14px;
  background: #2bb3c0;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 576px) {
  .popup-box {
      padding: 20px;
  }
}
/* popup form styling closed */


/* MOBILE STICKY FOOTER */
.mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
  z-index: 9999;
}

/* Buttons */
.mobile-footer button,
.mobile-footer a {
  flex: 1;
  padding: 14px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* Layout */
.mobile-footer {
  display: flex;
}

/* Individual Styles */
.mobile-footer button:nth-child(1) {
  background: #1e4f91;
  border: 1px solid white;
  color: #fff;
}

.mobile-footer button:nth-child(2) {
  background: #1e4f91;
  border: 1px solid white;
  color: #fff;
}

.mobile-footer a {
  background: #1e4f91;
  border: 1px solid white;
  color: #fff;
}

/* DESKTOP HIDE */
@media (min-width: 768px) {
  .mobile-footer {
      display: none;
  }
}

/* Mobile Sticky footer closed */

/*Mobile View hero photo styling*/
@media (max-width: 768px) {

  .hero {
      background: none !important; /* REMOVE background image */
      height: auto;
      margin: 0;
      padding: 0;
  }

  .hero-mobile-img {
      display: block;
      width: 100%;
      height: auto; /* NO CUT */
  }

  /* Hide desktop elements */
  .form-box,
  .hero-text,
  .overlay {
      display: none;
  }

  .hero-content {
      margin: 0;
      padding: 0;
  }
}

/* HIDE MOBILE IMAGE ON DESKTOP */
@media (min-width: 769px) {
  .hero-mobile-img {
      display: none;
  }
}
/*Mobile View hero photo styling closed*/

/*Amenity Background remove start*/
.amenity-item img {
  background: transparent;
  mix-blend-mode: multiply;
  color: white;
} 
/*Amenity Background remove end*/

/*Hide about us image for mobile view*/
@media (max-width: 768px) {
  .about-image {
      display: none;
  }
}
@media (max-width: 768px) {
  .about-content {
      flex-direction: column;
  }

  .about-text {
      width: 100%;
  }
}
/*closed*/

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 80px; /* above mobile footer */
  right: 20px;
  z-index: 9999;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

/* ICON */
.whatsapp-float img {
  width: 28px;
}

/* HOVER EFFECT */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* WHATSAPP FLOAT BUTTON Closed*/

/*Video Disclaimer*/
.video-disclaimer {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0,0,0,0.4);
  padding: 4px 8px;
  border-radius: 3px;
  font-weight: 400;
}
/* Video Disclaimer Closed */


