html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  background: #0d071a;
  color: #fff;
}

/* ================= NAVBAR ================= */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 9999;
  background: rgba(38, 16, 67, .95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
}

/* LOGO */
.logo {
  height: 62px;
}

/* NAV LINKS */
.nav-link {
  color: #fff !important;
  font-weight: 500;
  position: relative;
  padding: 0;
}

.nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #C29D71;
  transition: .3s;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

/* GOLD BUTTON */
.btn-gold {
  background: #C29D71;
  color: #261043;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  transition: .3s;
}

.btn-gold:hover {
  background: #fff;
  transform: translateY(-2px);
}

@media(max-width:991px) {

  .navbar-collapse {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: linear-gradient(180deg, #261043, #0d071a);
    padding: 40px 0;
    text-align: center;
    z-index: 9998;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: .5s ease;
  }

  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-nav {
    gap: 22px !important;
  }

  .nav-link {
    font-size: 20px;
    display: inline-block;
  }

  .btn-gold {
    margin-top: 25px;
  }
}


/* ================= HERO VIDEO ================= */
.hero-video {
  position: relative;
  height: calc(100vh -  0px); 
  overflow: hidden;
}

/* Background Video */
.hero-video .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.hero-video .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(38 16 67 / 34%), rgba(0, 0, 0, .6));
  z-index: 2;
}

/* Container */
.hero-video .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Content */
.hero-content {
  max-width: 620px;
  animation: fadeUp 1.3s ease forwards;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #C29D71;
}

.hero-content p {
  margin: 18px 0 32px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.7;
}

/* Responsive */
@media(max-width:991px) {
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================= ABOUT (LIGHT VERSION) ================= */
.about-section {
  padding: 120px 0;
  background: #f2ecfb;
  /* light purple */
}

/* TAG */
.about-tag {
  color: #6b4fa3;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

/* HEADING */
.about-section h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 15px 0 20px;
  color: #1f1235;
  /* dark purple / near black */
}

/* PARAGRAPH */
.about-section p {
  color: #2b2b2b;
  /* dark readable text */
  line-height: 1.8;
  font-size: 16px;
}

/* FEATURES */
.about-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f1235;
}

.about-features i {
  color: #6b4fa3;
}

/* IMAGE */
.about-image img {
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}


.btn-gold:hover {
  background: #C29D71 !important;
  color: #261043 !important;
  box-shadow: 0 10px 30px rgba(194, 157, 113, .4);
}

/* ================= WHY CHOOSE ================= */
.why-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #261043, #0d071a 70%);
}

.section-tag {
  color: #C29D71;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

.why-section h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 12px 0 10px;
}

.section-sub {
  max-width: 620px;
  margin: auto;
  color: #686868;
  font-size: 16px;
  line-height: 1.7;
}

.why-card {
  background: rgba(255, 255, 255, .03);
  padding: 40px 25px;
  border-radius: 18px;
  height: 100%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .05);
  transition: .4s ease;
}

.why-card i {
  font-size: 36px;
  color: #C29D71;
  margin-bottom: 15px;
}

.why-card h5 {
  margin: 10px 0;
  font-weight: 600;
}

.why-card p {
  color: #686868;
  font-size: 15px;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .6);
  border-color: #C29D71;
}

/* ================= PROJECTS – LIGHT VERSION ================= */
.projects-section {
  padding: 120px 0;
  background: #f2ecfb;
  /* light purple */
}

/* CARD */
.project-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;

  border: 1px solid #e2d9f3;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

  transition: .4s ease;
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* BODY */
.project-body {
  padding: 22px;
}

/* TITLE */
.project-body h5 {
  font-weight: 600;
  color: #1f1235;
  /* dark purple */
}

/* TEXT */
.project-body p {
  color: #2b2b2b;
  margin: 6px 0 10px;
}

/* LOCATION */
.project-body .location {
  color: #6b4fa3;
  /* purple accent */
  font-size: 14px;
}

/* HOVER */
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(107, 79, 163, .25);
  border-color: #6b4fa3;
}

/* ===== PROJECTS SECTION TEXT FIX (LIGHT BG) ===== */

.projects-section .section-tag {
  color: #6b4fa3;
  /* dark purple */
}

.projects-section h2 {
  color: #1f1235;
  /* near black */
}

.projects-section .section-sub {
  color: #2b2b2b;
  /* readable dark text */
}

.projects-section .project-body h5 {
  color: #1f1235;
}

.projects-section .project-body p {
  color: #2b2b2b;
}

/* IMAGE WRAPPER */
.image-wrapper {
  position: relative;
}

/* COMING SOON BADGE */
.coming-badge {
  position: absolute;
  top: 15px;
  left: 15px;

  background: rgba(0, 0, 0, 0.75);
  color: #fff;

  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  border-radius: 30px;
}

/* Optional: Dim image */
.project-card.coming-soon img {
  filter: brightness(70%);
}

/* ===== PREMIUM AMENITIES GRID ===== */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;

  background: #f9f6ff;
  padding: 10px 14px;
  border-radius: 12px;

  font-size: 13px;
  font-weight: 500;
  color: #1f1235;

  transition: .3s ease;
}

.amenity-item i {
  color: #6b4fa3;
  font-size: 14px;
}

.amenity-item:hover {
  background: #efe8ff;
  transform: translateY(-2px);
}

/* Hide extra amenities */
.more-amenities {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.more-amenities.active {
  max-height: 500px; /* enough height */
}

/* Toggle button */
.toggle-amenities {
  background: none;
  border: none;
  color: #6b4fa3;
  font-weight: 600;
  font-size: 13px;
  margin-top: 12px;
  cursor: pointer;
}

/* Premium card body spacing */
.project-body {
  padding: 26px;
}

/* ================= AMENITIES ================= */
.amenities-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #261043, #0d071a 70%);
}

.amenity-box {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 16px;
  padding: 35px 10px;
  text-align: center;
  transition: .4s ease;
}

.amenity-box i {
  font-size: 32px;
  color: #C29D71;
  margin-bottom: 10px;
}

.amenity-box span {
  display: block;
  font-size: 14px;
  color: #fff;
}

.amenity-box:hover {
  transform: translateY(-8px);
  border-color: #C29D71;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #261043, #0d071a 70%);
}

.testimonial-card {
  background: rgba(255, 255, 255, .03);
  padding: 35px;
  border-radius: 18px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .05);
  transition: .4s ease;
}

.testimonial-card p {
  color: #686868;
  line-height: 1.8;
}

.testimonial-card h6 {
  margin-top: 15px;
  color: #C29D71;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #C29D71;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .6);
}

/* ================= COMBINED LOCATION + ENQUIRY ================= */

.location-enquiry-section {
  padding: 140px 0 0;
  background: #0b0616;
}

/* MAIN CARD */
.combined-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .35);
}

/* LEFT SIDE (DARK LOCATION) */
.location-left {
  padding: 70px;
  background: linear-gradient(180deg, #301b4d 0%, #c29d71 100%);
  color: #fff;
}



.location-left h2,
.location-left .section-sub {
  color: #fff;
}

.location-left .section-tag {
  color: #C29D71;
}

.location-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.location-points li {
  margin-bottom: 12px;
}

.location-points i {
  color: #C29D71;
  margin-right: 10px;
}

.location-map iframe {
  box-shadow: 0 25px 60px rgba(0, 0, 0, .6);
}

/* RIGHT SIDE (FORM LIGHT) */
.enquiry-left {
  padding: 70px;
  background: #f7f2ff;
}

.enquiry-left .section-tag {
  color: #6b4fa3;
}

.enquiry-left h2 {
  color: #1f1235;
}

.enquiry-left p {
  color: #2b2b2b;
}

/* FORM */
.premium-form label {
  color: #1f1235;
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}

.premium-form input,
.premium-form select {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #d8cfee;
  background: #fff;
}

.premium-form input::placeholder {
  color: #777;
}

.premium-form .btn {
  padding: 16px;
  font-size: 16px;
}


/* ================= FOOTER ================= */
.main-footer {
  background: #0b0616;
  padding: 80px 0 30px;
}

.footer-logo {
  height: 45px;
  margin-bottom: 15px;
}

.main-footer h6 {
  margin-bottom: 15px;
  color: #C29D71;
}

.main-footer ul {
  list-style: none;
  padding: 0;
}

.main-footer ul li {
  margin-bottom: 10px;
}

.main-footer a {
  color: #686868;
  text-decoration: none;
}

.main-footer a:hover {
  color: #C29D71;
}

.footer-text {
  color: #686868;
  font-size: 14px;
  line-height: 1.8;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
  margin-right: 10px;
  color: #C29D71;
  transition: .3s;
}

.footer-social a:hover {
  background: #C29D71;
  color: #261043;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.footer-credit {
  color: #C29D71;
  text-decoration: none;
  font-weight: 500;
}

.footer-credit:hover {
  color: #fff;
}

/* Inner pages */

.inner-banner {
  width: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, #261043, #0d071a);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 90px;
  /* navbar space */
}


.inner-banner-content .breadcrumb {
  display: block !important;
  /* bootstrap flex cancel */
  text-align: center !important;
  width: 100%;
}


/* CONTENT */
.inner-banner-content {
  max-width: 900px;
}

.inner-banner-content h1 {
  font-size: clamp(28px, 4vw, 46px);
  color: #C29D71;
  margin-bottom: 10px;
  font-weight: 700;
}

.inner-banner-content .breadcrumb {
  font-size: 14px;
  color: #686868;
}

.inner-banner-content .breadcrumb a {
  color: #C29D71;
  text-decoration: none;
}

.inner-banner-content .breadcrumb a:hover {
  text-decoration: underline;
}

.project-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.project-filter button {
  background: #C29D71;
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  transition: .3s;
}

.project-filter button.active,
.project-filter button:hover {
  background: #261043;
  color: #fff;
}

.status {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #27ae60;
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
}

.status.upcoming {
  background: #e67e22;
}

.project-body .meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  margin: 8px 0;
  color: #686868;
}

.project-overview .lead {
  color: #686868;
  font-size: 17px;
  line-height: 1.8;
}

.highlight-box {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 22px;
  border-radius: 16px;
  height: 100%;
}

.highlight-box h6 {
  color: #C29D71;
  margin-bottom: 8px;
}

.trust-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-bar div {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 12px 16px;
  border-radius: 30px;

  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-bar i {
  color: #C29D71;
}

/* Gallery */
/* ===== GALLERY ===== */

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: .4s ease;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: .4s;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card:hover {
  border-color: #C29D71;
}


/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 14px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* Contact */

/* Floating Icons Wrapper */
.floating-icons {
  position: fixed;
  right: 35px;
  bottom: 50px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Common Button */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.float-btn:hover {
  transform: scale(1.08);
}


/* WhatsApp */
.float-btn.whatsapp {
  background-color: #C29D71;
}

/* Call */
.float-btn.call {
  background-color: #C29D71;
}

/* Hover */
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.float-btn.whatsapp {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #C29D71;
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== WHY CARD – LIGHT ABOUT PAGE ===== */
.about-card {
  background: #ffffff;
  /* light card */
  padding: 40px 25px;
  border-radius: 18px;
  height: 100%;
  text-align: center;

  border: 1px solid #e2d9f3;
  /* soft purple border */
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

  transition: .4s ease;
}

/* ICON */
.about-card i {
  font-size: 36px;
  color: #6b4fa3;
  /* dark purple */
  margin-bottom: 15px;
}

/* TITLE */
.about-card h5 {
  margin: 10px 0;
  font-weight: 600;
  color: #1f1235;
  /* near black */
}

/* TEXT */
.about-card p {
  color: #2b2b2b;
  font-size: 15px;
  line-height: 1.6;
}

/* HOVER */
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(107, 79, 163, .25);
  border-color: #6b4fa3;
}

/* Responsive */
@media(max-width:767px) {
  .location-left {
    padding: 20px;
  }

  .location-enquiry-section {
    padding: 30px 0 0;
  }

  .enquiry-left {
    padding: 20px;
  }

  .inner-banner {
    min-height: 260px;
  }

  .inner-banner-content h1 {
    font-size: 26px;
  }

  /* IMAGE */
  .project-card img {
    height: 180px;
  }

  .projects-section {
    padding: 0;
  }

}

