body {
  overflow-x: hidden;
  width: 100%;
  background-color: transparent;
}
.section-before-reveal,
.section-after-reveal {
  background-color: white;
}
.leisure-carousel-container {
  max-width: 100%;
  overflow: hidden; /* Prevent horizontal scroll */
  padding: 0;
}

.leisure-wrapper {
  max-width: calc(1320px + 120px);
  margin: 0 auto;
  padding-left: 150px;
  padding-right: 0;
  transition: padding-left 0.3s ease;
}

.leisure-wrapper.dragging {
  padding-left: 20px;
  max-width: 100%;
}

.swiper {
  overflow: visible;
  padding-bottom: 20px;
  margin-right: -120px;
}

.swiper.dragging-active {
  margin-right: 0;
}

.swiper-slide {
  width: calc((100vw - 90px) / 4 - 20px);
  max-width: 320px;
  overflow: hidden;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.swiper-slide::after {
  content: attr(data-label);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

/* Pagination container */
.swiper-pagination {
  position: relative;
  margin-top: 35px;
}

/* Default (inactive) dots */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent; /* hollow */
  border: 1px solid #ecc962; /* border color */
  opacity: 1;
  margin: 0 6px !important;
  gap: 8px;
}

/* Active dot = filled */
.swiper-pagination-bullet-active {
  background: #ecc962; /* fill color */
  border-color: #ecc962; /* match border */
}

/* Tablet */
@media (max-width: 991px) {
  .leisure-wrapper {
    padding-left: 60px;
  }

  .swiper-slide {
    width: calc((100vw - 80px) / 2);
    max-width: none;
  }
}

/* Mobile */
/* Mobile Fix */
@media (max-width: 575px) {
  .leisure-wrapper {
    padding: 0;
    overflow: hidden;
  }

  .swiper {
    margin: 0 auto; /* Center the swiper */
    padding: 0 15px; /* Equal padding on both sides */
    overflow: hidden;
    width: 100%;
  }

  .swiper-wrapper {
    align-items: center; /* Center slides vertically if needed */
  }

  .swiper-slide {
    width: 100% !important; /* Each slide takes full available width */
    max-width: none;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
  }

  .swiper-slide img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
  }
}
/* .swiper-horizontal>.swiper-pagination-bullets {
    left: 0;
    right: 0;
    justify-content: center;
  }
} */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: -130px;
  width: 100%;
  right: -34px;
}
@media (max-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: -90px;
    width: 100%;
    right: -34px;
  }
}
@media (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0px;
    width: 100%;
    right: -34px;
  }
}
#leisureCarousel .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e3d7b8;
  opacity: 1;
  margin: 0 5px;
  border: none;
}

#leisureCarousel .carousel-indicators .active {
  background-color: #c6a96a; /* active dot color */
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  padding: 0;
  /* margin-right: 40%; */
  margin-bottom: 1rem;
  /* margin-left: 15%; */
}
@media (max-width: 767px) {
  .carousel-item .col-md-6:not(:first-child) {
    display: none !important;
  }
  .carousel-item .row {
    justify-content: center !important;
  }
  .carousel-item .col-12 {
    max-width: 80%;
    margin: 0 auto;
  }
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-right: auto !important;
  }
  /* .carousel-indicators {
    margin-left: 35%;
  } */
}
@media (max-width: 767px) {
  .location-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  .text-center h2 {
    font-size: 24px !important;
    margin-bottom: 15px !important;
    line-height: 1.9rem;
  }

  /* .text-center span {
            font-size: 16px !important;
            padding: 6px 15px !important;
            margin-left: 0 !important;
            margin-top: 10px !important;
            display: block !important;
        } */

  .col-auto > div > span:first-child {
    font-size: 14px !important;
  }

  .col-auto > div > span:last-child {
    font-size: 14px !important;
    padding: 6px 12px !important;
  }
}
header {
  position: fixed;
  width: 100%;
  height: 90px;
  background: linear-gradient(
    to bottom,
    rgba(72, 69, 69, 0.6),
    rgba(228, 228, 228, 0)
  );
  z-index: 1000;
}
@media (max-width: 991px) and (min-width: 768px) {
  .top-row-image {
    height: 250px !important;
  }
  .bottom-row-image {
    height: 180px !important;
  }
  .tall-image-container {
    height: 442px !important;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 24px !important;
  }
  .section-subtitle {
    font-size: 13px !important;
  }
  .section-button {
    font-size: 13px !important;
    padding: 3px 12px !important;
  }
  /* section {
                padding: 40px 10px !important;
            } */
  .top-row-image {
    height: 140px !important;
  }
  .bottom-row-image {
    height: 100px !important;
  }
  .tall-image-container {
    height: 252px !important;
  }
  .row.g-3 {
    --bs-gutter-x: 0.5rem !important;
    --bs-gutter-y: 0.5rem !important;
  }
}

@media (max-width: 576px) {
  .top-row-image {
    height: 120px !important;
  }
  .bottom-row-image {
    height: 85px !important;
  }
  .tall-image-container {
    height: 217px !important;
  }
}

.reveal-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 400px;
  margin: 0 auto;
  background: transparent;
  /* background: rgba(255, 255, 255, 0.15); */
  overflow: hidden;
}

.reveal-section::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("assets/wake.webp") center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.2s linear;
  z-index: -1;
  pointer-events: none;
  will-change: opacity;
}

.text-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.text-content h1 {
  width: 560px;
  height: 40px;
  font-family: "Philosopher";
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  color: white;
}

.text-content p {
  display: none;
}

.reserve-btn {
  margin-top: 32px;
  width: 162px;
  height: 36px;
  background: linear-gradient(90deg, #9747ff 0%, #1e91bc 100%);
  border: none;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s, box-shadow 0.2s;
}

.reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(151, 71, 255, 0.4);
}
@media (max-width: 768px) {
  .reveal-section {
    height: 300px;
  }

  .text-content h1 {
    width: 100%;
    max-width: 320px;
    height: auto;
    font-size: 24px;
    line-height: 120%;
  }

  .reserve-btn {
    margin-top: 24px;
    width: 140px;
    height: 32px;
    font-size: 12px;
    padding: 6px 16px;
  }

  .spacer {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .reveal-section {
    height: 250px;
  }

  .text-content h1 {
    max-width: 280px;
    font-size: 20px;
    line-height: 130%;
  }

  .reserve-btn {
    margin-top: 20px;
    width: 130px;
    height: 30px;
    font-size: 11px;
  }

  .spacer {
    font-size: 16px;
    padding: 20px;
    text-align: center;
  }
}
.form-container {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-bottom: 30px;
  color: #333;
  /* text-align: center; */
}

.form-group {
  margin-bottom: 20px;
}

input,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

input:focus,
select:focus {
  outline: none;
  border-color: #ecc962;
}

select {
  background: white;
  cursor: pointer;
}

button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: #ecc962;
  border: none;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background: #d4b554;
}

button[type="submit"]:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

.loading {
  display: none;
  text-align: center;
  margin-top: 10px;
  color: #666;
}

.loading.show {
  display: block;
}
.building-mob {
  display: block;
  margin: 0 auto;
  width: 85vw;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.9));
}
@media (max-width: 991px) {
  .mobile-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }

  .mobile-stats-grid {
    order: 2;
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
  }

  .mobile-building-image {
    order: 1;
    width: 100%;
    max-width: 350px;
    margin: 20px auto;
  }

  .mobile-arrow-button {
    order: 3;
    margin-top: 30px;
    margin-left: 0 !important;
  }

  .lifestyle-section-mobile {
    padding: 40px 0 40px !important;
  }

  .mobile-heading {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
  }
}
.white-placeholder::placeholder {
  color: #ffffff;
  opacity: 0.8;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  /* Increase container width */
  .container {
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  /*     
    .d-block.d-md-none {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
    } */

  .d-block.d-md-none .row {
    margin-left: -25px;
    margin-right: -25px;
  }

  .d-block.d-md-none .row > [class*="col-"] {
    padding-left: 4px;
    padding-right: 4px;
  }

  .homes-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 767px) {
  #vastu-section {
    padding-bottom: 280px !important;
  }

  .enquire-form-wrapper {
    bottom: -120px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #vastu-section {
    padding-bottom: 180px !important;
  }
}
@media (max-width: 768px) {
  #vastu-section h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    white-space: nowrap;
  }

  #vastu-section p {
    font-size: 16px !important;
    font-family: "poppins";
    font-weight: 400 !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .enquire-form-wrapper {
    bottom: -100px;
  }
}
@media (max-width: 768px) {
  /* .hero-section {
      padding-bottom: 65px !important;
    } */

  .video-wrapper {
    position: static !important;
    transform: none !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin-top: 30px !important;
  }

  .hero-video {
    height: 200px !important;
  }
  .reserve-btn {
    padding: 0px 0px !important;
    font-size: 14px !important;
  }
}

.building-mob {
  display: block;
  margin: 20px auto 0;
  width: 300px;
  height: 300px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.9));
}

/* ------------------ DESKTOP SLIDER ------------------ */
.desktop-slide-wrapper {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.desktop-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.desktop-slide.active {
  transform: translateX(0);
  z-index: 2;
}

.desktop-slide.to-left {
  transform: translateX(-100%);
  z-index: 1;
}
/* ACTIVE STATES */
.desktop-building.right.out {
  transform: translateX(120%);
  opacity: 0;
}

.desktop-building.left.in {
  transform: translateX(0);
  opacity: 1;
}
/* ------------------ BUILDINGS ------------------ */
.desktop-building {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.8s ease;
}

.desktop-building.right {
  transform: translateX(100%);
}

.desktop-building.left {
  transform: translateX(-100%);
}

.desktop-building.active {
  transform: translateX(0);
  opacity: 1;
}

/* ------------------ ARROW ------------------ */
.arrow-link span:last-child {
  transition: transform 0.3s ease;
}

.arrow-link:hover span:last-child {
  transform: scale(1.1);
}
/* @media (max-width: 767px) {
        section.py-5 {
            padding-top: 0 !important;
            padding-bottom: 0 !important;
        }
        
        section .container {
            padding-left: 0;
            padding-right: 0 ;
            max-width: none !important;
            width: 100%;
            margin: 0;
            background-color: white;
        }
        
        section .container > div {
            border: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }
    } */
@media (max-width: 768px) {
  .reserve-tour-btn {
    padding: 5px 14px !important;
    font-size: 14px !important;
    bottom: 0px !important;
    letter-spacing: 0.5px !important;
  }
}

/* Extra small mobile */
@media (max-width: 480px) {
  .reserve-tour-btn {
    padding: 10px 20px !important;
    font-size: 12px !important;
    bottom: 0px !important;
  }
}
.mobile-slide {
  display: none;
}
.mobile-slide.active {
  display: block;
}
@media (max-width: 767px) {
  .enquire-section {
    padding: 0 !important;
  }

  .enquire-section .container {
    padding: 0 !important;
    max-width: 100% !important;
  }

  .enquire-box {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
}
#contactForm input,
#contactForm select {
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background-clip: padding-box;
}

#contactForm input,
#contactForm select {
  -webkit-appearance: none;
  appearance: none;
}
.leisure-card {
  position: relative;
  overflow: hidden;
}

.leisure-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dark shade overlay */
.leisure-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.15),
    transparent
  );
  z-index: 1;
}

/* Text on image */
.leisure-text {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  text-align: center;

  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;

  z-index: 2;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

/* Optional hover zoom */
.leisure-card img {
  transition: transform 0.6s ease;
}

.leisure-card:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .panache-desc {
    font-size: 14px;
    line-height: 160%;
    margin-bottom: 16px;
    padding: 0 16px;
  }
}
@media (max-width: 991px) {
  footer .row > div {
    margin-bottom: 20px;
    text-align: center;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .enquire-section .btn {
    margin-top: 20px;
    width: 80%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@media (max-width: 767px) {
  #contactForm .col-lg-auto {
    width: 100%;
    text-align: center;
  }

  #contactForm button {
    width: 80%;
    max-width: 200px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
/* MOBILE ONLY footer order */
@media (max-width: 767px) {
  footer .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer .col-lg-4:nth-child(1) {
    /* Logo */
    order: 1;
    margin-bottom: 16px;
  }

  footer .col-lg-4:nth-child(3) {
    /* Location */
    order: 2;
    margin-bottom: 16px;
  }

  footer .col-lg-4:nth-child(2) {
    /* Call */
    order: 3;
  }
}
/* Mobile view only */
@media (max-width: 767px) {
  #luxury-5bhk-section h1 {
    font-weight: 100;

    font-size: 55.66px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;

    background: radial-gradient(
      25.12% 49.39% at 50% 50.32%,
      #000000 0%,
      #413000 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    white-space: nowrap;
    max-width: 327px;
    margin: 40px auto 0;

    /* 🔥 HEIGHT + WIDTH CONTROL */
    transform: scaleX(0.82) scaleY(2.08);
    transform-origin: center;
  }
}
/* MOBILE STACKED TITLE */
.luxury-title {
  text-align: center;
  text-transform: uppercase;
}

/* 5BHK LUXURY + APARTMENTS */
.luxury-title .line-1,
.luxury-title .line-2 {
  display: block;
  /* font-family: "Acumin Variable Concept", sans-serif; */
  font-weight: 100;
  font-style: normal; /* ExtraCondensed handled by font */
  font-size: 62px;
  line-height: 100%;
  letter-spacing: 0.1em; /* 10% */
  text-align: center;
  vertical-align: middle;

  background: #ecc96266;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* LOCATION LINE */
.luxury-title .location-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 8px 0;

  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.01em; /* 1% */
  color: #ffffff;
}

/* Slight scale down for small mobiles */
@media (max-width: 480px) {
  .luxury-title .line-1,
  .luxury-title .line-2 {
    font-size: 40px;
    letter-spacing: 0.08em;
  }
}
/* Hide on desktop */
@media (min-width: 768px) {
  .luxury-title {
    display: none;
  }
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent !important;
  border: 1px solid #ecc962 !important;
  opacity: 1 !important;
  margin: 0;
}

/* Remove Bootstrap pseudo element */
.carousel-indicators [data-bs-target]::after {
  display: none !important;
}

/* Active dot = filled */
.carousel-indicators .active {
  background-color: #ecc962 !important;
}

select option {
  margin-left: 20px; /* left gap for option text */
}
/* Force lite-youtube to behave like a block-level video */
lite-youtube {
  display: block;
  width: 100% !important;
  height: 50% !important;
  max-width: 100%;
}

/* Maintain cover behavior */
lite-youtube iframe {
  width: 100%;
  height: 50%;
}
@media (max-width: 767px) {
  .location-section {
    background: #2d3c4f;
    padding: 40px 0;
  }

  /* wrapper keeps equal margins */
  .location-wrapper {
    padding: 0 20px;
  }

  /* each row */
  .location-row {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 18px;
    flex-wrap: nowrap;
  }

  /* left text */
  .location-title {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;

    white-space: nowrap;
    overflow: hidden;
  }

  /* right badge */
  .location-time {
    margin-left: auto;
    min-width: 130px;
    padding: 6px 12px;

    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;

    color: #ecc962;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;

    position: relative;
  }

  /* gradient border: top, right, bottom only */
  .location-time::after {
    content: "";
    position: absolute;
    inset: 0;

    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-left: 0;

    border-image-source: linear-gradient(
      90deg,
      rgba(236, 201, 98, 0) 0%,
      #ecc962 100%
    );
    border-image-slice: 1;

    pointer-events: none;
  }
}
