* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #f4f1ec;
}
a {
  text-decoration: none;
}

@font-face {
  font-family: emberly_light;
  src: url("../fonts/EmberlyLight.ttf");
}
@font-face {
  font-family: emberly;
  src: url("../fonts/EmberlySemiBold.ttf");
}
@font-face {
  font-family: satoshi;
  src: url("../fonts/Satoshi-Medium.otf");
}
@font-face {
  font-family: abril;
  src: url("../fonts/Abril_Display_Regular.otf");
}
.propbot-badge-logo-full {
  max-width: 80px !important;
}
.navbar {
  padding-top: 0.6rem;
}
.navbar-toggler {
  background-color: transparent;
  border: none;
  outline: 0;
}
.navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}
.navbar .logo {
  width: 80%;
}
.navbar-toggler-icon {
  color: white !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%28255%2C+255%2C+255%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.custom-menu {
  gap: 8px;
}

.custom-menu .nav-item {
  position: relative;
}

.custom-menu .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  padding: 12px 15px;
  border-radius: 8px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover */
.custom-menu .nav-link:hover {
  background: #d6c29a;
  color: #000000;
  transform: translateX(5px);
}
/* Default navbar (initial) */
.navbar {
  background: transparent;
  transition: all 0.3s ease;
}
.offcanvas {
  height: 100vh;
}

/* Glass effect after scroll */
.navbar.scrolled {
  background: rgb(133 129 129 / 16%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.custom-menu .nav-link:hover::before {
  transform: translateY(-50%) scaleY(1);
}

/* Active state */
.custom-menu .nav-link.active {
  background: #d6c29a;
  color: #fff;
  font-weight: 600;
}

.custom-menu .nav-link.active::before {
  transform: translateY(-50%) scaleY(1);
}

.banner {
  /* --- THE FIX: ADD BLACK OVERLAY --- */
  /* We use linear-gradient to create a semi-transparent black layer.
     'rgba(0, 0, 0, 0.5)' is Black at 50% opacity. 
     You must list the gradient BEFORE the url() for it to sit on top. */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.164)),
    url("https://magicpage-dev.propstory.com/ImageUploads/test/1nnx5eapkmo8jsnsw.webp");
  /* linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://magicpage-dev.propstory.com/ImageUploads/test/1nnx5eapkmo8jsnsw.webp"); */

  /* --- Your Existing Styles (Kept for consistency) --- */
  background-position: top center;
  background-size: cover;
  position: relative; /* Essential if you have absolutely positioned content inside */
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;

  /* Optional: Ensure any text inside the banner is white and legible */
  /* color: #fff; */
}
.navbar-toggler {
  color: white !important;
}

.banner_text {
  color: white !important;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 15%;
}
.footer-section h6,
p {
  text-align: center;
}
.banner_text .welcome_text {
  font-family: "Playfair Display", serif;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0;
  font-weight: 200;
}
.banner_text .project_text {
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  margin-top: 0px;
}
.ivy_logo {
  width: 22%;
}
.section-title {
  position: relative;
  display: block; /* change this */
  margin: 1.7rem auto 1rem; /* auto centers */
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  background-color: #003539;
  width: fit-content;
  text-align: center;
  padding: 5px 5rem;
}
.section-title:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}
.section-title::after {
  content: "";
  display: block;
  width: 370px;
  height: 2px;
  background-color: #c6a75e;
  margin: 10px auto 0;
}
.section_para {
  font-family: "abril";
  font-weight: 400;
}
.success_msg,
.error_msg {
  display: none;
}
.banner_form {
  width: 350px;
  position: absolute;
  font-family: "satoshi";
  border: 2px solid #c6a75e36;
  right: 3.5rem;
  bottom: 7rem;
  background-color: #fff;
  padding: 2.5rem 1rem;
}
.banner_form::placeholder {
  -webkit-text-fill-color: #1f2a2a;
}
.banner_form .form-control {
  border: none;
  margin-bottom: 0.5rem;
  padding: 0.8rem;
  border-bottom: 1px solid #c6a75e;
  border-radius: 0;
}
.banner_form .submit-btn {
  background-color: #003539;
  border-radius: 0.2rem;
  color: #fff;
  width: 100%;
}
.banner_form .brochure-btnn {
  background-color: #efefef;
  border-radius: 0.2rem;
  color: #003539;
  margin-right: 0.5rem;
  width: 100%;
  border: 1.5px solid #003539;
}
.banner_form .brochure-btnn:hover {
  background-color: #003539;
}
.banner_form .submit-btn:hover {
  background-color: #efefef;
  border: 1px solid #003539;
  color: #003539;
}
.features-section {
  font-family: "satoshi";
}

.feature-title {
  font-size: 32px;
  font-family: "abril";
  position: relative;
  display: inline-block;
  color: #1f3d3a;
}

.feature-title::after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #c6a75e;
  display: block;
  margin-top: 10px;
}
.tour-title {
  font-size: 32px;
  font-family: "abril";
  position: relative;
  display: inline-block;
  color: #1f3d3a;
}

.tour-title::after {
  content: "";
  width: 100px;
  height: 1px;
  margin: 10px auto 0;
  background-color: #c6a75e;
  display: block;
}

.neibhour-title {
  font-size: 32px;
  font-family: "abril";
  position: relative;
  display: inline-block;
  color: #1f3d3a;
}

.neibhour-title::after {
  content: "";
  width: 270px;
  height: 1px;
  background-color: #c6a75e;
  display: block;
  margin-top: 10px;
}

.feature-text {
  color: #1f2a2a;
  line-height: 1.8;
  text-align: left;
  font-size: 15px;
}
.plot_img {
  width: 80%;
}
.stat-number {
  font-size: 34px;
  color: #c6a75e;
  font-weight: 500;
}

.stat-number span {
  font-size: 18px;
}

.stat-label {
  color: #1f2a2a;
  font-size: 14px;
  margin-top: 5px;
}
.masterplan-list {
  font-family: "satoshi";
}
.masterplan-list ol {
  padding-left: 18px;
  font-size: 13px;
  color: #444;
  line-height: 1.7;
}

.masterplan-list li {
  margin-bottom: 4px;
}

.category-item {
  padding: 30px 15px;
  border: 2px solid #c9a96a;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #1f3d3a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.category-item.hover {
  background-color: #e8dcc2;
  font-weight: 600;
}

.custom-tabs {
  border-bottom: none;
}

/* remove bootstrap default */
.nav-tabs .nav-link {
  border: none !important;
}

/* container */
.custom-tabs {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #d6c29a;
  border-bottom: 1px solid #d6c29a;
}

/* each item */
.custom-tabs .nav-item {
  flex: 1 1 25%;
}

/* each tab */
.custom-tabs .nav-link {
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  background: #f5f2ec;
  color: #1f3d3a;
  font-weight: 500;
  font-size: 14px;
  height: 5.1rem;
  border: 1px solid #d6c29a; /* full border each item */
  border-radius: 0 !important;

  margin: 0;
}
.custom-tabs .nav-item {
  border: 1px solid #c6a75e;
}

/* ACTIVE */
.custom-tabs .nav-link.active {
  background: #e6d8b8;
}

/* HOVER FIX */
.custom-tabs .nav-link:hover {
  background: #efe6d3;
  border: 1px solid #d6c29a; /* force same border */
}
.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.video-thumb,
.video-player {
  width: 100%;
  border-radius: 3px;
}
.play-btn i,
.pause-btn i {
  font-size: 28px;
  color: #000;
}
/* .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #a5a5a5;
  color: #5a4638;
  border: none;

  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
} */

.pause-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}
.clubhouse {
  display: flex;
  justify-content: space-between;
  /* margin-top: 15rem; */
}

.clubhouse img {
  width: 100%;
  /* position: absolute; */
  /* bottom: -2rem; */
  right: 3rem;
  float: right;
}
.postion-relative {
  position: relative;
}
.amenities-section {
  background-color: #e2ded4;
  font-family: "satoshi";
}
.amenities-section .feature-text {
  color: #5a4638;
  text-align: left;
}
.club_image {
  width: 45%;
}
.border_right {
  border-right: 1px solid #c6a75e;
}
.amenities-card {
  border: 1px solid #c6a75e;
  padding: 5px 5px;
  margin: 0 auto 1rem;
  height: 7.7rem;
}
.amenities-card img {
  width: 55%;
}
.amenities-card p {
  color: #5a4638;
  font-size: 0.8rem;
  text-align: left;
  padding-top: 0.4rem;
  margin-bottom: 0;
}
.ps_5 {
  padding-left: 2rem;
}
.maroon_color {
  color: #5a4638;
}
.photoframe {
  width: 100%;
  margin-top: 3rem;
  padding-left: 7rem;
}

.marquee {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 2px solid #c6a75e;
  border-bottom: 2px solid #c6a75e;
  font-family: "abril";
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 15s linear infinite;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
}

.marquee-content span {
  color: #5a4638;
  font-size: 16px;
  font-size: 1.8rem;
  position: relative;
  padding: 0 20px;
}

.marquee-content span::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 20px;

  background: url("../images/Star.png") no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.sustain-card {
  background-color: #faf7f2;
  padding: 1rem 0.5rem;
  font-family: "satoshi";
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.sustain-card img {
  width: 240px;
  height: 228px;
  padding-right: 1rem;
}
.sustain-card h6 {
  font-size: 1.1rem;
  color: #5a4638;
  font-weight: 500;
  padding-bottom: 0.5rem;
  padding-right: 4rem;
}
.sustain-card p {
  font-size: 0.9rem;
  padding-right: 1rem;
  color: #1f2a2a;
}
footer {
  background-color: #fbefd2;
  font-family: "satoshi";
  color: #1f2a2a;
  /* margin-top: 1rem; */
  padding: 1rem 0 2rem;
}
footer a {
  color: inherit;
  text-decoration: none;
  font: inherit;
}

.footer_logo img {
  width: 20%;
  height: 25%;
}
.footer_logo .ivylogo {
  width: 12%;
}
.a-link {
  color: #000;
}

.hr_line {
  border: none;
  height: 2px;
  margin-top: 2rem;
  background-color: #c6a75e;
}
.footerlinks {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerlinks a {
  padding: 0 0.7rem;
}
.footerlinks img {
  width: 100%;
}

.swiper {
  width: 100%;
}

.swiper-slide {
  width: 80%;
  transition: all 0.4s ease;
  opacity: 0.5;
  transform: scale(0.8);
}

.swiper-slide img {
  width: 100%;
}

.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}
.swiper-slide-prev,
.swiper-slide-next {
  transform: scale(0.7);
  opacity: 0.9;
}
.custom-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  border: none;
  outline: none;
  box-shadow: none;
}
.custom-nav img,
.custom-nav img {
  width: 60%;
}
.about_text {
  background-color: #fff;
  padding: 2rem;
  margin-top: 3rem;
}
.about_text .text-start {
  display: flex;
  justify-content: center;
}

.about_text .stat-label::after {
  content: "";
  width: 140px;
  height: 1px;
  text-align: center;
  background-color: #c6a75e;
  display: block;
  margin-top: 10px;
}
.about_image {
  width: 100%;
  padding-bottom: 1rem;
  height: 150px;
}
.about_image1 {
  width: 100%;
  padding-bottom: 1rem;
  height: 300px;
}

/* Connectivity Section  */
.location-section {
  position: relative;
  width: 100%;
  margin: auto;
  height: 600px;
}

/* CENTER BOX */
.center-box {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.center-box img {
  width: 60%;
}
.form-control:focus {
  box-shadow: none;
}
.loc {
  position: absolute;
  text-align: center;
  width: 150px;
}

.loc p {
  font-size: 14px;
}

.loc span {
  font-size: 12px;
  color: gray;
}

/* PIN ANIMATION */
.pin {
  width: 50px;
  animation: zoomPin 1.5s infinite;
}

@keyframes zoomPin {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

/* POSITIONING */
.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.left-top {
  left: 10%;
  top: 15%;
}
.left-bottom {
  left: 10%;
  bottom: 15%;
}

.right-top {
  right: 16%;
  top: 15%;
}
.right-bottom {
  right: 15%;
  bottom: 10%;
}

/* DOTTED LINES */
.loc::before {
  content: "";
  position: absolute;
  border: 1px dashed #c6a75e;
}

/* vertical line */
.top::before {
  width: 0;
  height: 80px;
  left: 50%;
  top: 100%;
}

.bottom::before {
  width: 0;
  height: 56px;
  left: 50%;
  bottom: 110%;
}

/* horizontal */
.left::before {
  width: 218px;
  height: 0;
  right: -208px;
  top: 59%;
}

.right::before {
  width: 212px;
  height: 0;
  left: -241px;
  top: 69%;
}

/* diagonal lines */
.left-top::before {
  width: 46px;
  height: 161px;
  border-right: none;
  transform: rotate(270deg);
  border-bottom: none;
  right: -36px;
  bottom: -139px;
}

.right-top::before {
  width: 43px;
  height: 149px;
  border-left: none;
  border-bottom: none;
  transform: rotate(90deg);
  left: -12px;
  bottom: -134px;
}

.left-bottom::before {
  width: 33px;
  height: 154px;
  border-right: none;
  transform: rotate(90deg);
  border-top: none;
  right: -26px;
  top: -95px;
}

.right-bottom::before {
  width: 35px;
  height: 148px;
  border-left: none;
  transform: rotate(270deg);
  border-top: none;
  left: -17px;
  top: -99px;
}
.tab-content .location-section {
  width: 80%;
  margin: 0 auto;
  margin-top: -3rem;
}
.tab-content .right-top::before {
  width: 32px;
  height: 107px;
  border-left: none;
  border-bottom: none;
  transform: rotate(90deg);
  left: 14px;
  bottom: -69px;
}
.tab-content .right::before {
  width: 133px;
  height: 0;
  left: -158px;
  top: 63%;
}
.tab-content .right-bottom::before {
  width: 37px;
  height: 113px;
  border-left: none;
  transform: rotate(270deg);
  border-top: none;
  left: 1px;
  top: -90px;
}
.tab-content .left-top::before {
  width: 38px;
  height: 127px;
  border-right: none;
  transform: rotate(270deg);
  border-bottom: none;
  right: -16px;
  bottom: -94px;
}
.tab-content .left-bottom::before {
  width: 39px;
  height: 127px;
  border-right: none;
  transform: rotate(90deg);
  border-top: none;
  right: -11px;
  top: -88px;
}
.tab-content .left::before {
  width: 135px;
  height: 0;
  right: -137px;
  top: 56%;
}
.gallery-section {
  background-color: #e9e2d8;
}
.tab-icon {
  display: none;
}
.padding_side {
  padding: 0 4rem;
}
.tab-content,
.connectivity-section {
  background-color: #fff9eb;
}
.padding_ls {
  padding-right: 4rem;
}
.mySwiper {
  overflow: hidden;
}

.mySwiper .swiper-slide {
  transition: 0.4s ease;
  transform: scale(0.9);
  opacity: 0.6;
}

/* CENTER IMAGE */
.mySwiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

.mySwiper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.chat-bot-icon {
  bottom: 76px;
}
.chat-bot-icon,
.chat-screen .chat-header,
.main-menu-btn,
.brochure-btn {
  background-image: linear-gradient(
    to right,
    #003539,
    #003539,
    #003539,
    #003539,
    #003539
  );
}
.chat-screen.show-chat {
  bottom: 140px;
}

.sticky-form {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 9999;
}
.submit-btn {
  background-color: #003539;
  border-radius: 0.2rem;
  color: #fff;
  width: 100%;
}
.submit-btn:hover {
  background-color: #003539;
  border-radius: 0.2rem;
  color: #fff;
  border: 2px solid #fff;
  width: 100%;
}
.sticky-form .form-control {
  border-radius: 0;
  padding: 9px 10px;
  border: none;
  border-bottom: 1.5px solid #003539;
}

.sticky-box {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 16px 15px 5px;
}

.sticky-box input {
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
}

.sticky-box input:focus {
  border-color: #000;
  box-shadow: none;
}

.sticky-btn {
  border-radius: 10px;
  font-weight: 500;
  padding: 10px 18px;
}

.custom-input {
  border-radius: 0;
  border: none;
  padding: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1.5px solid #003539;
}

.custom-input:focus {
  border-color: #000;
  box-shadow: none;
}

.modal-content {
  backdrop-filter: blur(10px);
  padding: 10px;
}

.btn-dark {
  background: #000;
  border: none;
}

.btn-dark:hover {
  background: #222;
}

.btn-outline-dark:hover {
  background: #000;
  color: #fff;
}
.brochure-sticky-btn {
  position: fixed;
  font-family: "satoshi";
  right: -65px;
  top: 50%;
  transform: rotate(90deg);
  background: #003539;
  color: #fff;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0px 0px 8px 8px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.brochure-sticky-btn:hover {
  background: #222;
  color: #fff;
}

@media (max-width: 576px) {
  .mySwiper .swiper-slide {
    transform: scale(0.9);
  }

  .mySwiper img {
    height: 260px;
  }
}
.text-left {
  text-align: left !important;
}
.text_align_left {
  text-align: left !important;
}
.tab-content {
  padding: 2rem;
}
.ps_14 {
  padding-left: 14px;
}
.navbar-toggler {
  position: absolute;
  right: 0;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .banner_text .project_text {
    font-size: 2.2rem;
    margin-top: 20px;
  }
  .navbar-toggler {
    position: absolute;
    right: 0;
  }
  .navbar .logo {
    width: 75%;
    margin-left: -5px !important;
  }
  .tab-content {
    padding: 0rem;
  }
  .ivy_logo {
    width: 50%;
  }
  .sticky-form {
    display: none;
  }
  .mobile-btn-wrapper {
    font-family: "satoshi";
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #fff;
    display: flex;
    z-index: 9999;
  }
  .mobile-download-btn1 {
    flex: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    text-decoration: none;
    color: #fff;
    background: rgb(0 53 57);
    border-right: 2px solid #fff;
  }
  .mobile-download-btn1:last-child {
    border-right: none;
  }
  .chat-screen.show-chat {
    bottom: 120px;
  }
  .chat-bot-icon {
    position: fixed;
    bottom: 59px;
  }
  #about .col-6,
  #about .col-4 {
    padding: 0 10px;
  }
  #about .stat-number {
    font-size: 25px;
    color: #5a4638;
  }
  #about .stat-number span {
    font-size: 10px;
  }
  #about .stat-label {
    text-align: center;
  }
  .text_left {
    text-align: left !important;
  }
  .stat-number {
    font-size: 25px;
  }

  .stat-number span {
    font-size: 17px;
  }
  .text-start .col-6 {
    padding: 0;
  }
  .text-start {
    padding-right: 20px;
  }
  .padding_side {
    padding: 0rem 1rem;
  }
  .padding_ls {
    padding-right: 1rem;
  }
  .tour-title {
    padding-left: 10px;
  }
  .banner {
    /* --- THE FIX: ADD BLACK OVERLAY --- */
    /* We use linear-gradient to create a semi-transparent black layer (50% opaque).
     You must place the gradient BEFORE the new image url() in the list. */
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("https://magicpage-dev.propstory.com/ImageUploads/test/1nnx5eapkmo9r813m.webp");

    /* --- Your Existing Styles (Kept identical for consistency) --- */
    background-position: top center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    height: 80vh;
    width: 100%;
  }

  /* ICON always visible */
  .tab-icon {
    width: 22px;
    height: 22px;
    display: block;
    margin: 0 auto;
  }

  /* HIDE TEXT for all tabs */
  /* .tab-text {
    display: none;
  } */

  /* SHOW TEXT only for ACTIVE tab */
  /* .custom-tabs .nav-link.active .tab-text {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    text-align: center;
  } */

  /* layout */
  .custom-tabs .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .custom-tabs .nav-link {
    height: 7.1rem;
  }

  /* optional: make active bigger */
  .custom-tabs .nav-link.active {
    min-width: 120px;
  }

  .right-top,
  .right-bottom {
    right: 0;
  }
  .left-top,
  .left-bottom {
    left: 0%;
  }
  .center-box img {
    width: 35%;
  }
  .tab-content .center-box img {
    width: 50%;
  }
  .right-bottom::before {
    width: 23px;
    height: 66px;
    border-left: none;
    transform: rotate(90deg);
    border-top: none;
    left: 12px;
    top: -33px;
  }
  .right-bottom {
    bottom: 19%;
  }
  .left-bottom::before {
    width: 24px;
    height: 52px;
    border-right: none;
    transform: rotate(270deg);
    border-top: none;
    right: 15px;
    top: -8px;
  }
  .top {
    top: 8%;
  }
  .bottom {
    bottom: 8%;
  }
  .left-bottom {
    bottom: 22%;
  }
  .pin {
    width: 35px;
  }
  .right-top::before {
    width: 29px;
    height: 53px;
    border-left: none;
    border-bottom: none;
    transform: rotate(90deg);
    left: 15px;
    bottom: -34px;
  }
  .right-top {
    top: 22%;
  }
  .left-top::before {
    width: 30px;
    height: 59px;
    border-right: none;
    transform: rotate(270deg);
    border-bottom: none;
    right: 23px;
    bottom: -55px;
  }
  .left::before,
  .right::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .plot-row {
    padding: 15px;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
  }
  .tab-content .location-section {
    width: 100%;
    margin-top: -3rem;
  }
  .tab-content .right-top::before {
    width: 43px;
    height: 73px;
    border-left: none;
    border-bottom: none;
    transform: rotate(90deg);
    left: 27px;
    bottom: -48px;
  }
  .tab-content .right-top {
    top: 22%;
  }
  .tab-content .right {
    top: 53%;
    padding-left: 18px;
  }
  .tab-content .loc p {
    font-size: 11px;
  }
  .tab-content .right-bottom::before {
    width: 57px;
    height: 45px;
    border-left: none;
    transform: rotate(90deg);
    border-top: none;
    left: 11px;
    top: -56px;
  }
  .tab-content .right-bottom {
    bottom: 18%;
  }
  .tab-content .left-bottom {
    bottom: 18%;
  }
  .tab-content .left-top::before {
    width: 37px;
    height: 84px;
    border-right: none;
    transform: rotate(270deg);
    border-bottom: none;
    right: 24px;
    bottom: -47px;
  }
  .tab-content .left-bottom::before {
    width: 60px;
    height: 47px;
    border-right: none;
    transform: rotate(270deg);
    border-top: none;
    right: 3px;
    top: -56px;
  }
  .tab-content .left {
    left: -10px;
    top: 50%;
  }
  .tab-content .left-top {
    top: 22%;
  }
  .about_text {
    padding: 1.5rem;
  }
  .about_image {
    width: 100%;
    height: 100px;
    padding-bottom: 1rem;
  }
  .about_image1 {
    width: 100%;
    padding-bottom: 1rem;
    height: 300px;
  }

  .gallery-item {
    flex: 0 0 90%;
  }
  .footerlinks a {
    padding: 0.2rem;
  }
  footer {
    padding-bottom: 3rem;
  }
  .footer_logo img {
    width: 52%;
  }
  .footer_logo .ivylogo {
    width: 35%;
  }
  .sustain-card {
    align-items: center;
  }
  .sustain-card img {
    width: 195px;
    height: 226px;
    padding-right: 0.7rem;
  }
  .sustain-card p {
    font-size: 0.8rem;
    padding-right: 0rem;
    line-height: 1.2rem;
  }
  .sustain-card h6 {
    padding: 0;
  }

  .photoframe {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }
  .amenities-card {
    padding: 0 8px;
  }
  .amenities-card p {
    font-size: 0.7rem;
  }
  .amenities-card img {
    width: 90%;
  }
  .ps_5 {
    padding-left: 10px;
  }
  .clubhouse img {
    width: 100%;
    right: 2rem;
  }
  .club_image {
    width: 100%;
  }
  .club .feature-title {
    margin-bottom: 4rem;
  }
  .club_image {
    width: 49%;
  }
  .video-wrapper {
    padding: 0;
  }
  .clubhouse {
    /* margin-top: 3rem; */
  }
  .border_right {
    border-right: 0;
  }
  .amenities-section .feature-text {
    padding-right: 0;
  }
  .plot_img {
    width: 100%;
  }
  .custom-tabs .nav-item {
    flex: 1 1 25%;
  }
  .-mt_4 {
    margin-top: -4rem;
  }
  .-mt_1 {
    margin-top: -7px;
  }

  .stat-number,
  .stat-label {
    text-align: center;
  }
  .section-title {
    position: relative;
    display: block;
    font-family: "Playfair Display", serif;
    margin: 1.4rem auto 1rem;
    padding: 5px 15px;
    background-color: #003539;
    font-size: 1.2rem;
  }
  .banner_text .welcome_text {
    font-size: 1.5rem;
    margin: 0px 10px;
  }
  .section_para {
    font-family: "abril";
    font-size: 0.9rem;
    padding: 0 4rem;
  }
  .section-title::after {
    content: "";
    display: block;
    width: auto;
  }
  .banner_form {
    width: 100%;
    position: relative;
    font-family: "satoshi";
    right: unset;
    bottom: unset;
    background-color: #fff;
    padding: 2.5rem 1rem;
    margin: 4rem 0;
  }
}
/* --- Modal Core Functionality --- */

/* The hidden overlay that covers the entire screen */
.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed; /* Stays in place */
  z-index: 9999; /* Sits on top of everything else */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed for the whole overlay */
  background-color: rgba(0, 0, 0, 0.6); /* Black with opacity */

  /* Flexbox is the modern way to center the content box */
  align-items: center;
  justify-content: center;
}

/* This class will be added/removed by JavaScript */
.modal-overlay.is-visible {
  display: flex; /* Using flex instead of block so centering works */
}

/* --- Modal Content Box Styling --- */

.modal-content {
  background-color: #fefefe;
  margin: auto; /* Fallback for older centering methods */
  padding: 0; /* Removing default padding to use header/body/footer */
  border: 1px solid #888;
  width: 80%; /* Width of the content box */
  max-width: 600px; /* Max width to keep it from getting too big */
  border-radius: 8px; /* Nice rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Add depth */

  /* Add an animation */
  animation-name: modalFadeIn;
  animation-duration: 0.4s;
}

/* --- Header, Body, and Footer --- */

.modal-header {
  padding: 15px 20px;
  background-color: #f1f1f1;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  border-top-left-radius: 8px; /* Match content box radius */
  border-top-right-radius: 8px;
  display: flex; /* Center the title and close button */
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.modal-body {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-height: 70vh; /* Set max height so it scrolls if too long */
  overflow-y: auto; /* Enalbe vertical scroll *only* on the body */
}

.modal-footer {
  padding: 15px 20px;
  border-top: 1px solid #e0e0e0;
  text-align: right;
  background-color: #f9f9f9;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* --- Close Buttons --- */

.close-btn {
  color: #aaaaaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close-btn:hover,
.close-btn:focus {
  color: #333;
  text-decoration: none;
}

.btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-secondary {
  background-color: #e0e0e0;
  color: #333;
  border-color: #ccc;
}

.btn-secondary:hover {
  background-color: #d0d0d0;
}
.amenities-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  /* height: 100%; */
  padding: 15px;
}

.amenities-card img {
  max-width: 60px; /* adjust as needed */
  margin-bottom: 10px;
}

.amenities-card p {
  text-align: center;
  margin: 0;
  font-size: 10px;
}
.stat-box {
  height: 100%;
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  transition: 0.3s ease;
}

.stat-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-label {
  margin: 0;
  font-size: 14px;
}

.leader-box {
  background: #fff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.leader-head .small-text {
  font-size: 14px;
  color: #777;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.leader-head h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-top: 8px;
}

.info-card {
  height: 100%;
  padding: 25px 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.info-card h5 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #111;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

@media (max-width: 767px) {
  .leader-box {
    padding: 25px;
  }

  .leader-head h2 {
    font-size: 28px;
  }

  .info-card {
    padding: 18px;
  }
}
.plot-sec {
  background: #f8f9fa;
}

.plot-title {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.plot-sub {
  font-size: 15px;
  color: #666;
}
.plot-table-wrap {
  max-width: 900px;
  margin: auto;
  background: #e9e2d8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.plot-table {
  margin: 0;
}

.plot-table thead {
  background: #003539;
}

.plot-table thead th {
  color: #0e0000;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 18px;
  border: none;
  white-space: nowrap;
}

.plot-table tbody td {
  padding: 16px 18px;
  font-size: 15px;
  color: #111;
  vertical-align: middle;
  border-color: rgba(0, 0, 0, 0.08);
}

.plot-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.45);
}

.plot-table a {
  display: inline-block;
  padding: 8px 18px;
  background: #003539;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
}

.plot-table a:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 767px) {
  .plot-table thead th,
  .plot-table tbody td {
    padding: 12px 10px;
    font-size: 13px;
  }

  .plot-table a {
    padding: 7px 14px;
    font-size: 12px;
  }
}
.plot-banner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.plot_img {
  width: 100%;
  display: block;
  border-radius: 12px;
  filter: blur(5px);
  transform: scale(1.03);
}

.plot-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.enquire-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #003539;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.enquire-btn:hover {
  background: #fff;
  color: #111;
}

@media (max-width: 767px) {
  .plot_img {
    min-height: 260px;
    object-fit: cover;
  }

  .enquire-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .left-bottom {
    left: 8%;
    bottom: 6%;
  }

  .right-top {
    right: 5%;
    top: 8%;
  }

  .left-top {
    left: 8%;
    top: 8%;
  }

  /* remove complex lines for cleaner tablet UI */
  .tab-content .right::before,
  .tab-content .left::before,
  .tab-content .left-top::before {
    display: none;
  }
}
.banner{
    position: relative;
}

.gptw-badge{
    position: absolute;
    top: 13%;
    left: 5rem;
    width: 10%;
    z-index: 99;
    display: inline-block;
    transition: transform .3s ease;
}

.gptw-badge img{
    width: 60%;
    height: auto;
    display: block;
}

.gptw-badge:hover{
    transform: scale(1.05);
}



/* Mobile */
@media (max-width:767px){
    .gptw-badge{
       top: 8%;
        width: 12%;
        left: 1rem;
    }

    .gptw-badge img{
        width: 100%;
    }
}