:root {
  /* Primary earthy tones */
  --color-primary: #3c2e12; /* Deep earthy green */
  --color-primary-dark: #a4713e; /* Rich dark brown */
  --color-primary-gradient-start: #7f6a3f; /* Warm brown start */
  --color-primary-gradient-end: #955f26; /* Golden brown end */
  --hang-button-primary: #48321a; /* Button dark brown */
  /* Soft neutrals */
  --color-white: #dcdcdc; /* Soft light gray */
  --color-black: #0d0d0d; /* Almost black */
  --color-gray-light: rgba(220, 220, 220, 0.15); /* Transparent light gray */
  --color-gray-medium: #7f6a3f; /* Warm brown (matches gradient start) */
  --color-gray-dark: #48321a; /* Deep brown (matches button & border) */
  --color-gray-text: #48321a; /* Text brown */
  --color-gray-muted: #7f6a3f; /* Muted brown/accent */
  --color-gray-bg: #0d0d0d; /* Deep background */
  --color-border: #48321a; /* Border brown */
  /* Accent colors */
  --color-accent: #493b1e; /* Accent deep brown */
  --color-danger: #48321a; /* Danger/border brown */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

/* General body layout */
body {
  background-color: white;
  overflow-x: hidden;
}

/* -------------------
   Navbar
------------------- */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  z-index: 100;
  /* height: 100px; */
  padding: 15px;
}

.logo img {
  width: 200px;
  /* height: 70px; */
}

.nav-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gray-medium);
  transition: all 0.3s ease;
  /* padding: 0.8rem 10px; */
  padding: 0.5rem 0.5rem;
  border-radius: 6px;
  text-align: center;
  min-width: fit-content;
  cursor: pointer;
  /* background-color: #2563eb; */
  gap: 2px;
}

.nav-link i {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

/* Active link style */
.nav-link.active {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 0.8rem 10px;
  transition: all 0.3s ease;
}

/* Hover */
.nav-link:hover {
  background-color: rgba(128, 128, 128, 0.15);
  color: var(--color-black);
  transition: background-color 0.3s ease;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
}

/* -------------------
   Layout
------------------- */
.layout {
  display: flex;
  /* margin-top: 70px; */
  padding-top: 76px;
}

/* Left Content */
.content {
  direction: flex;
  width: 75%;
  gap: 15px;
}
.thank-you-container {
  /* display: none; */
  margin: 0;
  height: 100%;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75%;
  position: relative;
  overflow: hidden;
}

.thank-you-container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background-image: url("./images/01 CODENAME MANSIONZ, KHARGHAR_page-0001.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.text-container {
  /* display: none; */
  /* width: 100%; */
  direction: flex;
  gap: 15px;

  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 30px 50px;
  border-radius: 10px;
  text-align: center;
  height: 259px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
}

/* Sections */
.section {
  padding: 10px 16px 0 0;
  background-color: var(--color-white);
  overflow: hidden;
  /* margin-bottom: 20px; */
}

/* -------------------
   Card Section
------------------- */
.card {
  padding: 1.5em;
  border: 2px solid rgb(238, 231, 231);
  /* border-radius: 10px; */
  background: var(--color-white);
  /* max-width: 850px; */
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card h2 {
  text-align: start;
  text-transform: capitalize;
  line-height: 2em;
  font-size: 35px;
  color: var(--color-gray-dark);
  margin-bottom: 10px;
}
.card h3 {
  text-align: start;
  text-transform: capitalize;
  line-height: 1.5em;
  font-size: 25px;
  color: var(--color-gray-dark);
  margin-bottom: 10px;
}

.card p {
  text-align: justify;
  padding-bottom: 15px;
  font-size: 16px;
  line-height: 1.6em;
  color: var(--color-gray-text);
}

/* Hidden Paragraph Animation */
.hidden-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s ease;
}

.hidden-content.show {
  max-height: 1000px;
  opacity: 1;
}

/* Read More Button */
.read-more-btn {
  background: linear-gradient(
    90deg,
    var(--color-primary-gradient-start),
    var(--color-primary-gradient-end)
  );
  color: var(--color-white);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  transition: all 0.3s ease;
  display: inline-block;
}

.read-more-btn:hover {
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(72, 50, 26, 0.3);
}

/* -------------------
   Hanging Button
------------------- */

.hang-button {
  color: var(--color-white);
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(
    90deg,
    var(--color-primary-gradient-start),
    var(--color-primary-gradient-end)
  );
  background-size: 200% 100%; /* double width for animation */
  /* animation: gradientMove 3s ease infinite; */
  box-shadow: 0 8px 20px rgba(144, 44, 51, 0.4);
  position: relative;
  animation: smoothSwing 4s ease-in-out infinite;
  transform-origin: top center;
  width: fit-content;
  /* margin: 30px auto 10px auto; */
  padding: 10px 60px;
  overflow: hidden;
  text-transform: capitalize;
}

.hang-button:hover {
  background: linear-gradient(
    90deg,
    var(--hang-button-primary),
    var(--color-primary-dark)
  );
  box-shadow: 0 8px 20px rgba(144, 44, 51, 0.4);
  transform: translateY(-3px);
}

.hang-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-primary-gradient-start),
    var(--color-primary-gradient-end)
  );
  background-size: 200% 100%; /* double width for animation */
  animation: smoothSwing 4s ease-in-out infinite;
}

@keyframes smoothShine {
  0% {
    left: -120%;
  }
  50% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

/* -------------------
   Fixed Form Section
------------------- */
.form-section {
  width: 25%;
  /* color: white; */
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-section div {
  background: var(--color-white) !important;
  display: flex;
  flex-direction: column;
  /* color: #2563eb; */
  padding: 2rem;
  gap: 0.5rem;
}

.form-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* -------------------
   Swiper
------------------- */

.property-section {
  /* margin-top: 150px; */
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  /* margin-top: 200px; */
}

.property-section .property-card-video-div {
  width: 100% !important; /* or adjust as needed */
  height: 100% !important; /* auto height */
  overflow: hidden;
}
.property-card-video {
  width: 100% !important;
  height: 100% !important;
}
.property-card-video-1 {
  display: block;
}
.property-card-video-2 {
  display: none;
}
.mySwiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mySwiper img,
.mySwiper video {
  width: 100%;
  height: 600px;
  object-fit: fill;
}

.swiper-pagination {
  top: 15px;
}
/* Pagination */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
  width: 14px;
  height: 6px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary-dark);
  width: 24px;
  opacity: 1;
}

/* -------------------
   Amenities Swiper
------------------- */

/* .mySwiperAmenities,
.mySwiperFloorPlan, */
.mySwiperGallery {
  width: 100%;
  margin-top: 20px;
  max-width: 100vw;
  /* margin-top: 20px; */
  padding-bottom: 30px; /* space for pagination dots */
}

.mySwiperGallery .swiper-slide {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}
.mySwiperGallery .swiper-slide:hover {
  transform: translateY(-5px);
  /* cursor: pointer; */
}
.mySwiperGallery .swiper-slide img {
  width: 100%;
  height: 350px; /* you can set 300 / 350 / 400 as per design */
  object-fit: cover; /* ensures proper cropping and equal height */
  object-position: center;
  display: block;
}

.amenity-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-weight: 600;
  font-size: 1rem;
  background-color: var(--color-danger);
  opacity: 0.8;
}

.mySwiperGallery .swiper-pagination-bullet {
  background: #7f6a3f; /* earthy green */
  opacity: 0.6;
}

.mySwiperGallery .swiper-pagination-bullet-active {
  background: #48321a; /* dark brown */
  opacity: 1;
}

/* Property Card */
.property-info-card {
  position: absolute;
  top: 20%;
  left: 3%;
  width: 350px;
  background: rgba(255, 255, 255, 0.2); /* translucent white */
  backdrop-filter: blur(16px);
  padding: 2px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  text-align: center;
  height: 480px;
  overflow: hidden;
}

.property-info-card .offer {
  background: linear-gradient(
    90deg,
    var(--color-primary-gradient-start),
    var(--color-primary-gradient-end)
  );
  color: #fff;
  padding: 15px 20px;
  font-weight: 300;
  border-radius: 4px;
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
  width: 100%;
  background-size: 200% 100%; /* double width for animation */
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes smoothSwing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.property-info-card h2 {
  font-size: 22px;
  color: #111;
  margin-bottom: 6px;
}

.property-info-card .sub {
  /* color: #555; */
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 300;
  width: fit-content;
  /* background-color: red; */
  display: flex;
  flex-direction: row;
  /* justify-content: space-evenly; */
  text-align: center;
  align-items: center;
  /* row-gap: 2px; */
}

.property-info-card .sub span {
  font-weight: 500;
  color: var(--color-gray-dark);
  font-size: 14px;
}

.property-info-card .floors {
  /* background: rgb(235, 233, 233); */
  padding: 10px;
  /* border-radius: 4px; */
  text-align: center;
  font-weight: 300;
  margin-bottom: 10px;
  width: 95%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  /* justify-content: ce; */
}
.floors > b {
  /* color:var(--color-primary-dark); */
  font-weight: 700;
}

.property-info-card .offer-box {
  position: relative;
  overflow: hidden;
  border: 3px dashed #f4f4f4;
  /* background: var(--color-primary-dark); */
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  /* animation: subtleFloat 4s ease-in-out infinite alternate; */
}

/* Add shimmer effect */
.property-info-card .offer-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  /* keep the diagonal shine (30°) */
  /* background: linear-gradient(
    30deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 40%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.25) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: offerShine 5s ease-in-out infinite; */
}

/* Floating animation (optional subtle bounce) */
@keyframes subtleFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Shimmer animation */
@keyframes offerShine {
  0% {
    left: -120%;
  }
  50% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

.property-info-card .offer-box p {
  font-size: 14px;
  font-weight: 600;
  /* margin-bottom: 10px; */
  margin: 2px 0;
  width: 100%;
}
.property-info-card .price {
  text-align: center;
  font-size: 20px;
  color: var(--color-white);
  margin-top: 20px;
  margin-bottom: 20px;
}

.property-info-card .price span {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}
.title-section {
  display: flex;
  justify-content: space-between; /* horizontally center */
  align-items: center; /* vertically center */
  width: 100%;
  /* background-color: #2563eb; */
}
.home-section-card {
  display: flex;
  flex-direction: row;
  margin-bottom: 12px;
  gap: 14px;
  /* align-items: center; */
}
.home-section-card-left {
  flex: 1.2;
}

.home-section-card-right {
  flex: 0.5;
  height: 100%;
  overflow: hidden;
  width: 100%;
  box-shadow: 10px 8px 10px rgba(0, 0, 0, 0.55); /* shadow */
  border-radius: 6px; /* optional, looks nicer */
}

.home-section-card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------
   Responsive Design
------------------- */
.section {
  scroll-margin-top: 100px;
}

/* Tablets */
@media (max-width: 1366px) {
  .property-info-card {
    top: 12%;
  }
}
@media (max-width: 1024px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }

  .layout {
    flex-direction: column;
  }

  .content {
    /* margin-top: 120px; */
    width: 100%;
  }

  .form-section {
    width: 100%;
    position: relative;
    height: auto;
    margin-top: 30px;
  }
  .form-section div {
    background: var(--color-white) !important;
    display: flex;
    flex-direction: column;
    /* color: #2563eb; */
    padding: 1rem;
    gap: 0.5rem;
  }

  .card {
    margin: 20px auto;
    width: 90%;
  }

  .card h2 {
    font-size: 28px;
    text-align: center;
  }
  .card h3 {
    font-size: 2rem;
    text-align: center;
  }

  .title-section h3 {
    font-size: 22px; /* smaller heading */
  }

  .title-section .hang-button {
    font-size: 0.95rem;
    padding: 8px 30px; /* smaller padding */
  }
}

/* ---------- faq style  section ------- */
.faq-item {
  border-bottom: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
  padding-left: 0;
  /* padding: 10px 0; */
}

.faq-items li {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 6px 0;
}

.faq-bullet {
  font-size: 14px;
  color: #7f6a3f;
}

.faq-text {
  flex: 1;
}

.faq-question {
  width: 100%;
  padding: 1em;
  text-align: left;
  background: #eee;
  border: none;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.caret {
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #333 transparent transparent transparent;
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.caret.down {
  transform: rotate(180deg);
}

.faq-answer {
  background: #f9f9f9;
  display: none;
  font-size: 0.95rem;
  /* white-space: pre-line; */
  padding: 1em;
  /* padding-top: 5px; */
  text-align: justify;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- faq style  section ------- */

/* -------------------
   Modal Styles
------------------- */
.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.89);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--color-black);
  /* padding: 2rem; */
  border-radius: 3px;
  width: 80%;
  max-width: 700px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  animation: modalPop 0.4s ease;
  cursor: default;
}

.modal-content::after,
.modal-content::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: conic-gradient(
    from var(--angle),
    rgba(164, 113, 62, 1) 0deg,
    rgba(255, 255, 255, 1) 65deg,
    rgba(164, 113, 62, 1) 360deg,
    transparent 210deg,
    transparent 360deg
  );
  z-index: -1;
  border-radius: 3px;
}

.modal-content::before {
  filter: blur(15px);
  opacity: 0.5;
  z-index: -2;
}

.modal-content::after {
  animation: glowing-border 3.5s linear infinite;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes glowing-border {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

/* Spin animation */
/* @keyframes spin {
  from {
    transform: rotate(0deg) translate(-50%, -50%);
  }
  to {
    transform: rotate(360deg) translate(-50%, -50%);
  }
} */
/* Two Column Modal Layout */
.modal-two-col {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 0;
  overflow: hidden;
  padding-bottom: 15px;
  /* background-color: red; */
}

.modal-contact {
  background-color: var(--color-primary-dark);
  /* position: absolute; */
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
}

.modal-contact a {
  color: #fff;
  text-decoration: none;
}

.center-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 5px;
}

.tab-modal-button {
  margin-top: 45px;
}

/* Left Side */
.modal-left {
  /* flex: 0.6; */
  /* background: linear-gradient(135deg, var(--color-primary-dark), #b91c1c); */
  /* color: white; */
  width: 40%;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  text-align: left;
  align-items: center;
  justify-content: center;
  /* height: 100%; */
}

.modal-left h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-left p {
  line-height: 1.5;
  font-size: 0.95rem;
}

.promo-box {
  /* margin-top: 1.5rem; */
  background: rgba(130, 129, 129, 0.15);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
}
.promo-box > h3 {
  font-size: 18px;
  color: var(--color-primary-dark);
}

/* Right Side */
.modal-right {
  width: 60%;
  /* background: green; */
  color: var(--color-gray-dark);
  text-align: left;
  height: 100%;
  padding: 1.5rem;
}
.modal-right h4,
.developer-name {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;

  /* Gradient text */
  background: linear-gradient(
    90deg,
    rgba(164, 113, 62, 1) 0%,
    rgba(255, 255, 255, 1) 65%,
    rgba(164, 113, 62, 1) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* For Firefox */
  background-clip: text;
  color: transparent;
  text-align: center;
}

.modal-right span {
  color: #b91c1c;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  font-size: 1.2rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
  /* padding-right: 15px; */
  /* justify-content: center; */
}

.modal-form input {
  padding: 0.9rem;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  background: transparent; /* 👈 THIS REMOVES WHITE BACKGROUND */
}

.form-container input {
  background: #fff;
}

.modal-form input:focus {
  border-color: var(--color-primary-dark);
  box-shadow: 0 4px 8px -3px rgba(0, 0, 0, 0.35); /* Better underline shadow */
}

.modal-input {
  color: #dcdcdc;
}

.field-error {
  color: #dc2626;
  font-size: 0.75rem;
  display: block;
  margin-top: 4px;
}

/* Close Button */
.close-modal,
.tab-modal1-close-modal,
.tab-modal2-close-modal,
.tab-modal3-close-modal,
.successmsg-close-modal {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 1.8rem;
  color: var(--color-primary-dark);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: 0.2s;
}

.close-modal:hover,
.successmsg-close-modal:hover,
.tab-modal2-close-modal:hover,
.tab-modal3-close-modal:hover,
.tab-modal1-close-modal:hover {
  color: #b91c1c;
}

.thankyou-video {
  /* background-color: #fff; */
  display: flex;
  justify-content: center;
}
/* #thankVideo {
  width: 100px;
}
*/
#thankImage {
  width: 100px;
}
.success-content {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  color: var(--color-primary-dark);
}

.tab-btn-call {
  font-size: 16px;
}
/* ---------- whatsapp btn      ---------  */
.whatsapp-button {
  background-color: #25d366; /* WhatsApp green */
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  padding: 8px 40px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe57; /* slightly darker on hover */
}

.whatsapp-button i {
  font-size: 1.2em;
}

.we-promise {
  background: var(--color-black);
  padding: 20px 20px;
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  color: var(--color-primary-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 10px; */
  /* margin-bottom: 15px; */
}

.brand-logo {
  width: 250px;
  height: 150px;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--color-primary-dark);
  letter-spacing: 0.5px;
}

.brand-location {
  font-size: 12px;
  color: #555;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promise-heading {
  text-align: center;
  background: linear-gradient(
    90deg,
    rgba(164, 113, 62, 1) 0%,
    rgba(255, 255, 255, 1) 65%,
    rgba(164, 113, 62, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* important */
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* height: 100%; */
  justify-content: center;
  /* margin-top: 50px; */
  /* background-color: green; */
}

.promise-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;

  /* Keep original background */
  background-color: var(--color-black);

  /* Gradient text */
  background: linear-gradient(
    90deg,
    rgba(164, 113, 62, 1) 0%,
    rgba(255, 255, 255, 1) 65%,
    rgba(164, 113, 62, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* For Firefox */
  background-clip: text;
  color: transparent;
}

.promise-icon {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.siteplan-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  border: 2px solid rgb(233, 228, 228);
  background-color: #fff;
  font-size: 1rem;
}

/* Add border to all table cells */
.siteplan-table td,
.siteplan-table th {
  border: 1px solid rgb(174, 174, 174);
  padding: 8px;
}

/* Odd rows with white background */
.siteplan-table tr:nth-child(odd) {
  background-color: white;
}

/* Even rows with gray background */
.siteplan-table tr:nth-child(even) {
  background-color: #e4e3e3; /* light gray */
}
.privacy-content-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: red; */
  margin-top: -80px;
}
.privacy-content-image {
  width: 30%;
  height: 30%;
}
.privacy-policy-heading {
  text-align: center;
  text-transform: capitalize;
  margin-top: 40px;
  font-size: 24px;
}
.location {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.location-group {
  /* background: #f9f9f9; */
  padding: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.location-title {
  font-weight: 700;
  font-size: 1.2rem;
  /* color: #0077b6; */
  /* margin-bottom: 10px; */
}

.location-items {
  list-style: none;
  padding: 0;
  margin: 0;
  /* padding-left: 1em; */
}

.location-items li {
  display: flex;
  align-items: start;
  gap: 0.8em;
  margin-bottom: 6px;
  text-align: left;
}
.location-bullet {
  color: #7f6a3f;
  font-size: 1.2em;
  font-weight: bold;
  flex-shrink: 0;
  /* Optionally add more styling here */
}

.location-text {
  display: block;
  color: #222;
}

.location-item svg {
  flex-shrink: 0;
}

.location-item .time {
  font-weight: 500;
  color: #333;
}

.tcpp-ul {
  padding: 55px;
}

.tcpp-ul li {
  margin-bottom: 10px;
}
.tab-modal-img {
  width: 270px;
  height: 300px;
}
.developer-name {
  font-size: 2rem;
  margin-bottom: -15px;
}
.tab-modal-img-logo,
.tab-modal-img-logo3 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 100%;
  margin: 2px auto;
}

.tab-modal-img-logo3 {
  height: 250px;
  overflow: hidden;
}

.tab-modal-img-logo > img,
.tab-modal-img-logo3 > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tab-modal-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plain-btn {
  color: white;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  background: linear-gradient(
    90deg,
    var(--color-primary-gradient-start),
    var(--color-primary-gradient-end)
  );
  background-size: 200% 100%; /* double width for animation */
  animation: gradientMove 3s ease infinite;
  box-shadow: 0 8px 20px rgba(72, 50, 26, 0.4);
  padding: 8px 40px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 35px;
}

.plain-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(144, 44, 51, 0.4);
}

.siteplan-div {
  display: flex;
  gap: 40px; /* spacing between left and right */
  align-items: flex-start; /* align top edges */
  justify-content: center;
  flex-wrap: wrap; /* responsive wrap */
}

/* Table styles example */
.siteplan-table {
  width: 100%; /* left side width */
  min-width: 250px; /* prevent too small */
  border-collapse: collapse;
  font-family: "Poppins", sans-serif;
  border: 2px solid rgb(233, 228, 228);
}

/* Right side container to stack image and button */
.image-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

/* Card image container */
.card-img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* max-height: 60vh; */
}

.card-img-container > img {
  width: 100%;
  height: auto;
  max-width: 60vw;
  filter: blur(1px);
}
.card-img-container .costing-card-img {
  width: 450px;
  max-width: 450px;
  overflow: hidden;
  position: relative;
}

.costing-card-img .virtual-tour,
.location-image {
  width: 100%;
  height: auto;
  max-width: 100vw;
  /* max-height: 40vh; */
  filter: blur(0px);
}

.virtual-tour img,
.location-image img {
  width: 100%;
  height: auto;
  max-width: 100vw;
  max-height: 50vh;
  filter: blur(0px);
}

.masterplan {
  width: 100% !important;
  height: 40vh !important;
}

/* Button sliding from top to center */
.enquiry-button {
  position: absolute;
  top: 50%; /* base vertical reference */
  left: 50%;
  transform: translate(-50%, -200%); /* start above and out of view */
  opacity: 0; /* hidden initially */
  background-color: rgba(72, 50, 26, 0.9);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.4s ease, opacity 0.4s ease;
  white-space: nowrap;
  cursor: pointer;
  text-transform: uppercase;
}

/* When hovered — slide to center and show */
.card-img-container:hover .enquiry-button {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.play-icon {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  font-weight: bold;
  /* pointer-events: auto; enable clicking */
  cursor: pointer;
  z-index: 3;
  user-select: none;
  width: 100%;
  /* background-color: red; */
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Optional: overlay fade-up effect */
.black-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  /* pointer-events: none; */
  cursor: pointer;
}

.card-img-container:hover .black-overlay {
  transform: translateY(0);
}
.video-black-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 0.4s ease;
  /* pointer-events: none; */
  cursor: pointer;
}

/* Download button styling */
.download-btn {
  display: block;
  margin: 15px auto 0 auto; /* centers horizontally */
  align-self: center;
  width: fit-content;
  text-align: center;
}

#gallery-wrapper {
  width: 100%;
  /* Remove grid styles */
  display: block !important;
  overflow: hidden;
}
#garden-slide {
  /* height: 100% !important;
  width: 95% !important; */
  /* background-color: #2563eb; */
  margin: 0 !important;
  cursor: zoom-in;
}

/* Image styling */
#gallery-wrapper img {
  width: 100%;

  /* height: 100%;
  border-radius: 10px;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.about-logo {
  width: 250px;
}

.footer {
  font-size: 12px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  padding-left: 28px;
  margin-bottom: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 640 640'><path d='M530.8 134.1C545.1 144.5 548.3 164.5 537.9 178.8L281.9 530.8C276.4 538.4 267.9 543.1 258.5 543.9C249.1 544.7 240 541.2 233.4 534.6L105.4 406.6C92.9 394.1 92.9 373.8 105.4 361.3C117.9 348.8 138.2 348.8 150.7 361.3L252.2 462.8L486.2 141.1C496.6 126.8 516.6 123.6 530.9 134z'/></svg>")
    no-repeat left center;
  background-size: 14px 14px;
  font-family: "Poppins", sans-serif;
  color: #222;
  text-align: left;
}

.footer h4 {
  text-align: justify;
  font-weight: normal;
}

.qr-card {
  width: 100%;
  /* background-color: #fff; */
  text-align: center;
}

.qr-card .qr {
  width: 70px;
  height: 70px;
  border: 1px solid #ccc;
  margin: 0 auto;
  margin-bottom: 10px;
}
.copy-write {
  border-top: 1px solid rgb(215, 208, 208);
  margin-top: 15px;
  padding: 35px 0;
  padding-top: 18px;
  text-align: center;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.copy-write a {
  text-decoration: none;
  color: #222;
}
/* Add vertical divider between items */
.copy-write div:not(:last-child) {
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
}

.copy-write div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: rgb(180, 180, 180);
}
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 10px 0;
  width: 100%;
  box-sizing: border-box;
}

.amenity-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  padding: 15px;
  cursor: default;
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  /* margin-bottom: 12px; */
  font-size: 1.1rem;
  color: #333;
}

.amenity-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.amenity-card h4 {
  /* font-size: 1.1rem; */
  color: var(--color-primary-dark);
  font-weight: 600;
}
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-modal img {
  width: 480px;
  height: 480px;
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: white;
  padding: 10px;
  border-radius: 50%;
  user-select: none;
}

.pulse-button {
  position: relative;
  padding: 12px 30px;
  font-size: 18px;
  color: white;
  filter: invert(30%) sepia(44%) saturate(385%) hue-rotate(71deg)
    brightness(83%) contrast(88%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}

/* Optional hover effect for button itself */
.pulse-button:hover {
  transform: scale(1.05);
}

/* Pulse shadow effect */
.pulse-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(
    30,
    144,
    255,
    0.5
  ); /* same as button color but transparent */
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0.7;
  z-index: -1;
  animation: pulseShadow 1.5s infinite;
}
/*     ---------------- toaster ui     ------------- */
#confetti-container {
  pointer-events: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 150px;
  overflow: visible;
  z-index: 9999;
}

#congrats-message {
  position: fixed;
  left: 2%;
  bottom: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: var(--color-black);
  color: #fff;
  min-width: 260px;
  max-width: 360px;
  padding: 10px 15px; /* extra bottom space for bar */
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.2);
  text-align: left;
  white-space: pre-line;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  overflow: hidden;
}

#congrats-message.show {
  display: block;
  opacity: 1;
}
.toast-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6em;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  line-height: 1;
}
.toast-close:hover {
  color: #fad2d2;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  background: rgb(115, 209, 115);
  border-radius: 0 10px 0 0;
  width: 0%;
  z-index: 10001;
  transition: none;
}
.confetti-piece {
  position: absolute;
  width: 8px;
  height: 14px;
  background-color: red;
  opacity: 0.9;
  will-change: transform, opacity;
  border-radius: 2px;
}

.toast-flex {
  display: flex;
  align-items: center;
  gap: 14px;
}

.toast-initials {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-gray-medium);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 2px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.toast-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.toast-name {
  font-weight: bold;
  font-size: 1.08em;
}

.toast-action {
  font-size: 1.2em;
  font-weight: 400;
  color: #fff;
  opacity: 0.87;
}
.toast-time {
  font-size: 0.96em;
  font-weight: 400;
  color: #fff;
  opacity: 0.87;
}

/*     ---------------- toaster ui end  ------------- */

/*  -------------------  chat bot css    ----------------- */

#chatbot-container {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 10000;
  font-family: Arial, sans-serif;
}
#chatbot-button {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
  background: white;
  padding: 0;
}
#chatbot-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  user-select: none;
}

#chatbot-button img,
.chatbot-header img {
  transition: opacity 0.5s ease, width 0.5s ease, height 0.5s ease,
    margin-left 0.5s ease;
  user-select: none;
  object-fit: cover;
}

#chatbot-window {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 32px;
  width: 410px;
  max-height: 580px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.13);
  overflow: hidden;
  flex-direction: column;
  animation: slideup 0.3s ease;
  font-size: 15px;
}
@keyframes slideup {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes chatIconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.chatbot-header {
  background: var(--color-primary-dark);
  color: #fff;
  padding: 10px 10px 10px 10px;
  font-weight: bold;
  font-size: 18px;
  text-align: left;
  position: relative;
  display: flex;
  /* justify-content: ; */
  align-items: center;
  overflow: hidden;
}
#closeChatbot {
  height: 50%;
  /* text-align: justify; */
}
.header-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 10px;
  /* animation: chatIconBounce 1s ease infinite; */
}
.chatbot-messages {
  padding: 12px;
  height: 340px;
  overflow-y: auto;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
}
.chatbot-input-area {
  padding: 12px;
  border-top: 1px solid #eee;
  background: #fff;
}
.chatbot-msg {
  margin-bottom: 12px;
  line-height: 1.5;
  max-width: 80%;
  white-space: pre-line;
}
.bot-msg {
  color: white;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  gap: 10px;
}

.message-text {
  background: var(--color-gray-muted);
  padding: 8px 14px;
  border-radius: 14px;
}

.bot-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 4px; /* to align with text baseline */
}
.user-msg {
  background: var(--color-primary-gradient-end);
  color: white;
  align-self: flex-end;
  padding: 8px 14px;
  border-radius: 14px;
}
.config-btn,
.budget-btn {
  display: inline-block;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 12px;
  margin: 4px 4px 4px 0;
  cursor: pointer;
  font-size: 14px;
  /* background: var(--color-primary-gradient-end); */
  background: var(--color-primary-dark);

  transition: background 0.2s;
  /* opacity: 0.5; */
}
.config-btn:hover,
.budget-btn:hover {
  background: var(--hang-button-primary);
}
.close-chat {
  position: absolute;
  right: 8px;
  top: 8px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

/* ----------------- end chat bot ------------------- */

/* --------- submit button loading state css ---------------- */

button.loading {
  opacity: 0.7;
  pointer-events: none;
}

button.loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* --------- submit button loading state css ---------------- */

/* Responsive Design */
@media (max-width: 768px) {
  .home-section-card {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 12px;
    gap: 14px;
    align-items: center;
  }

  .property-card-video-1 {
    display: none;
  }
  .property-card-video-2 {
    display: block;
  }

  .home-section-card-left {
    flex: 1.2;
    padding: 5px;
  }

  .home-section-card-right {
    flex: 0.5;
    height: 100%;
    overflow: hidden;
    width: 100%;
  }

  .home-section-card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .location-group {
    padding: 1px;
    border-radius: 8px;
    overflow: hidden;
  }

  .location-items {
    list-style: none;
    padding-left: 0.5rem;
  }
  .layout {
    display: flex;
    /* margin-top: 70px; */
    padding-top: 0;
  }

  .content {
    width: 100%;
    direction: flex;
    gap: 15px;
  }

  .section {
    padding: 2px 2px;
  }
  .property-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    overflow: hidden;
  }

  .property-card-info {
    padding-bottom: 15px;
  }

  .property-info-card {
    position: relative;
    background: #fff;
    padding: 2px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2); /* translucent white */
    backdrop-filter: blur(16px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 527px;
    overflow: hidden;
  }

  .mySwiper img,
  .mySwiper video {
    width: 100%;
    height: 200px;
    object-fit: fill;
  }

  .siteplan-div {
    align-items: center;
    text-align: center;
  }

  .image-container {
    width: 90%;
    min-width: auto;
  }
  .we-promise {
    display: none;
  }

  .modal-left,
  .modal-right {
    width: 100%;
    height: 100%;
  }

  .modal-right {
    padding: 1.5rem;
    margin-top: -15px;
  }

  .modal-two-col {
    gap: 0 !important;
    flex-direction: column;
    height: 450px !important;
  }
  .modal-left {
    width: 100% !important;
    overflow: hidden !important;
    display: none;
  }

  .hamburger {
    display: flex;
  }
  .navbar {
    width: 100%;
  }
  .nav-container {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9); /* semi-transparent white */
    /* backdrop-filter: blur(5px); MAIN BLUR EFFECT */
    /* -webkit-backdrop-filter: blur(15px); for Safari */

    justify-content: flex-start;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100vh;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 35px;
  }

  .nav-container.active {
    display: flex;
  }

  .nav-link {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    padding: 0.8rem 1rem;
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
  }

  .card {
    width: 100%;
    text-align: center;
    padding: 0.2rem;
    overflow: hidden;
  }

  .card h2 {
    font-size: 24px;
  }

  .card p {
    font-size: 15px;
  }

  .hang-button {
    padding: 10px 40px;
    font-size: 1rem;
  }

  .form-section {
    padding: 1rem;
  }

  .form-section input,
  .form-section textarea {
    padding: 0.9rem;
  }

  .property-info-card {
    width: 90%;
    left: 50%;
    top: auto;
    bottom: 10%;
    transform: translateX(-50%);
  }
  .siteplan-table {
    border-collapse: collapse;
    width: 100%;
    font-family: "Poppins", sans-serif;
    border: 2px solid rgb(233, 228, 228);
    background-color: #fff;
    font-size: 0.8rem;
    text-align: left;
  }

  .title-section {
    flex-direction: column; /* stack vertically */
    text-align: center;
    gap: 5px;
    padding: 10px 0;
  }

  .title-section h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .brand-logo {
    width: 250px;
    height: 100px !important;
  }

  .modal-content {
    width: 95%;
  }

  .plain-btn {
    font-size: 0.5rem;
    padding: 6px 15px;
  }

  .amenity-card {
    padding: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    text-align: center;
  }

  .mySwiperAmenities .swiper-slide img,
  .mySwiperFloorPlan .swiper-slide img {
    width: 100%;
    height: auto !important;
    object-fit: contain;
    display: block;
    background: #000;
  }

  .mySwiperFloorPlan .swiper-slide img {
    width: 650px;
  }

  .mySwiperGallery .swiper-slide img {
    width: 100%;
    height: 270px; /* you can set 300 / 350 / 400 as per design */
    object-fit: cover; /* ensures proper cropping and equal height */
    object-position: center;
    display: block;
  }

  .copy-write {
    border-top: 1px solid rgb(215, 208, 208);
    margin-top: 15px;
    padding: 35px 0;
    padding-top: 18px;
    text-align: center;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    overflow: hidden;
  }
  .qr {
    width: 50px;
    height: 50px;
  }

  /* Add vertical divider between items */
  .copy-write div:not(:last-child) {
    position: relative;
    padding-right: 5px;
    margin-right: 5px;
  }

  .copy-write div:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: rgb(180, 180, 180);
  }

  /* Button sliding from top to center */
  .enquiry-button {
    position: absolute;
    top: 50%; /* base vertical reference */
    left: 50%;
    transform: translate(-50%, -200%); /* start above and out of view */
    opacity: 0; /* hidden initially */
    background-color: rgba(72, 50, 26, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 400;
    transition: transform 0.4s ease, opacity 0.4s ease;
    white-space: nowrap;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
  }

  .thank-you-container {
    margin: 0;
    height: 100%;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .thank-you-container::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./images/01 CODENAME MANSIONZ, KHARGHAR_page-0001.png");
    background-size: cover;
    background-position: center;
    z-index: -1;
  }

  .text-container {
    /* display: none; */
    width: 100%;
    direction: flex;
    gap: 15px;

    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 30px 50px;
    border-radius: 10px;
    text-align: center;
    height: 259px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 120px;
  }

  .location {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .privacy-policy-heading {
    text-align: center;
    text-transform: capitalize;
    margin-top: 0px;
    font-size: 24px;
  }
  #chatbot-window {
    width: 65vw;
    right: 5vw;
    bottom: 10px;
  }

  .center-btn {
    flex-direction: column;
  }
}

/* Caption styling */

/* Responsive layout */
@media (max-width: 1200px) {
  #gallery-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  #gallery-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #gallery-wrapper {
    grid-template-columns: 1fr;
  }
}

@keyframes pulseShadow {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  /* chat bot responsive css --------- start ----------- */

  #chatbot-container {
    right: 16px;
    bottom: 10px;
  }
  #chatbot-window {
    width: 90vw;
    right: 5vw;
    bottom: 10px;
  }

  /* ---------- end ----------  */
  .card h2 {
    font-size: 20px;
  }

  .read-more-btn,
  .hang-button {
    width: 100%;
  }
  .card-img-container .costing-card-img {
    width: 250px;
    max-width: 250px;
    overflow: hidden;
    position: relative;
  }
  .title-section {
    flex-direction: column; /* stack vertically */
    text-align: center;
    gap: 5px;
    padding: 10px 0;
  }

  .title-section h3 {
    font-size: 16px;
  }

  .title-section .hang-button {
    font-size: 0.8rem;
    padding: 6px 20px;
  }

  .modal-left {
    width: 100% !important;
    overflow: hidden !important;
  }

  .modal-left h3 {
    font-size: 1rem !important;
    /* background-color: red; */
  }
  .navbar {
    width: 100%;
  }
  .play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
    font-size: 24px;
    gap: 0;
  }

  .play-icon div {
    font-size: 1.2rem;
  }

  .property-section {
    /* margin-top: 150px; */
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 0;
    background: #000;
  }
  .content {
    margin-top: 0;
    padding-top: 77px;
    width: 100%;
  }

  .card-img-container > img {
    width: 100%;
    height: auto;
    max-width: 100vw;
  }

  .costing-card-img {
    width: 250px;
    max-width: 250px;
    overflow: hidden;
    position: relative;
  }
  .brand-logo {
    width: 150px;
    height: 100px !important;
  }
  .lightbox-modal img {
    width: 280px;
    height: 280px;
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
  }
  .location-title {
    font-weight: 700;
    font-size: 0.8rem !important;
    /* color: #0077b6; */
    /* margin-bottom: 10px; */
  }
  .location-items {
    font-size: 0.8rem !important;
  }

  .location {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    text-align: left;
  }
  #congrats-message {
    font-size: 0.8rem;
    max-width: 280px;
    padding: 8px 12px;
  }
}
