@font-face {
  font-family: CeraPro;
  src: url(../fonts/CeraPro/cerapro-medium.otf);
}

/* common css format */

* {
  padding: 0;
  margin: 0;

  --primary-color: #3b3b3b;
  --secondary-color: #000722;
  --white-color: #fff;
}

html {
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
  font-family: CeraPro;
}

ul,
p {
  padding: 0 !important;
}

a {
  text-decoration: none !important;
}

.invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.sectionpad {
  padding: 40px 0;
}

.sectionpadtop {
  padding-top: 70px;
}

.sectionpadbottom {
  padding-bottom: 70px;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0 !important;
  margin: 0 !important;
}

.borderBox {
  border: 2px solid var(--primary-color);
}

.text-balance {
  text-wrap: balance;
}

.font {
  font-size: 15px;
}

.text-center {
  text-align: center;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
  /* Standard property for future compatibility */
}

/* new navbar css */

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  padding: 3px 0;
  height: 66px;
  background: #ffff;
  /* -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px; */
  z-index: 11;
}

.header-container > nav {
  height: 100%;
}

.header-container.scrolled {
  background: #fff;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-box-shadow:
    rgb(160 144 110 / 34%) 0px 6px 12px -2px,
    rgb(160 144 110 / 11%) 0px 3px 7px -3px;
  box-shadow:
    rgb(160 144 110 / 34%) 0px 6px 12px -2px,
    rgb(160 144 110 / 11%) 0px 3px 7px -3px;
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 8rem;
  background: var(--white-color);
  gap: 1rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.menu {
  display: none;
  width: 27px;
  cursor: pointer;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.logo-img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 100px;
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.offCanvasLogoWrap {
  display: flex;
  justify-content: start;
  align-items: center;
}

.navLogoImg.navImg1 {
  width: 60px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.navLogoImg.navImg2 {
  width: 120px !important;
  height: 100% !important;
  -o-object-fit: contain;
  object-fit: contain;
}

.navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  gap: 1.25rem;
}

.navLinks .navLink {
  display: block;
  text-transform: capitalize;
  cursor: pointer;
  position: relative;
  font-family: CeraPro;
  color: var(--primary-color);
  font-size: 1rem;
  text-transform: capitalize;
  padding: 10px;
}

.navIcon {
  width: 35px;
  height: 35px;
}

.navLinks .navLink::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  bottom: -5px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  border-radius: var(--radius-full);
  background-color: var(--primary-pink);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.navLinks .navLink:hover::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.line {
  width: 1px;
  height: 20px;
  background-color: rgba(88, 89, 91, 0.18);
}

.btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -msa-flex-align: center;
  align-items: center;
  gap: 0.35rem;
  color: var(--light);
  padding: 0.5rem 1rem;
  font-family: var(--TT_Neoris_Medium);
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 0 1rem;
  border-radius: 9px;
  background-color: var(--primary-pink);
}

.offcanvas {
  background-color: var(--light);
}

.offcanvas.offcanvas-end {
  width: 100%;
}

.offcanvas.offcanvas-end .offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  /* background-color: var(--primary-color); */
}

.offcanvas-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.offcanvas-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offcanvas-close {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border-radius: 100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--light);
  -webkit-transform: translateY(4px) scale(0.95);
  -ms-transform: translateY(4px) scale(0.95);
  transform: translateY(4px) scale(0.95);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.offcanvas-close i {
  font-size: 1.1rem;
}

.offcanvas-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 1rem 0;
}

.offcanvas-link {
  display: block;
  font-size: 1.35rem;
  font-family: var(--Tartuffo-Regular);
  font-weight: 400;
  color: var(--primary-blue);
  text-transform: capitalize;
  position: relative;
  width: 100%;
}

.offcanvas-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #0000001a;
  left: 0;
  bottom: -15px;
}

.offcanvas-link:last-child:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: transparent;
  left: 0;
  bottom: -15px;
}

.offcanvas-logo .logo-img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 250px;
  max-width: 100%;
}

/* extra css */

.locatePic1 {
  position: absolute;
  top: 16%;
  right: 33%;
}

.mapLocHighlighter {
  width: 40px;
  height: 40px;
}

.mapLocationView {
  width: 150px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  top: 27%;
  right: 24%;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  transform: translateY(10px);
  /* start slightly lower */
}

.mapLocationView.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* smooth upward motion */
}

/* media query */

@media only screen and (max-width: 1400px) {
  .navbar-container {
    padding: 1rem 4rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar-container {
    padding: 1rem 2rem;
  }

  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 1rem;
  }
}

@media only screen and (max-width: 1080px) {
  .navbar-container {
    padding: 1rem 2rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .menu {
    display: block;
  }

  .navLinks {
    display: none;
  }
}

/* banner section */

.bannerSection {
  margin-top: 66px;
}

.bannerSection .container-fluid {
  padding: 0 0 !important;
}

.bannerSection .owl-carousel {
  position: relative;
}

/* banner shows in full (never cropped) and still fits above the fold */
.bannerSection .bannerWrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 66px);
  max-height: calc(100dvh - 66px);
  -o-object-fit: contain;
  object-fit: contain;
}

.bannerSection .owl-nav {
  margin: 0;
}

.bannerSection .owl-nav .owl-prev,
.bannerSection .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0 !important;
  background: transparent !important;
  z-index: 900;
}

.bannerSection .owl-nav .owl-prev {
  left: 20px;
}

.bannerSection .owl-nav .owl-next {
  right: 20px;
}

.bannerArrowIconWrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

.bannerSection .owl-nav .owl-prev:hover .bannerArrowIconWrap,
.bannerSection .owl-nav .owl-next:hover .bannerArrowIconWrap {
  background: #ffffff;
  transform: scale(1.08);
}

/* overview Section */

#overview {
  background: url(../images/overviewBg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sectionHead {
  text-transform: uppercase;
  font-size: 2.5rem;
  font-style: normal;
  /* font-weight: 700; */
  color: var(--primary-color);
}

p {
  font-size: 14px;
}

.sectionSubhead {
  color: var(--primary-color);
  font-size: 1.7rem;
  text-transform: uppercase;
}

.overviewCardWrap {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.overviewCardTitle {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
}

.overviewCardIcon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.overviewClosingHead {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.overviewClosingSub {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.clickBtn {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 33px;
}

.overviewFormWrap {
  background-color: var(--primary-color);
  width: 70%;
  padding: 20px;
  border-radius: 10px;
}

.contactFormWrap {
  /* background-color: var(--primary-color); */
  width: 100%;
  padding: 20px;
  border-radius: 0px;
}

.contactFormWrap .inputField {
  background-color: transparent;
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 0px !important;
}

.formHead {
  color: var(--white-color);
}

.contactFormWrap ::placeholder {
  color: var(--primary-color);
  opacity: 1;
  /* Firefox */
}

.contactFormWrap .submitBtn {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px 13px;
  text-align: center;
  width: 100%;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
  position: relative;
  z-index: 999;
}

/* form  css */

.inputField {
  padding: 10px 13px;
  color: #fff;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 100%;
  font-size: 18px;
}

::placeholder {
  color: var(--white-color);
  opacity: 1;
  /* Firefox */
}

.submitBtn {
  background-color: var(--white-color);
  color: #3b3b3b;
  padding: 10px 13px;
  text-align: center;
  width: 100%;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
}

.floor-title {
  font-size: 20px !important;
}

.error {
  color: red;
  font-size: 14px;
  /* height: 15px; */
}
.cursor {
  text-decoration: none;
  cursor: pointer;
}

/* configuration */

.priceReqBtn {
  color: #ffffff !important;
  /* text-decoration: underline !important; */
  cursor: pointer;
  background: #970707;
  padding: 7px;
}

.table-dark {
  background: var(--primary-color) !important;
}

/* floor plan section */

.floorTabBtnWrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floorNavLink {
  border-radius: 44px !important;
  border: 1px solid var(--primary-color) !important;
  backdrop-filter: blur(25px) !important;
  color: var(--primary-color) !important;
  margin: 0 10px;
  padding: 10px 30px !important;
  font-weight: 500;
  font-size: 15px;
}

.floorNavLink.active {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.floorNavLink.active img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(0%) saturate(0%)
    hue-rotate(163deg) brightness(105%) contrast(105%);
}

.floorCardTextWrap {
  margin-left: 20px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  display: none;
}

.floorCardWrap,
.masterCardWrap {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  position: relative;
  background: #fff;
}

.masterCardWrap img,
.floorCardWrap img {
  filter: blur(4px);
}

.floorCardText {
  display: inline-block;
  border: 2px solid var(--primary-color);
  padding: 10px 20px !important;
  border-radius: 44px;
  margin-right: 10px !important;
}

.quoteTextWrap {
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  padding: 10px 15px;
  transform: translate(-50%, -50%);
}

.floorArrowIconWrap {
  width: 40px;
  height: 40px;
}

#configuration .owl-prev {
  position: absolute;
  top: 50%;
  left: -50px;
}

#configuration .owl-next {
  position: absolute;
  top: 50%;
  right: -50px;
}

.owl-prev:hover,
.owl-next:hover {
  background: transparent !important;
}

/* gallery section */

.gallery-section {
  width: 100%;
  height: 95dvh;
  overflow: hidden;
  position: relative;
}

/* #gallery .sectionHead {
  font-size: 3rem;
} */

.galleryTextContent {
  padding-left: 4% !important;
  background: url(../images/galleryBg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#gallery .customPrevBtn {
  position: absolute;
  bottom: 10% !important;
  left: -93% !important;
  z-index: 900;
}

#gallery .customNextBtn {
  position: absolute;
  bottom: 10% !important;
  left: -82% !important;
  z-index: 900;
}

#gallery .floorArrowIconWrap {
  width: 60px;
  height: 60px;
}

.imgGuideText {
  /* background-color: var(--white-color); */
  color: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 15px;
}

.constructionText {
  background: rgba(59, 59, 59, 0.8);
  color: var(--white-color);
  position: absolute;
  bottom: 75px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
  padding: 10px 0;
}

.constructionText p {
  font-size: 17px;
}

/* location section */

/* .locationContentWrap {
  padding-left: 5%;
} */

.locationTitle {
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.8rem;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: unset !important;
}

.accordion-button:not(.collapsed) {
  color: var(--white-color) !important;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
  border: 1px solid #58595b !important;
  background: var(--primary-color) !important;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.accordion-item:first-of-type {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.accordion-button {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
  filter: brightness(0) saturate(100%) invert(97%) sepia(3%) saturate(12%)
    hue-rotate(64deg) brightness(102%) contrast(106%);
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  background-color: var(--primary-color);
  color: var(--white-color);
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(97%) sepia(3%) saturate(12%)
    hue-rotate(64deg) brightness(102%) contrast(106%);
}

.list-style-none {
  list-style: none !important;
}

.locationIcon {
  width: 30px;
  height: 30px;
}





.package {
  /* padding: 5px; */
  border: 2px solid #f1f1f1;
  margin-bottom: 8%;
  width: 100%;
  height: 150px;
  /* margin-left: 2%; */
  box-shadow: 2px 2px 11px #adadad;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.package img {
     width: 98px;
    height: 98px;
    /* margin-top: 5px; */
    filter: invert(46%) sepia(8%) saturate(0) hue-rotate(347deg) brightness(99%) contrast(94%);
    padding: 20px;
}

.package h3 {
  text-align: left;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 10px;
  color: #f48120;
}

/* partner section */

#partner {
  background: url(../images/partnerBg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* margin-bottom: 10rem; */
}

.partnerHead {
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.devlopByText {
  font-weight: 500;
  font-size: 20px;
  /* border-bottom: 1px solid #9b7532; */
}

.partnerImgWrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partnerImg {
  width: 135px;
  height: auto;
}

.partnerText {
  text-align: justify;
  font-size: 14px;
  margin-top: 15px !important;
}

/* contact section */

#contact .formHead {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* modal */

.modal-body {
  /* background-color: var(--primary-color); */
  padding: 20px !important;
}

.modal-body .contactFormWrap {
  width: 100% !important;
}

.modal-body .contactFormWrap .formHead {
  font-size: 25px;
  text-align: center;
  /* font-weight: 600; */
}

.modal-body .formInput {
  width: 100%;
  font-size: 20px;
  padding: 10px 15px;
}

/* desktop cta */

.rightWhiteBorder {
  border-right: 2px solid var(--white-color);
}

.desktopCtaSection {
  display: block;
}

.mobileCTASection {
  display: none;
}

.ctaIcon {
  width: 25px;
  height: 25px;
}

.brochureCTABtnWrap {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
}

.enquireCTABtnWrap {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.brochureCTABtnWrap a,
.enquireCTABtnWrap a {
  display: inline-block;
  padding: 10px 15px;
  background-color: var(--primary-color);
  font-weight: 600;
  color: var(--white-color);
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  border: 2px solid var(--white-color);
}

/* page loader */

.loading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

#pageloader {
  background: rgba(255, 255, 255, 0.9);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999999;
  top: 0;
}

#pageloader img {
  /* left: 50%; */
  /* width: 100%; */
  /* margin-left: -32px; */
  /* margin-top: -32px; */
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otploding_wrap {
  display: none;
  margin-bottom: 0 !important;
}

.otp_box {
  display: none;
}

/* footer */
.footerSection {
  background-color: var(--primary-color);
  padding-top: 40px;
}

.privacyText {
  text-decoration: underline !important;
}

.callTextInfo {
  font-size: 25px;
  font-weight: 600;
}

/* thankyou page */

.thankyouHeader {
  background-color: #f5f5f5;
}

.thankyouHeader .navIcon {
  filter: brightness(0) saturate(100%) invert(0%) sepia(97%) saturate(7471%)
    hue-rotate(143deg) brightness(99%) contrast(99%);
}

.thankyourwrap {
  margin-top: 80px;
}

/* construction */

.constructImg {
  width: 100% !important;
  height: 300px !important;
  /* object-fit: cover; */
}


.imgGuideText p{
  font-size: 10px !important;
}

/* media query */

@media only screen and (max-width: 1400px) {
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 992px) {
  .desktopMenuWrap {
    display: none;
  }

  .mobileMenuWrap {
    display: block;
  }

  .menuToggleBtn {
    border: none;
    width: 50px;
    height: 50px;
    padding: 8px;
    border-radius: 8px;
    background-color: var(--primary-color);
  }

  .sectionHead h2 {
    font-size: 2.8rem;
    line-height: 3.5rem !important;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .sectionpad {
    padding: 40px 0;
  }

  .floorNavLink {
    font-size: 11px !important;
  }

.constructImg{
  height: auto;
}

  .call-btn {
    display: none !important;
  }

  .sectionpadtop {
    padding-top: 40px;
  }

  .sectionpadbottom {
    padding-bottom: 40px;
  }

  .navCallBtn {
    display: none;
  }

  .bannerSection {
    margin-top: 66px;
  }

  #overview .row.rowContent {
    flex-direction: column-reverse;
  }

  .overviewFormWrap {
    width: 100%;
    margin-bottom: 20px;
  }

  .sectionHead {
    font-size: 3rem;
  }

  .sectionSubhead {
    font-size: 1.3rem;
  }

  p {
    font-size: 15px;
  }

  .overviewCardWrap {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .overviewCardWrap p {
    margin: 0 !important;
  }

  .floorTabPills {
    display: flex;
    justify-content: center;
  }

  .floorNavLink {
    margin: 10px;
  }

  .floorCardWrap {
    padding: 13px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
  }

  .floorCardText {
    margin: 5px !important;
    /* font-size: 13px; */
    /* padding: 10px !important; */
  }

  /* .floorCardTextWrap {
    display: flex;
    justify-content: center;
    margin-left: 0 !important;
  } */

  #configuration .owl-prev,
  #configuration .owl-next {
    position: relative;
    bottom: 0;
    left: 0;
  }

  /* #gallery .customPrevBtn,
  #gallery .customNextBtn {
    position: relative;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 900;
  } */

  #gallery .customNextBtn {
    position: relative;
    bottom: 10% !important;
    left: 53% !important;
    z-index: 900;
  }

  #gallery .customPrevBtn {
    position: relative;
    bottom: 10% !important;
    left: 38% !important;
    z-index: 900;
  }

  #gallery .floorArrowIconWrap {
    width: 45px;
    height: 45px;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
  }

  .galleryTabPills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .locationContentWrap {
    padding-left: 0 !important;
  }

  .accordion-body li span {
    font-size: 13px;
  }

  .gallery-section {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
  }

  .desktopCtaSection {
    display: none;
  }

  .footerSection {
    padding-bottom: 70px;
  }

  .mobileCTASection {
    padding: 10px 0;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    /* margin: 0 10px 10px 10px; */
    /* border-radius: 10px; */
    z-index: 100;
    border: 1px solid var(--white-color);
  }

  .contactFormWrap {
    width: 100%;
  }

  .constructionText {
    position: absolute;
    bottom: 18%;
  }

  .constructionText p {
    font-size: 14px;
  }

  .mapLocHighlighter {
    width: 30px;
    height: 30px;
  }

  .locatePic1 {
    position: absolute;
    top: 15%;
    right: 34%;
  }

  .mapLocationView {
    position: absolute;
    top: 27%;
    right: 20%;
  }
}

@media only screen and (max-width: 576px) {
  #overview .sectionHead {
    font-size: 2rem;
    margin-bottom: 0 !important;
  }

  .sectionSubhead {
    text-align: start;
  }

  .btnWrap {
    display: flex;
    justify-content: center;
  }

  .configContentBox p {
    font-size: 16px !important;
  }

  .configContentBox p {
    font-size: 20px !important;
  }
  .sectionHead {
    font-size: 1.5rem;
    text-align: start;
    margin-bottom: 20px !important;
  }

  #gallery .sectionHead {
    font-size: 2rem;
  }

  .partnerText {
    font-size: 12px;
  }

  .constructImg {
    width: auto !important;
    height: 450px !important;
    object-fit: cover;
  }
}

.customerDesktopVideoWrap .gallery-img {
  height: 350px;
  width: 500px;
}

.customerDesktopVideoWrap {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.customerMobileVideoWrap {
  display: none;
}

.call-btn {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 2px;
  border: none;
  position: fixed;
  z-index: 999;
  display: none;
  top: 50%;
  right: 0;
  -webkit-transform: rotate(270deg) translateY(78px);
  -ms-transform: rotate(270deg) translateY(78px);
  transform: rotate(270deg) translateY(78px);
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
}

.popup-form {
  cursor: pointer;
}

.popup-form iframe {
  pointer-events: none;
} 

#videoContainer {
    margin-top: 80px;
}



@media only screen and (max-width: 768px) {
  .customerMobileVideoWrap {
    display: block;
  }
}

.greybtn {
  background: #3b3b3b;
  color: #fff;
  background: -moz-linear-gradient(
    left,
    #3b3b3b 0%,
    #3b3b3b 46%,
    #ffffff 51%,
    #3b3b3b 56%,
    #3b3b3b 100%
  );
  background: -webkit-linear-gradient(
    left,
    #3b3b3b 0%,
    #3b3b3b 46%,
    #ffffff 51%,
    #3b3b3b 56%,
    #3b3b3b 100%
  );
  background: linear-gradient(
    to right,
    #3b3b3b 0%,
    #3b3b3b 46%,
    #ffffff 51%,
    #3b3b3b 56%,
    #3b3b3b 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#3b3b3b', endColorstr='#3b3b3b', GradientType=1);
  background-size: 600% 600%;
  -webkit-animation: AnimationNameGrey 3s ease infinite;
  animation: AnimationNameGrey 3s ease infinite;
}

@-webkit-keyframes AnimationNameGrey {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

@keyframes AnimationNameGrey {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

.configTable-section {
  background: url(../images/a4.jpg) center;
  background-size: cover;
  background-attachment: fixed;
}

.configurationTabWrap {
  padding: 10px;
  background-color: #f5f5f5;
  /* width: 70%; */
  /* margin: 0 auto; */
  border-radius: 5px;
}

.configBtn.active {
  background: #484a4c !important;
  color: #fff !important;
}

.conf-back {
  background-color: rgb(255 249 249 / 19%);
}

.configBtn {
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 8px 15px !important;
  color: #484a4c !important;
  border-radius: 5px;
  margin: 0 10px;
  background: #fff !important;
}

.configContentBox {
  padding: 20px;
  border: 1px solid #262626;
  border-radius: 10px;
  margin: 15px;
  background: #fff;
}

.configContentBox h4 {
  font-size: 25px;
}

.configImgWrap {
  padding: 25px;
}

.configImgWrap img {
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 10px 0px rgb(0 0 0 / 72%);
  filter: blur(3px);
}

.configContentBox p {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0 12px 0 !important;
  border-bottom: 2px solid #262626;
}

.virtual_img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .form_content {
    width: 95%;
    margin: auto;
  }

  .configurationTabWrap {
    width: 90%;
  }

  .virtual_img {
    height: 400px;
  }
}

.location-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* <!-- Amenties Separate Section Starts  --> */
*/ .amenities-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  border-radius: 10px;
}
.amenties-main-container {
  background-color: #f6f6f6;
}

.cards-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  margin-bottom: 20px;
}

.amenity-card {
  min-width: 270px;
  background: white;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.amenity-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: #f8f8f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #666;
}

.amenity-title {
  font-size: 11px;
  font-weight: 600;
  color: #656363;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  height:22px;
}

.amenity-card img {
  height: 75px;
  width: 75px !important;
}
/* Responsive Design */
@media (max-width: 768px) {
  .amenities-section {
    padding: 30px 15px;
  }
  .amenity-card img {
    height: 75px;
  }
  .amenities-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .amenity-card {
    min-width: 230px;
  }
}

@media (max-width: 480px) {
  .amenities-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .amenity-card {
    min-width: 180px;
    padding: 15px 5px;
  }

  .amenity-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .amenity-title {
    font-size: 14px;
  }
}
/* <!-- Amenties Separate Section Ends  --> */

/* USP strip below banner */
.uspSection {
  background-color: var(--primary-color);
  padding: 18px 0;
  border-top: 2px solid var(--white-color);
  border-bottom: 2px solid var(--white-color);
}

.uspRow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
}

.uspItem {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 8px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white-color);
}

.uspItem:last-child {
  border-right: none;
}

.uspIcon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: var(--white-color);
}

.uspIcon svg {
  width: 100%;
  height: 100%;
}

.uspLabel {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.uspValue {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .uspRow {
    flex-wrap: wrap;
  }

  .uspItem {
    flex: 1 1 33.333%;
    padding: 10px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .uspItem:nth-child(3n) {
    border-right: none;
  }

  .uspItem:nth-last-child(-n + 3) {
    border-bottom: none;
  }

  .uspIcon {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
  }

  .uspLabel {
    font-size: 10px;
  }

  .uspValue {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .uspItem {
    flex: 1 1 50%;
  }

  .uspItem:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }

  .uspItem:nth-child(2n) {
    border-right: none;
  }

  .uspItem:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .uspItem:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

/* Fixed horizontal footer form */
.fixedFooterFormSection {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background-color: var(--primary-color);
  border-top: 2px solid var(--white-color);
  padding: 10px 18px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.25);
}

.fixedFooterFormRow {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.fixedFooterTitle {
  flex: 0 0 auto;
  color: var(--white-color);
  font-weight: 700;
  font-size: 16px;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.fixedFooterField {
  flex: 1 1 0;
  min-width: 0;
}

.fixedFooterField .inputField {
  width: 100%;
  height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--white-color);
  border-radius: 6px;
  background-color: var(--white-color);
  color: #000;
  font-size: 14px;
  margin: 0;
}

.fixedFooterField .inputField::placeholder {
  color: #666;
  font-size: 13px;
}

.fixedFooterTerms {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white-color);
  font-size: 13px;
  margin: 0;
  cursor: pointer;
}

.fixedFooterTerms input[type="checkbox"] {
  margin: 0;
}

.fixedFooterSubmit {
  flex: 0 0 auto;
}

.fixedFooterSubmit .submitBtn {
  height: 42px;
  padding: 0 28px;
  border: none;
  border-radius: 6px;
  background-color: var(--white-color);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.fixedFooterSubmit .submitBtn:hover {
  opacity: 0.9;
}

body {
  padding-bottom: 80px;
}

/* lift the floating Download Brochure / Enquire Now buttons above the fixed form bar on desktop */
.brochureCTABtnWrap,
.enquireCTABtnWrap {
  bottom: 95px;
}

@media (max-width: 991px) {
  /* hide the fixed form on mobile, restore original mobile CTA bar */
  .fixedFooterFormSection {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }

  .brochureCTABtnWrap,
  .enquireCTABtnWrap {
    bottom: 20px;
  }
}

@media (max-width: 767px) {
  .bannerArrowIconWrap {
    width: 32px;
    height: 32px;
  }

  .bannerSection .owl-nav .owl-prev {
    left: 8px;
  }

  .bannerSection .owl-nav .owl-next {
    right: 8px;
  }
}
