@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");

:root {
  --primary-color: #000 /*Old Color: #2d3f32 */;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

a,
span,
small {
  display: inline-block;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
font-family: "Lexend", sans-serif;
  margin: 0;
  padding: 0;
  letter-spacing: 1.57px;
}

h1 {
  font-size: 50.11px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 18.82px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  margin: 0;
  padding: 0;
}

.p1 {
  padding: 80px 40px;
}

.btn {
  color: #000;
  padding: 10px 15px;
  border: 1px solid #000;
  border-radius: 50px;
  font-size: 14px;
}

strong {
  font-weight: 500;
}

/* ===========header-section========== */

.header-section {
  position: absolute;
  width: 100%;
  z-index: 10;
  padding: 20px 40px;
  background-color: #000;
}

.logo-right-sec img {
  height: 63px;
}

.logo-left-sec img {
  height: 50px;
}

.hembargur {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  cursor: pointer;
  background: #a8883f;
  padding: 10px 5px;
  border: 1px solid white;
}

.hembargur img {
  height: 20px;
}

.header-section .right-sec {
  width: 30%;
  justify-content: space-between;
}

nav.main-menu {
  position: fixed;
  background: #000;
  height: 100vh;
  top: 0;
  right: -100%;
  width: 35%;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.sub-menu-colse {
  padding: 20px 40px;
  cursor: pointer;
}

ul.menu > li.menu-items {
  padding: 0px 25px;
}

ul.menu > li.menu-items:last-child {
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

ul.menu > li.menu-items > a {
  padding: 18px 0;
  cursor: pointer;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  transition: 0.3s;
  width: 100%;
  border-bottom: 1px solid #c69136;
}

ul.menu > li.menu-items:nth-last-child(2) a {
  border-bottom: none;
  color: #fff;
}

nav.main-menu.active {
  right: 0;
  transition: all 0.3s ease-in-out;
}

header.header-section.activeScroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #000;
}

/* =========Banner Layout=========== */
.banner-section {
  height: auto;
  position: relative;
}

.banner-section .d-flex {
  display: flex;
  /*height: 100%;*/
}

.banner-image-section {
  width: 100%;
  position: relative;
}

.banner-image-section img {
  width: 100%;
  height: auto;
  /*object-fit: cover;*/
  object-position: left;
}

.carousel-item {
  position: relative;
}

.carousel-item::after {
  /* content: ""; */
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: unset !important;
}

.carousel-indicators {
  z-index: 99;
}

.carousel-item img {
  position: relative;
  z-index: 0;
}

.banner-right-section {
  width: 35%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  height: 100vh;
  display: none;
}

.enquiry-section {
  width: 100%;
  max-width: 511px;
  margin-top: 60px;
}

.enquiry-section h3 {
  font-size: 28px;
  margin-bottom: 4px;
  color: #fff;
}

.enquiry-section p {
  font-size: 14px;
  color: #b5c3d9;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 35px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid #c69136;
  color: #000;
  outline: none;
  border-radius: 4px;
  font-size: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c9a96e;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #9fb2d1;
  margin-bottom: 20px;
}

.checkbox input {
  margin-top: 3px;
  width: inherit;
  height: inherit;
}

button[type="submit"] {
  width: 100%;
  padding: 15px;
  background: #fff;
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.banner-containt {
  position: absolute;
  bottom: 2%;
  z-index: 9;
  color: #fff;
  padding: 0 55px;
}

.banner-btn {
  margin: 15px 0;
}

.banner-btn a {
  color: #fff;
  padding: 10px 15px;
  border: 1px solid #fff;
  border-radius: 50px;
}

/* overview-section */
.overview-section {
  position: relative;
}

.overview-section::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    #0a0a0aff 0%,
    #0a0a0a5e 50%,
    #0a0a0a00 100%
  );
  position: absolute;
  top: 80%;
  transform: translateY(-100%);
  left: 93%;
  z-index: 99;
  height: 75%;
}

.apex-content {
  width: 830px;
  padding: 10px 22px;
  text-align: justify;
  margin: 50px 22%;
}

.apex-content::after {
  content: "";
  position: absolute;
  background: #f2f8ff;
  width: 80%;
  height: 50%;
  top: 0;
  left: 42.5%;
  transform: translateX(-50%);
  z-index: -1;
}

.apex-image {
  width: 75%;
  border-radius: 25px;
  overflow: hidden;
}

.apex-btn {
  position: relative;
}

.apex-btn .btn {
  padding: 12px 25px;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color) !important;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.apex-btn .btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* =======choose Project-section======== */

.why-section {
  /*background: url("../images/project-img/project.webp");*/
  background-color: #000;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  color: fff;
}

.nav-btns button {
  margin-left: 10px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  border-radius: 50%;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.slider {
  overflow: hidden;
  width: 100%;
}

.cards {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

.card {
  min-width: calc(100% / 3 - 17px);
  box-sizing: border-box;
  padding: 5px;
  border: none;
  background: transparent;
}

.prev,
.next {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  padding: 5px;
  font-size: 21px;
  position: absolute;
  top: -16%;
}

button.prev {
  right: 3%;
  left: inherit;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #fff;

}

.card p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
      font-weight: 100;
}

.card:hover {
  transform: translateY(-5px);
}

/* ==============Amenities section================ */
.ami-box {
  max-width: 85%;
  margin: 0 auto;
}

.features-section {
  padding: 60px 0;
}

.features-table {
  width: 100%;
  border-collapse: collapse;
}

.features-table tr {
  position: relative;
}

.features-table tr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.5px;
  background: linear-gradient(
    90deg,
    rgba(13, 77, 161, 0.137) 0%,
    var(--primary-color) 50%,
    rgba(13, 77, 161, 0.137) 100%
  );
}

.features-table tr:last-child::after {
  display: none;
}

.features-table td {
  width: 33.33%;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.features-table td::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0.5px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(13, 77, 161, 0.137) 0%,
    var(--primary-color) 50%,
    var(--primary-color) 100%
  );
}

.features-table tr.sec-row td::before {
  background: linear-gradient(
    180deg,
    var(--primary-color) 0%,
    var(--primary-color) 50%,
    rgba(13, 77, 161, 0.137) 100%
  );
}

.features-table td:last-child::before {
  display: none;
}

.feature-item img {
  width: 40px;
  margin-bottom: 15px;
}

.feature-item h4 {
  margin-bottom: 8px;
  color: #222;
}

.feature-item p {
  color: #777;
}

.side-logo {
  max-width: 103px;
}

.image-link {
  width: 100%;
}

/* ===============pricing-section============== */

.container-fluid.pricing-header.p1 {
  /*background: url("../images/banners/banner1.webp");*/
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;

/*  height: 500px;
  width: 100%;*/
}

.container-fluid.pricing-header.p1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
}

.pricing-header .header h2 {
  position: absolute;
  z-index: 2;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.pricing-section {
  padding: 60px 60px;
  background: #000;
font-family: "Lexend", sans-serif;
}

.pricing-grid {
  grid-template-columns: repeat(3, clamp(150px, 30%, 400px));
  gap: 40px;
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.pricing-card .top {
  justify-content: start;
}

.top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: space-between;
}

.pricing-card .icon {
  width: 45px;
  height: 45px;
  /*border: 1px solid #ccc;*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 !important;
}

.top h3 {
  margin: 0;
  font-size: 18px;
}

.top p {
  margin: 0;
  font-size: 13px;
  color: #777;
}

.info {
  margin-bottom: 20px;
}

/* .row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13px;
} */

.row:last-child {
  border-bottom: none;
}

.row span {
  color: #fff;
}

.row strong {
  color: #000;
}

.info .size {
  border-bottom: 1px solid #c9c9c9;
  gap: 0 40px;
}

.info .price {
  border-bottom: 1px solid #c9c9c9;
}

/* BASE BUTTON */
.pricing-card button {
     padding: 12px 30px;
  border-radius: 30px;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  border: 1px solid #c9a35f;
  transition: all 0.3s ease;
}

/* HOVER EFFECT (GOLD GRADIENT) */
.pricing-card button:hover {
  background: linear-gradient(90deg, #b88a2a, #d4a84a);
  color: #000;
  border-color: transparent;
  transform: translateY(-2px);
}

/* CARD HOVER (keep but smoother) */
.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card .info span,
.pricing-card .info strong{
  font-size: 18px;
}


/* ================= floor plan section============= */

.floor-section {
  background: #fff;
  padding: 0 20px;
}

.title {
  text-align: center;
  margin-bottom: 30px;
}

.tabs-sec {
  display: flex;
  justify-content: space-evenly;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
}

.tab {
  padding: 10px 25px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  position: relative;
}

.tab.active {
  background: #e6ebf2;
  border-radius: 6px 6px 0 0;
}

.tabs {
  display: flex;
  gap: 20px;
  position: relative;
  width: 75%;
  justify-content: space-between;
}

.tab {
  background: none;
  border: none;
  position: relative;
  padding: 10px;
  cursor: pointer;
  padding: 15px 60px;
  font-size: 16px;
  font-weight: 500;
}

.tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: 0.3s;
}

.tab.active::after {
  width: 100%;
}

.floor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.floor-image img {
  width: 70%;
  border-radius: 10px;
  /*height: 100%;*/
}

.floor-details h3 {
  margin-bottom: 10px;
}

.desc {
  color: #666;
  margin-bottom: 35px;
}

.info-boxes {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.box {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 8px;
  flex: 1;
}

.box span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 5px;
}

.box strong {
  font-size: 24px;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.features li {
  margin-bottom: 8px;
  position: relative;
  /* padding-left: 20px; */
}

.features li img {
  margin-right: 5px;
}

/* .features li::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background-image: url("../images/icons/charm_circle-tick.png"); 
  background-size: contain;
  background-repeat: no-repeat;
} */

.btn {
  padding: 12px 25px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.btn:hover {
  padding: 12px 25px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.floor-image {
  width: 90%;
  margin: 0 auto;
  height: 88%;
  text-align: right;
}

.floor-details {
  width: 90%;
}

.floor-content {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.4s ease;
  position: absolute;
  width: 100%;
}

.floor-content.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  transition: 0.4s ease;
}

.floor-section .container-fluid.p1 {
  overflow: hidden;
  position: relative;
}

.floor-content {
  width: 100%;
  left: 0;
}

p.pro-name {
  position: absolute;
  bottom: 0;
  color: #fff;
  font-weight: 700;
  left: 29%;
}

/* ==========location-section=========== */

.location-section {
  position: relative;
  width: 100%;
  overflow: hidden;
font-family: "Lexend", sans-serif;
}

.loc-banner {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.location-sec {
  background: #fff;
  padding: 70px 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.title {
  font-size: 28px;
  margin-bottom: 50px;
  letter-spacing: 1px;
  color: #222;
}

.advantages {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.location-sec .container {
  max-width: 80%;
}

.item {
  max-width: 352px;
  text-align: center;
}

.rera-num {
  font-size: 13px;
  line-height: 25px;
}

.loc-icon {
  width: 75px;
  height: 75px;
  /*background: #e5f1ff;*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: 0.3s ease;
}

.loc-icon img {
  width: 70px;

  object-fit: contain;
}

.item h4 {
  margin-bottom: 6px;
  color: #222;
}

.item p {
  font-size: 14px;
  color: #000;
}

/*.item:hover .loc-icon {
  background: #1f2d3d;
}*/

.item:hover .loc-icon img {
  /*filter: brightness(0) invert(1);*/
}

/* ========gallery-section========= */

/* .parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 10px;
  height: 650px;
}
.parent div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.div1 {
  grid-column: span 2;
  grid-row: span 2;
}

.div2 {
  grid-column: span 1;
  grid-row: span 1;
}

.div3 {
  grid-column: span 1;
  grid-row: span 1;
}

.div4 {
  grid-column: span 1;
  grid-row: span 1;
}

.div5 {
  grid-column: span 2;
  grid-row: span 1;
} */

.parent {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  width: 100%;
}

.gallery-top-group {
  display: flex;
  gap: 20px;
}

.right-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.gallery-bottom-group {
  display: flex;
  gap: 20px;
}

.parent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.div1 {
  height: 420px;
}

.div2,
.div3 {
  height: 202px;
}

.div4,
.div5 {
  height: 260px;
}

.div1,
.div2,
.div3,
.div4,
.div5 {
  position: relative !important;
  overflow: hidden !important;
}

.div1 a,
.div2 a,
.div3 a,
.div4 a,
.div5 a {
  width: 100%;
  height: 100%;
}

.div1 a img,
.div2 a img,
.div3 a img,
.div4 a img,
.div5 a img {
  width: 100%;
  height: 100%;
}

.light-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.light-box img.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.light-box.active {
  display: block;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
}

.lightbox-next {
  right: 2%;
}

.lightbox-prev {
  left: 2%;
}

/* ========lagecy section============ */

.legacy-section {
  background: #000;
  text-align: center;
}

.legacy-section .container {
  max-width: 850px;
  margin: auto;
}

.legacy-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #ffffff;
}

.legacy-desc {
  line-height: 1.7;
  margin-bottom: 15px;
}

.legacy-stats {
  display: flex;
  justify-content: center;
  gap: 55px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-box {
  background: #e6f2ff;
  padding: 20px 40px;
  border-radius: 10px;
  min-width: 150px;
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box span {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.stat-box p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

.video-container {
  width: 100%;
  max-height: 450px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.video-container video {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===== contact-form ===== */

.contact-section {
  padding: 80px 20px;
  text-align: center;
  background: url("../images/project-img/project.webp");
  background-color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.enquiry-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 40px;
}

.form-box {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
} */

.form-group {
  text-align: left;
}

.form-group.full {
  grid-column: span 2;
}

label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

textarea {
  resize: none;
}

section.contact-section .submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

section.contact-section .submit-btn:hover {
  background: #0a213c;
}

section.contact-section input,
section.contact-section select,
section.contact-section textarea {
  background: #f8f8f8;
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  color: black;
}

section.contact-section input::placeholder,
section.contact-section select::placeholder,
section.contact-section textarea::placeholder {
  color: #000;
}

section.contact-section select {
  padding: 17px 14px;
}

/* =======footer-section======= */
.footer-section {
  background: var(--primary-color);
  color: #cfd8e3;
  padding: 40px 20px;
  text-align: center;
}

.qr-box img {
  width: 80px;
  margin-bottom: 15px;
}

.footer-section h5 {
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.disclaimer {
  font-size: 12px;
  line-height: 1.7;
  max-width: 900px;
  margin: auto;
  color: #b8c3d1;
}

.footer-section hr {
  margin: 25px auto;
  border-color: rgba(255, 255, 255, 0.2);
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  color: #b8c3d1;
}

.footer-bottom span {
  margin: 5px 10px;
  font-size: 12px;
}

.footer-bottom span a {
  color: #b8c3d1;
  transition: 0.3s;
  font-size: 12px;
}

.footer-bottom strong {
  color: #fff;
}

/* =====cta section====== */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.mail-btn,
.call-btn,
.whatsapp-btn {
  width: 50px;
  height: 50px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.mail-btn {
  background: #f2f2f2;
}

.call-btn {
  background: #f2f2f2;
}

.whatsapp-btn {
  background: #f2f2f2;
}

.mail-btn:hover,
.call-btn:hover,
.whatsapp-btn:hover {
  transform: scale(1.1);
}

.call-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsapp-btn {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
}

.call-wrapper:hover .whatsapp-btn {
  opacity: 1;
  max-height: 60px;
  margin-bottom: 10px;
}

/* form-section */

.modal .btn-close {
  top: 2%;
  right: 2%;
  position: absolute;
  border: 1px solid #000000;
  padding: 5px;
  border-radius: 50%;
  z-index: 999;
}

.pop-img {

  width: 230px;
}

.call-whatspp-sec {
  background-color: #000;
  padding: 20px;
}

.call-whatspp-sec p {
  color: #fff;
  margin-bottom: 20px;
}

.call-whatspp-sec .whatsappBtn {
  /* background-color: #78613a; */
  box-shadow: 0px 0px 5px #ccc;
  text-decoration: none;
  color: white;
  font-size: 13px;
  padding: 4px 30px;
  border-radius: 5px;
}

.call-whatspp-sec .callBtn {
  /* background-color: #78613a; */
  box-shadow: 0px 0px 5px #ccc;
  text-decoration: none;
  color: white;
  font-size: 13px;
  padding: 4px 30px;
  border-radius: 5px;
}

.call-whatspp-sec .callBtn img {
  filter: invert(1) brightness(200);
  width: 19px;
}

.red-box {
  background-color: rgba(220, 53, 69, 0.12);
  border: 0.5px solid rgba(220, 53, 69, 0.3);
  padding: 3px 30px;
  position: relative;
  font-size: 10px !important;
  border-radius: 5px;
}

.red-box::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: rgb(220, 53, 69);
  border-radius: 50%;
  left: 10px;
  top: 42%;
}

.new-sec-icon p {
  font-size: 14px !important;
  font-weight: 600;
}

.new-sec-icon img {
  width: 25px;
}

.developer-box {
  border: 1px solid #ccc;
  margin-top: 30px;
  padding: 30px;
}

.developer-box h4 {
  font-size: 18px;
}

.developer-card {
  border: 1px solid #ffd68f;
  /* margin-top: 30px; */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px var(--primary-color);
  color: #ffffff;
  background: #000;
}

.developer-card h4 {
  font-size: 23px;
  font-weight: 700;
}

.selling-points-card {
  border: 1px solid var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  background: var(--primary-color);
  position: relative;
}

.selling-points-card h2 {
  font-size: 35px;
  font-weight: 500;
  color: #ffd68f;
  background: linear-gradient(
    90deg,
    #c9a84c 20%,
    #fffbe6 40%,
    #fff 50%,
    #fffbe6 60%,
    #c9a84c 80%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /*animation: shine 5s linear infinite alternate;*/
}

@keyframes shine {
  from { background-position: -300% center; }
  to   { background-position:  300% center; }
}

.selling-points-card span {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
}

.selling-points-card h6 {
  font-size: 20px;
  margin: 10px 0px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 18px;
}

.selling-points-card p {
  font-size: 14px;
  color: #fff;
}

.abs-no {
  position: absolute;
  background-color: #ffd68f;
  color: #000000;
  top: 20px;
  right: 20px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 13px;
}
.testimonial-carousel-card {
  border: 1px solid var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  background: var(--primary-color);
}

.testimonial-carousel-card .testi-text {
  text-align: start;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.rating {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.rating img {
  width: 20px !important;
}

.writer-testi .name {
  background-color: forestgreen;
  color: #ffd68f;
  padding: 15px;
  border-radius: 50%;
  font-size: 18px;
}

.writer-testi p {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
}

.writer-testi h5 {
  font-size: 15px;
  color: #ffffff;
  margin: 6px 0px;
}

.writer-testi h6 {
  color: #ffd68f;
}

/* Disclaimer */

.read-more-container {
  position: relative;
}

/* Hide the checkbox */
#read-more-toggle {
  display: none;
}

/* Collapsed state â€” show only 3 lines */
.disclaimer-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Expanded state */
#read-more-toggle:checked ~ .disclaimer-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* Label acts as the button */
.toggle-label {
  color: white;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
}

/* Default label text */
.toggle-label::after {
  content: "Read More â–¼";
}

/* Change label when checked */
#read-more-toggle:checked ~ .toggle-label::after {
  content: "Read Less â–²";
}

.legacy-section .legacy-card{
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0 20px;
  margin-bottom: 20px;
}













@media (max-width: 767px) {
    .logo-right-sec img, .logo-left-sec img {
        height: 35px;
              filter: unset !important;

    }
}



@media (max-width: 767px) {
    .header-section {
        padding: 15px 15px;
        background-color: #000000 !important;
    }
}











/* ===================================== */
/* THEME COLORS */
/* ===================================== */

:root{
    --gold-gradient: linear-gradient(
        90deg,
        #aa915c 0%,
        #d8bf74 45%,
        #c79a3b 75%,
        #af802d 100%
    );

    --gold-color: #c79a3b;
    --black: #000000;
    --light-bg: #f7f5f2;
}

/* ===================================== */
/* SECTION */
/* ===================================== */

.luxury-overview-section{
    padding: 75px 0;
    overflow: hidden;
 
    position: relative;
}

/* ===================================== */
/* ROW */
/* ===================================== */

.luxury-row{
    align-items: center;
}

/*.luxury-row > div{
    padding-left: 35px;
    padding-right: 35px;
}*/

/* ===================================== */
/* LEFT CONTENT */
/* ===================================== */

.luxury-content{
    max-width: 620px;
}

.sub-title{
    font-size: 12px;
    letter-spacing: 3px;
color: #000000 !important;
    margin-bottom: 16px;
    display: inline-block;
    font-weight: 600;
    position: relative;
    padding-left: 18px;
}

.sub-title::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    background: var(--gold-color);
    transform: translateY(-50%);
}

.luxury-content h2{
    font-size: 44px;
    line-height: 48px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 24px;
    transition: 0.4s ease;
}

.luxury-content h2:hover{
    transform: translateX(5px);
}

.luxury-content p{
       font-size: 14px;
    line-height: 25px;
    font-weight: 200;
    color: #000;
    margin-bottom: 32px;
}

/* ===================================== */
/* BUTTONS */
/* ===================================== */

.luxury-btn-group{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.brochure-btn,
.interest-btn{
    position: relative;
    overflow: hidden;
    background: #000;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    border: none;
    transition: all 0.35s ease;
    z-index: 1;
}

.brochure-btn span,
.interest-btn span{
    position: relative;
    z-index: 3;
}

.brochure-btn::before,
.interest-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    transform: translateY(100%);
    transition: transform 0.35s ease;
    z-index: -1;
}

.brochure-btn:hover::before,
.interest-btn:hover::before{
    transform: translateY(0%);
}

.brochure-btn:hover,
.interest-btn:hover{
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.10);
}

/* ===================================== */
/* FORM */
/* ===================================== */

.luxury-form-wrapper{
    display: flex;
    justify-content: center;
}

.mini-enquiry-section{
    background: #fff;
    padding: 34px;
    width: 100%;
    max-width: 420px;
    border-radius: 22px;
  
    border: 1px solid rgb(199 154 59);
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.mini-enquiry-section:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.mini-enquiry-section h3{
    font-size: 32px;
    line-height: 1.1;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.form-subtitle{
    font-size: 14px;
    color: #777;
    margin-bottom: 24px;
}

/* ===================================== */
/* INPUTS */
/* ===================================== */

.form-group{
    margin-bottom: 14px;
}

.form-group input{
    width: 100%;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
    background: #fff;
}

.form-group input:focus{
    border-color: var(--gold-color);
    box-shadow: 0 0 0 4px rgba(199,154,59,0.08);
    transform: scale(1.01);
}

/* ===================================== */
/* RADIO BUTTONS */
/* ===================================== */

.bhk-options{
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.radio-box{
    position: relative;
    cursor: pointer;
    flex: 1;
}

.radio-box input{
    display: none;
}

.radio-box span{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    color: #222;
    transition: all 0.3s ease;
}

.radio-box span:hover{
    border-color: var(--gold-color);
    transform: translateY(-2px);
}

.radio-box input:checked + span{
    background: #000;
    border-color: #000;
    color: #fff;
}

/* ===================================== */
/* CHECKBOX */
/* ===================================== */

.checkbox{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.checkbox input{
    accent-color: var(--gold-color);
    margin-top: 4px;
}

.checkbox label{
    font-size: 11px;
    line-height: 1.6;
    color: #666;
}

/* ===================================== */
/* SUBMIT BUTTON */
/* ===================================== */

#SubmitQuery{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 14px;
    background: #000;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.35s ease;
    z-index: 1;
}

#SubmitQuery span{
    position: relative;
    z-index: 3;
}

#SubmitQuery::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

#SubmitQuery:hover::before{
    transform: translateX(0%);
}

#SubmitQuery:hover{
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

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

@media(max-width:1199px){

    .luxury-content h2{
        font-size: 38px;
        line-height: 42px;
    }
}

@media(max-width:991px){

    .luxury-overview-section{
        padding: 65px 0;
    }

    .luxury-row{
        row-gap: 45px;
    }

    .luxury-content{
        max-width: 100%;
    }

    .luxury-content p{
        max-width: 100%;
    }

    .mini-enquiry-section{
        max-width: 100%;
    }
}

@media(max-width:767px){

    .luxury-overview-section{
        padding: 50px 0;
    }

    .luxury-row > div{
        padding-left: 15px;
        padding-right: 15px;
    }

    .luxury-content h2{
        font-size: 28px;
        line-height: 38px;
    }

    .luxury-content p{
        font-size: 15px;
        line-height: 1.85;
    }

    .luxury-btn-group{
        flex-direction: column;
    }

    .luxury-btn-group .btn{
        width: 100%;
        text-align: center;
    }

    .mini-enquiry-section{
        padding: 24px 10px;
        border-radius: 18px;
    }

    .mini-enquiry-section h3{
        font-size: 24px;
    }
}


/* ===================================== */
/* PLACEHOLDER FIX */
/* ===================================== */

.form-group input::placeholder{
    color: #8a8a8a !important;
    opacity: 1;
}

.form-group input::-webkit-input-placeholder{
    color: #8a8a8a !important;
}

.form-group input::-moz-placeholder{
    color: #8a8a8a !important;
}

.form-group input:-ms-input-placeholder{
    color: #8a8a8a !important;
}






















/* ===================================== */
/* MODAL */
/* ===================================== */

.luxury-modal-content{
    border: none;
    border-radius: 24px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    overflow: hidden;
}

.luxury-close{
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 10;
    opacity: 1;
}

.modal-heading h3{
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.modal-heading p{
    font-size: 14px;
    color: #777;
    margin-bottom: 24px;
}

/* ===================================== */
/* MODAL INPUTS */
/* ===================================== */

.luxury-modal .form-group{
    margin-bottom: 15px;
}

.luxury-modal .form-group input{
    width: 100%;
    height: 54px;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
    background: #fff;
    color: #000;
}

.luxury-modal .form-group input:focus{
    border-color: var(--gold-color);
    box-shadow: 0 0 0 4px rgba(199,154,59,0.08);
}

/* ===================================== */
/* PLACEHOLDER */
/* ===================================== */

.luxury-modal input::placeholder{
    color: #888;
    opacity: 1;
}

/* ===================================== */
/* BHK */
/* ===================================== */

.luxury-modal .bhk-options{
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

/* ===================================== */
/* SUBMIT BUTTON */
/* ===================================== */

#SubmitQuerypopup{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 14px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.35s ease;
    z-index: 1;
}

#SubmitQuerypopup span{
    position: relative;
    z-index: 3;
}

#SubmitQuerypopup::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    transform: translateX(-100%);
    transition: 0.4s ease;
    z-index: -1;
}

#SubmitQuerypopup:hover::before{
    transform: translateX(0%);
}

#SubmitQuerypopup:hover{
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:767px){

    .luxury-modal-content{
        padding: 0px;
        border-radius: 18px;
    }

    .modal-heading h3{
        font-size: 19px;
    }
}








































/* ===================================== */
/* FOOTER FORM */
/* ===================================== */

.luxury-footer-form{
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    border: 1px solid rgba(199,154,59,0.15);
    box-shadow: 0 12px 35px rgba(0,0,0,0.04);
}

/* ===================================== */
/* LABEL */
/* ===================================== */

.luxury-footer-form label{
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

/* ===================================== */
/* FORM GROUP */
/* ===================================== */

.luxury-footer-form .form-group{
    margin-bottom: 18px;
    width: 100%;
}

/* ===================================== */
/* INPUT */
/* ===================================== */

.luxury-footer-form input,
.luxury-footer-form select,
.luxury-footer-form textarea{
    width: 100%;
    height: 54px;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
    background: #fff;
    color: #222;
}

/* textarea */

.luxury-footer-form textarea{
    height: auto;
    padding-top: 15px;
    resize: none;
}

/* select */

.luxury-footer-form select{
    appearance: none;
    cursor: pointer;
}

/* focus */

.luxury-footer-form input:focus,
.luxury-footer-form select:focus,
.luxury-footer-form textarea:focus{
    border-color: var(--gold-color);
    box-shadow: 0 0 0 4px rgba(199,154,59,0.08);
}

/* ===================================== */
/* PLACEHOLDER */
/* ===================================== */

.luxury-footer-form input::placeholder,
.luxury-footer-form textarea::placeholder{
    color: #8a8a8a;
    opacity: 1;
}

/* ===================================== */
/* BUTTON */
/* ===================================== */

#SubmitQueryfooter{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 14px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: 0.35s ease;
    z-index: 1;
}

#SubmitQueryfooter span{
    position: relative;
    z-index: 3;
}

#SubmitQueryfooter::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

#SubmitQueryfooter:hover::before{
    transform: translateX(0%);
}

#SubmitQueryfooter:hover{
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:767px){

    .luxury-footer-form{
        padding: 22px 18px;
        border-radius: 18px;
    }

    .luxury-footer-form input,
    .luxury-footer-form select{
        height: 50px;
    }
}






/* Section */
.testimonial-section{
    padding: 80px 0;
    background: #f8f8f8;
}

/* Container center control */
.testimonial-section .container{
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* Heading */
.section-head h2{
    font-size: 32px;
    font-weight: 600;
}

.section-head p{
    margin-top: 10px;
    color: #777;
    font-size: 16px;
}

/* Video Box */
.video-box{
    position: relative;
    width: 100%;
    margin-top: 40px;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* 16:9 Ratio */
.video-box::before{
    content: "";
    display: block;
    padding-top: 56.25%;
}

/* Iframe */
.video-box iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

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

.testimonial-section{
    padding: 50px 0;
}

.section-head h2{
    font-size: 24px;
}

.video-box{
    border-radius: 16px;
}

}





.price-bar {
       display: -webkit-box;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* LEFT SIDE */
.price-bar .left {
    display: flex;
    flex-direction: column;
}

/* RIGHT SIDE */
.price-bar .right {
    display: flex;
    flex-direction: column;
    text-align: right;
}

/* TEXT STYLES */
.price-bar .bhk {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.price-bar .price {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.price-bar .sub {
    font-size: 14px;
    color: #bbb;
    margin-top: 2px;
    text-align: left;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .price-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-bar .right {
        text-align: left;
    }

    .price-bar .bhk,
    .price-bar .price {
        font-size: 20px !important;
                margin-bottom: -3px;
    }

    .price-bar .sub {
        font-size: 12px !important;
    }
}






















/* Default (desktop stays same) */
.luxury-btn .btn {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
        color: #000;
}

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

    .luxury-btn {
          display: inline-flex !important;
               gap: 10px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .luxury-btn .btn {
        font-size: 12px !important;
        padding: 8px 10px;
      
        justify-content: center;
        text-align: center;
    }

    .luxury-btn img {
        width: 14px !important; /* reduce icon size */
    }
}














.carousel-item {
    transition: transform 1s ease-in-out;
}




.slider {
    overflow: hidden;
    position: relative;
}

.cards {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}



/* Optional: smooth button hover */
.prev, .next {
    cursor: pointer;
    z-index: 2;
}






@media (max-width: 768px) {

    .map-cta .btn {
        padding: 10px 20px;
        font-size: 13px !important;
        border-radius: 30px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

}




.map-section {
    position: relative;
    overflow: hidden;
}

/* Blur the map itself */
.map-section iframe {
    filter: blur(8px) scale(1.1);
    pointer-events: none;
}

/* Dark overlay on top */
.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
}

/* Center CTA */
.map-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Button styling */
.map-cta .btn {
    background: #ffffff;
    color: #000;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.map-cta .btn:hover {
    background: #000;
    color: #fff;
}












/* Desktop default */
.banner-title h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner-title .location {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.banner-title .location img {
    width: 18px;
    height: 23px;
}

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

    .banner-title h1 {
        font-size: 24px !important;
    }

    .banner-title .location {
        font-size: 15px;
    }

    .banner-title .location img {
        width: 14px;
       
    }
}



       /* PRICE BAR CONTAINER */
.price-bar {
    /*display: flex;*/
    align-items: center;
    gap: 20px; /* space between left & right */
    margin-top: 18px;
}

/* LEFT + RIGHT BLOCK */
.price-bar .left,
.price-bar .right {
    display: flex;
    flex-direction: column;
}

/* MAIN TEXT (BHK + PRICE) */
.price-bar .bhk,
.price-bar .price {
    font-size: 22px;
    font-weight: 600;
    line-height: 0.9;
}

/* SUB TEXT */
.price-bar .sub {
    font-size: 13px;
    color: #ccc;
    margin-top: 4px;
}

/* 🔥 ALIGN RIGHT BLOCK PROPERLY */
.price-bar .right {
    padding-left: 20px;
  
        /*border-left: 2px solid rgb(255 255 255);*/
    height: 40px;
}

}

@media (max-width: 768px) {

    .price-bar {
        gap: 20px;
    }

    .price-bar .bhk,
    .price-bar .price {
        font-size: 18px;
    }

    .price-bar .sub {
        font-size: 12px;
    }

    .price-bar .right {
        padding-left: 15px;
    }
    
    .price-bar .right {
    padding-left: 40px;
  
        /*border-left: 2px solid rgb(255 255 255);*/
    /*height: 40px;*/
}

}




















.extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
    text-align: center;
}

.extra-grid .feature-item img {
    width: 45px;
    margin-bottom: 10px;
}

/* FIXED ISSUE */
.more-icons {
    display: none;
}

/* Button */
.know-more-btn {
    background: transparent;
    border: 1px solid #c9a35f;
    color: #c9a35f;
    padding: 10px 28px;
    border-radius: 30px;
    transition: 0.3s;
}

.know-more-btn:hover {
    background: linear-gradient(90deg, #b88a2a, #d4a84a);
    color: #000;
}

/* MOBILE FIX */
@media(max-width:768px){
    .extra-grid{
        grid-template-columns: repeat(2,1fr);
    }
}
















/* Base Button Style */
.btn {
    background: transparent;
    color: #000;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #c9a35f;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Hover Gradient (Same as Know More) */
.btn:hover {
    background: linear-gradient(90deg, #b88a2a, #d4a84a);
    color: #000;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Icon adjust */
.btn img {
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

/* Icon color change on hover */
.btn:hover img {
    filter: brightness(0);
}


/* Button layout fix */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
}

/* ICON FIX */
.btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;

    /* Make icon BLACK (normal state) */
    filter: brightness(0);
}

/* Hover (gold gradient already there) */
.btn:hover img {
    filter: brightness(0); /* keep black on hover (clean look) */
}






.banner-btn a:hover {
    background: linear-gradient(90deg, #b88a2a, #d4a84a) !important;
    color: #000 !important;
    transform: translateY(-2px);
}





   
   .map-cta .btn1 {
    background: #ffffff;
    color: #000;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
}


  .map-cta .btn1:hover {
    background: linear-gradient(90deg, #b88a2a, #d4a84a);
    color: #000;
    border-color: transparent;
    transform: translateY(-2px);
      font-size: 14px;
}



@media (max-width: 768px) {
  .middletext {
    font-size: 15px;
  }
}







.form-consent {
    font-size: 11px;
    color: #777;
    margin-top: 10px;
    line-height: 1.5;
    text-align: center;
}

.form-consent a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

.form-consent a:hover {
    color: #c9a35f; /* your gold theme */
}





/* ===== CALL BUTTON ===== */
.callBtn.btn1 {
    background: #fff;
    color: #000;
}

.callBtn.btn1:hover {
    background: linear-gradient(90deg, #b88a2a, #d4a84a);
    color: #000;
    transform: translateY(-2px);
}


/* ===== WHATSAPP BUTTON ===== */
.whatsappBtn.btn1 {
    background: #25D366;
    color: #fff;
}

.whatsappBtn.btn1:hover {
    background: #25D366;
    color: #fff;
}




/* Mobile only */
@media (max-width: 768px) {
  .advantages {
    display: inline-block;
  }
}