@font-face {
  font-family: ArimaKoshi;
  src: url(../fonts/arima-koshi/ArimaKoshi-Regular.otf);
}

@font-face {
  font-family: Merchant;
  src: url(../fonts/merchant/Merchant-ThinCondensed.ttf);
}

@font-face {
  font-family: Merchant-Regular;
  src: url(../fonts/merchant/Merchant-Regular.ttf);
}

/* common css format */

* {
  padding: 0;
  margin: 0;
  --primary-color: #0c152a;
  --secondary-color: #f0c68e;
  --light-color: #fff;
  --dark-color: #262626;
  --ArimaKoshi-font: ArimaKoshi;
  --Merchant-font: Merchant;
  --Merchant-Regular-font: Merchant-Regular;
}

html {
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
  font-family: var(--ArimaKoshi-font) !important;
}

ul,
p {
  padding: 0 !important;
  font-family: var(--ArimaKoshi-font);
}

a {
  text-decoration: none !important;
}

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

.sectionpad {
  padding: 70px 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;
}

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: relative;
  /* top: 0; */
  width: 100%;
  /* left: 0; */
  padding: 25px 0;
  background: var(--primary-color);
  z-index: 11;
}

.header-container.scrolled {
  background: var(--primary-color);
  -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(--light-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: 70px;
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.navLogoImg.navImg1 {
  width: 150px;
  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;
  -ms-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;
}

/* .navCloseIcon {
  filter: invert(1);
} */

.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;
  }
}

/* overview Section */

.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(--light-color);
}

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

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

/* form  css */

.inputField {
  font-family: var(--ArimaKoshi-font);
  padding: 10px 13px;
  color: #fff;
  /* border-radius: 5px; */
  background: transparent;
  border-bottom: 1px solid #fff;
  border-left: unset;
  border-right: unset;
  border-top: unset;
  width: 100%;
  font-size: 18px;
}

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

.submitBtn,
.clickBtn {
  font-family: var(--ArimaKoshi-font);
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 13px;
  text-align: center;
  width: 120px;
  font-weight: 200;
  border-radius: 30rem;
  margin-top: 25px !important;
}

.error {
  color: red;
  font-size: 14px;
  /* height: 15px; */
}

/* configuration */

/* floor plan section */

/* location section */

/* contact section */

/* 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(--light-color);
}

.desktopCtaSection {
  display: block;
}

.mobileCTASection {
  display: none;
}

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

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

.enquireCTABtnWrap {
  position: fixed;
  bottom: 60px;
  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(--light-color);
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  border: 2px solid var(--light-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;
}

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

.footerLogoWrap {
  display: flex;
  justify-content: center;
  margin-bottom: -65px;
}

.footerContentWrap {
  background: url("../images/bg/footBg.png") no-repeat top/cover;
  padding: 80px 0 0 0;
}

.footTextWrap {
  margin: 0 auto;
  color: var(--primary-color);
  text-align: center;
  /* text-wrap: balance; */
}

.copyrightText {
  border-top: 1px solid rgba(12, 21, 42, 0.21);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}

/* 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;
}

/* page Heading */

.sectionHead {
  font-family: var(--Merchant-font);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--light-color);
}

/* banner section */

.bannerSection {
  background: url("../images/bg/bg1.jpg") no-repeat center/cover;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.eleImg {
  position: relative;
}

.logoPin {
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  width: auto;
  height: 200px;
  display: flex;
  justify-content: center;
}

.eleImg {
  margin-bottom: -10px;
}

/* overview section */

.relativeWrap {
  position: relative;
  z-index: 50;
  margin-top: 100dvh;
}

.overviewSection {
  background: var(--primary-color);
  color: var(--light-color);
  position: relative;
}

.overviewText {
  color: var(--light-color);
  text-align: center;
  /* text-wrap: balance; */
  width: 82%;
  margin: 0 auto !important;
}

.overviewFormWrap {
  width: 85%;
}

.termText {
  font-size: 11px;
}

.lowOpacity {
  color: rgba(255, 255, 255, 0.45);
}

.star1ImgWrap {
  position: absolute;
  top: 0;
  right: 0;
}

.star2ImgWrap {
  position: absolute;
  top: 150px;
  left: 0;
}

/* statistics section */

.statisticsSection {
  background: url("../images/bg/bg2.jpg") no-repeat center/cover;
  height: 540px;
}

.featureItem {
  position: relative;
  padding: 40px; /* Adjusted for your content */
  background: url(../images/elements/hexagon.png) no-repeat center/contain;
  backdrop-filter: blur(3px);
}

.statsHead {
  font-family: var(--Merchant-Regular-font);
  font-size: 600;
  text-align: center;
  color: var(--light-color);
  font-size: 2.5rem;
}

.statsText {
  text-align: center;
  color: var(--light-color);
  margin-top: 8px !important;
}

/* about section */

.aboutSection,
.contactSection,
.livingSpaceSection {
  background: var(--primary-color);
  position: relative;
}

.aboutCardWrap {
  width: 85%;
}

.headAfter {
  position: relative;
}

.subtitle {
  color: var(--light-color);
  position: relative;
  margin-left: 120px !important;
  font-size: 1.5rem;
}

.headAfter::before {
  content: "";
  width: 105px;
  height: 2px;
  border-top: 2px solid var(--secondary-color);
  position: absolute;
  bottom: -16px;
  left: 0;
}

/* swiper carousel section */

.section__living {
  width: 100%;
  position: relative;
  padding: 70px 0;
  background: #0c152a;
}

.section__living .star3ImgWrap img {
  width: 130px;
}

.section__living::after {
  content: "";
  position: absolute;
  width: 12%;
  height: 12%;
  top: 5%;
  right: -20px;
  background: url(../assets/images/start.svg) no-repeat center center / contain;
}

.living_rain {
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  z-index: 80;
}

.living_title h2 {
  font-family: Merchant;
  font-size: 55px;
  color: var(--light);
  text-align: center;
  letter-spacing: 4.1px;
}

.believe-swiper1 {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding-inline: 6vw;
  box-sizing: border-box;
  margin: 0 auto;
}

/* .believe-swiper1::before {
  content: "";
  position: absolute;
  top: -34px;
  left: -11%;
  width: 120%;
  height: 151px;
  background: #0c152a;
  border-radius: 100%;
  z-index: 100;
  pointer-events: none;
} */

/* Curve at the bottom */
.believe-swiper1::after {
  content: "";
  /* background: url(../images/carousel/moon.png); */
  position: absolute;
  bottom: 70px;
  left: -15%;
  width: 125%;
  height: 195px;
  background: #0c152a;
  border-radius: 100%;
  z-index: 60;
  pointer-events: none;
}

.believe-swiper1 .swiper-slide {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.believe-swiper1 .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  position: relative;
}

.believe-swiper1 .swiper-nav .swiper-button {
  width: 40px;
  height: 40px;
}

.believe-swiper1 .swiper-nav .swiper-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.believe-swiper1 .swiper-wrapper {
  margin: 0 0 2rem 0;
}

.believe-swiper1 .swiper-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1rem auto 3rem auto;
  z-index: 100;
  position: relative;
}

.moonImgWrap {
  position: absolute;
  bottom: 0;
}

.star3ImgWrap {
  position: absolute;
  top: 0;
  right: 0;
}

.star4ImgWrap {
  position: absolute;
  top: 0;
  left: 0;
}

/* contact section */

/* 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;
  }

  .header-container {
    padding: 15px 5px 15px 43px;
  }

  .star1ImgWrap {
    width: 50px;
  }

  .star2ImgWrap {
    display: none;
  }

  .sectionpadtop {
    padding-top: 40px;
  }

  .sectionpadbottom {
    padding-bottom: 40px;
  }

  .desktopCtaSection {
    display: none;
  }

  .mobileCTASection {
    display: block;
    position: fixed;
    z-index: 99999;
  }

  .navCallBtn {
    display: none;
  }

  .sectionHead {
    font-size: 2.5rem;
    text-wrap: balance;
  }

  .sectionSubhead {
    font-size: 1.5rem;
  }

  p {
    font-size: 14px;
  }

  /*  */

  .featureItem {
    margin: 10px;
  }

  /* overview */

  #overview .sectionHeadWrap {
    margin-top: 20px !important;
  }

  .logoPin {
    position: absolute;
    top: -32px;
    left: 0;
    right: 0;
    width: auto;
    height: 124px;
    display: flex;
    justify-content: center;
  }

  .overviewText {
    width: 95%;
    margin: 20px auto !important;
    text-wrap: balance;
  }

  .overviewFormWrap {
    width: 100%;
  }

  .statsHead {
    font-size: 1.5rem;
  }

  /* about section */

  .aboutCardWrap {
    width: 100%;
    margin-top: 20px;
  }

  .section__living {
    padding: 40px 0;
  }

  .star3ImgWrap {
    position: absolute;
    top: -55px;
    right: 0;
    width: 80px;
  }

  .star4ImgWrap {
    position: absolute;
    top: -55px;
    left: 0;
    width: 80px;
  }

  .section__living .star3ImgWrap {
    top: -36px;
    right: -42px;
  }

  .section__living .star3ImgWrap img {
    width: 60px;
  }

  /* living space */
  .believe-swiper1 {
    padding-inline: 2vw;
  }

  .believe-swiper1::after {
    height: 82px;
  }

  /* footer */
  .copyrightText {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footerLogoWrap {
    height: 200px;
    width: auto;
    margin-bottom: -50px;
  }

  .footTextWrap {
    text-wrap: balance;
  }
}

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