/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.plus-jakarta-sans {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* @font-face {
  font-family: radikal;
  src: url("../assets/fonts/Nootype-RadikalLight.otf");
} */

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --light-golden: #ddbf7a;
  --primary: #a99373;
  --golden: #c8a97b;
  --golden-gradient: linear-gradient(91deg,
      #c8a97b -2.42%,
      #ddbf7a 23.62%,
      #ddbf7a 61.2%,
      #c8a97b 88.52%);
  --playfair: "Playfair Display", serif;
  --jakrata: "Plus Jakarta Sans", sans-serif;
  --color: #f8da8f;
  --color-3: transparent;
  --radius-full: 100px;
}

html {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
}

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

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

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

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

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  padding-right: 0px !important;
  background: var(--white);
  font-family: var(--jakrata);
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

body.loading {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

body.loaded {
  -webkit-animation: fadeIn 3s ease-out forwards;
  animation: fadeIn 3s ease-out forwards;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* form loader css */

.form-loader {
  display: none;
}

.form-loader-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--light);
  border: 2px solid var(--white);
  margin: auto;
  padding: 0.45rem 0.75rem 0.3rem 0.75rem;
  border-radius: 4px;
}

.form-loader-wrapper .loader-txt {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

.f-loader {
  width: 25px;
  height: 25px;
  border: 3px solid var(--white);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 0.75s linear infinite;
  animation: rotation 0.75s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* form loader css */

.compensate-for-scrollbar {
  margin-right: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem !important;
}

ul {
  padding-left: 0rem !important;
  margin-bottom: 0rem !important;
}

li {
  list-style: none;
  text-decoration: none;
}

a {
  text-decoration: none !important;
}

p {
  margin-bottom: 0rem !important;
}

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

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

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

header {
  position: fixed;
  z-index: 10;
  /* top: 1%; */
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100%;
  left: 50%;
  background: #000;
  transform: translate(-50%, 0%);
  z-index: 999;
}

header.dropped {
  top: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100vw;
  /* background-color: var(--light); */
}

nav {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0.99rem 4rem;
}

nav.dropped {
  background-color: var(--primary);
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1rem;
  align-items: center;
}

.navbar-container .navlogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5rem;
}

.navbar-container .menu {
  display: none;
}

.navbar-container .navlogo .logo {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: 190px;
  -o-object-fit: cover;
  object-fit: cover;
}

nav.dropped .navbar-container .navlogo .logo {
  width: 100px;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -o-object-fit: cover;
  object-fit: cover;
}

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

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

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

.logo-img.logo-img-1::after {
  content: "";
  position: absolute;
  width: 1px;
  top: 0;
  right: -41px;
  height: 100%;
  background-color: var(--white);
}

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

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

.mob-logo {
  width: 230px;
  -o-object-fit: contain;
  object-fit: contain;
}

.navbar-container .navbar-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-container .navbar-links .navbar-link .nav-link {
  color: var(--white);
  font-size: 1rem;
  line-height: normal;
  font-style: normal;
  font-family: var(--radikal);
  font-weight: 400;
  text-wrap: nowrap;
  text-transform: capitalize;
}

.offcanvas.offcanvas-start {
  background: var(--black);
}

.offcanvas-body {
  padding: 2rem 1.5rem;
  background-color: var(--black);
  height: 100%;
  overflow-y: auto;
}

.offcanvas-navs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.offcanvas-link {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-cormorant);
  text-transform: capitalize;
  padding-bottom: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.offcanvas-link:hover {
  color: var(--primary);
}

.offcanvas-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--primary);
  left: 0;
  bottom: 0;
}

.offcanvas-nav:last-child .offcanvas-link::after {
  display: none;
}

.offcanvas-header .btn-close {
  filter: invert(1);
}

.btn-primary {
  color: var(--black);
  border: none;
  position: relative;
  border-radius: 0px;
  outline: none;
  display: flex;
  justify-content: center;
  background: transparent;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  text-wrap: nowrap;
  font-size: 1rem;
  overflow: hidden;
  transition: color 0.6s ease, border 0.6s ease;
  border: 1px solid transparent;
  z-index: 1;
  cursor: pointer;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(91deg,
      #c8a97b -2.42%,
      #ddbf7a 23.62%,
      #ddbf7a 61.2%,
      #c8a97b 88.52%);
  z-index: -1;
  transform: translateY(0%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateY(100%);
}

.btn-primary:hover {
  color: var(--primary);
  border: 1px solid var(--primary);
}

@-webkit-keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #a77d40;
    box-shadow: 0 0 0 0 #a77d40;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #a77d40;
    box-shadow: 0 0 0 0 #a77d40;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.modal-logo {
  width: 200px;
  max-width: 100%;
}

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

.form-control.custom-input {
  border: none;
  border-bottom: 1px solid var(--primary);
  background: transparent;
  border-radius: 0px;
  color: var(--primary);
}

.mobile-input-div {
  position: relative;
}

.mobile-input-div .country-code {
  position: absolute;
  top: 7px;
  left: 2px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary);
}

.invalid-feedback {
  margin-top: 0.2rem;
  font-size: 0.725rem;
}

.form-control.custom-input.mobile-input {
  padding-left: 2.55rem;
}

.form-control.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modal-form .form-check-label {
  color: var(--primary);
  font-weight: 400;
  cursor: pointer;
  font-size: 0.875rem;
}

.btn-submit {
  background: var(--golden-gradient);
  color: var(--black);
  border: none;
  border: 1px solid var(--golden);
  padding: 0.5rem 2rem;
  margin: 1rem 0 0 0;
}

.contact-form {
  padding: 1rem 0 0.25rem 0;
}

::-webkit-input-placeholder {
  color: var(--primary) !important;
}

::-moz-placeholder {
  color: var(--primary) !important;
}

:-ms-input-placeholder {
  color: var(--primary) !important;
}

::-ms-input-placeholder {
  color: var(--primary) !important;
}

::placeholder {
  color: var(--primary) !important;
}

/* Target placeholders inside the modal form only */
.modal-form ::placeholder {
  color: var(--primary) !important;
  opacity: 1;
}

.modal-form input::-webkit-input-placeholder {
  color: var(--primary) !important;
}

.modal-form input:-moz-placeholder {
  color: var(--primary) !important;
}

.modal-form input::-moz-placeholder {
  color: var(--primary) !important;
}

.modal-form input:-ms-input-placeholder {
  color: var(--primary) !important;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-bottom: 1px solid #dc3545;
}

.btn-fixed {
  border: none;
  outline: none;
  border-radius: 100px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.375rem;
  padding: 0.55rem 1.15rem;
}

/* ---------button of call now,  download brochure , enqurie now---------*/
.enquire-div {
  position: fixed;
  bottom: -50px;
  right: -50px;
  z-index: 999;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.enquire-div.show {
  bottom: 3%;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  right: 1vw;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border: none;
  background: transparent;
}

.btn-enquire {
  background: var(--black);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 2px solid var(--golden);
  padding: 0.6rem 1.6rem;
  border-radius: 0px;
  font-size: 1.15rem;
  font-weight: 500;
  transition: all 0.45s ease;
  cursor: pointer;
  animation: pulse-effect 2s infinite;
  display: flex;
  gap: 0.375rem;
}

.btn-enquire .txt {
  background: var(--golden-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-enquire .icon {
  width: 25px;
  height: 25px;
}

.btn-enquire .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.download-div {
  position: fixed;
  bottom: -50px;
  left: -50px;
  z-index: 999;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.download-div.show {
  bottom: 3%;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  left: 1vw;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border: none;
  background: transparent;
}

.download-btn {
  background: var(--black);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.6rem 1.6rem;
  border-radius: 0px;
  border: 2px solid var(--golden);
  font-size: 1.15rem;
  font-weight: 500;
  transition: all 0.45s ease;
  cursor: pointer;
  animation: pulse-effect 2s infinite;
  display: flex;
  gap: 0.375rem;
}

.download-btn .txt {
  background: var(--golden-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.download-btn .icon {
  width: 25px;
  height: 25px;
}

.download-btn .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/******************Banner Section Starts************* */

/* .mt40 {
  margin-top: 70px;
} */

.img-banner {
  position: relative;
}

.main-banner {
  position: relative;
}

.carousel-inner img {
  position: relative;
  /* z-index: 1; */
}

.ban-text {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 3;
}

.ban-title {
  color: #fff;
  font-size: 3rem;
  margin: -2.25rem 0 0 0;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0.5rem 0rem;
  text-align: center;
}

.carousel-item img {
  /* animation: zoomEffect 15s ease-in-out infinite; */
  /* transform-origin: center center; */
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }

  100% {
    transform: scale(1);
  }
}

.btn-visit.light {
  position: absolute;
  bottom: -99%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--white);
  background: var(--primary);
  gap: 0.45rem;
  padding: 0.5rem 1.25rem;
  color: #fff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

/******************Banner Section Ends************* */

/****************form-banner starts************ */

.form-sec{
  background: #f3f3f3;
}

.sec-pad {
  padding: 4rem 0;
}

.start-form {
  /* position: absolute; */
  width: 90%;
  /* transform: translate(-50%, 0%);
  left: 50%; */
  /* bottom: -22%; */
  background: #fff;
  /* z-index: 9; */
  margin: auto;
}

.start-form .form-wrapper {
  background: #fff;
  border: 1px solid var(--golden);
  padding: 40px;
  box-shadow: 0 12px 60px 0 rgba(89, 89, 89, 0.1);
}

.start-form h3 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3b3e44;
}

.start-form hr {
  border: none;
  border-top: 1px solid #eee;
  margin-bottom: 30px;
  opacity: 1;
}

.form-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  align-items: center;
}

.form-item {
  flex: 1 1 23%;
}

#hero-banner-form .form-group {
  position: relative;
  background-color: var(--offwhite);
  border: 1px solid #eee;
  border-radius: 8px;
  height: 65px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.form-group {
  position: relative;
}

.inputPlaceholderWrap {
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.placeHolderText {
  padding-left: 15px;
  font-size: 13px;
}

#hero-banner-form .form-control {
  padding-top: 20px !important;
}

#hero-banner-form .form-control {
  width: 100%;
  height: 100%;
  padding: 0 50px 0 15px;
  border: none;
  background: linear-gradient(91deg,
      rgba(200, 169, 123, 0.1) -2.42%,
      rgba(221, 191, 122, 0.1) 23.62%,
      rgba(221, 191, 122, 0.1) 61.2%,
      rgba(200, 169, 123, 0.1) 88.52%);
  font-size: 13px;
  color: #333 !important;
  outline: none;
}

#hero-banner-form .form-control::placeholder {
  color: #333;
  opacity: 1;
}

.input-icon {
  position: absolute;
  right: 15px;
  height: 16px;
  width: 16px;
  object-fit: contain;
}

.custom-outline {
  border: 1px solid rgba(231, 232, 234, 0.6);
  background: linear-gradient(91deg,
      rgba(200, 169, 123, 0.1) -2.42%,
      rgba(221, 191, 122, 0.1) 23.62%,
      rgba(221, 191, 122, 0.1) 61.2%,
      rgba(200, 169, 123, 0.1) 88.52%);
  padding: 0.55rem 1.5rem;
  border-radius: 8px;
}

.custom-outline .custom-input {
  border: none;
  /* background-color: rgb(191, 214, 191); */
  padding: 0.25rem 0;
  width: 100%;
}

.custom-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.custom-label span.txt {
  font-size: 1rem;
}

.submit-btn {
  background: linear-gradient(91deg,
      #c8a97b -2.42%,
      #ddbf7a 23.62%,
      #ddbf7a 61.2%,
      #c8a97b 88.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 0px;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--golden);
}

/* *************form banner ends********* */

/* ***********Overview Section Starts*********** */
.section-title {
  font-size: 3.5rem;
  text-transform: capitalize;
  font-family: var(--playfair);
  font-weight: 500;
  margin-bottom: 0.8rem;
  text-align: center;
  line-height: 1.2;
}

.section-title.aos-animate .char {
  background: linear-gradient(-45deg,
      var(--light-golden) 45%,
      var(--light-golden) 45%,
      var(--golden) 50%,
      transparent 50%);
  background-size: 2em 3em;
  z-index: calc(var(--char-total) - var(--char-index));
  position: relative;
  -webkit-animation: bg-pos 1.3s cubic-bezier(0.3, 0, 0.3, 1) forwards alternate;
  animation: bg-pos 1.3s cubic-bezier(0.3, 0, 0.3, 1) forwards alternate;
  -webkit-animation-delay: calc(20ms + (30ms * var(--char-index)));
  animation-delay: calc(20ms + (30ms * var(--char-index)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@-webkit-keyframes bg-pos {
  0% {
    background-position: 0 0;
  }

  80%,
  100% {
    background-position: -1em -1.5em;
  }
}

@keyframes bg-pos {
  0% {
    background-position: 0 0;
  }

  80%,
  100% {
    background-position: -1em -1.5em;
  }
}

.other-description {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 24px;
}

.other-description2 {
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 28px;
}

.section-overview {
  width: 100dvw;
  background: #f3f3f3;
  position: relative;
  /* padding: 15rem 0 10rem 0; */
}

.overview-container {
  width: 80%;
  margin: auto;
}

.section-overview::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  background: url(../assets/images/overview/overview.png) no-repeat center center / cover;
  width: 32dvw;
  height: 80dvh;
  clip-path: inset(100% 0% 0% 0%);
  transition: clip-path 1.5s linear;
}

/* When active, reveal image */
.section-overview.reveal::after {
  clip-path: inset(0% 0% 0% 0%);
}

.custom-heading {
  width: 75%;
  margin: auto auto auto 0;
}

.overview-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 3rem;
}

.sub-desc {
  padding-bottom: 3rem;
}

.overview-left,
.overview-right {
  width: 35%;
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
}

.overview-left ul {
  list-style: none;
  padding: 0;
}

.overview-left li {
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  gap: 1rem;
}

.divider2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  padding-bottom: 1rem;
  flex-direction: column;
}

.divider2 .line2 {
  width: 3%;
  position: relative;
  height: 7dvh;
  opacity: 0.7;
  background: linear-gradient(91deg,
      #c8a97b -2.42%,
      #ddbf7a 23.62%,
      #ddbf7a 61.2%,
      #c8a97b 88.52%);
}

.overview-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto auto auto;
}

.overview-download {
  border: none;
  position: relative;
  border-radius: 0px;
  outline: none;
  display: flex;
  justify-content: center;
  color: #c8a97b;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  text-wrap: nowrap;
  font-size: 1rem;
  overflow: hidden;
  transition: color 0.6s ease, border 0.6s ease;
  border: 1px solid var(--golden);
  z-index: 1;
}

.overview-download::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fffdf8;
  z-index: -1;
  transform: translateY(0%);
  transition: transform 0.6s ease;
}

.overview-download:hover::before {
  transform: translateY(100%);
}

.overview-download:hover {
  color: var(--black);
  background: var(--golden-gradient);
  border: 1px solid var(--golden);
}

@-webkit-keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #c8a97b;
    box-shadow: 0 0 0 0 #c8a97b;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #a77d40;
    box-shadow: 0 0 0 0 #a77d40;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.rose {
  position: absolute;
  z-index: 1;
  width: auto;
  height: 15rem;
  pointer-events: none;
}

.rose-bottom-left {
  bottom: -1rem;
  left: -26px;
  transform: rotate(15deg);
}

/* ************Overview Section Ends*********** */

/***********Amenitis Section Starts************/
.section-amenities {
  background: url(../assets/images/amenities/background.png) no-repeat center center / cover;
  position: relative;
  z-index: 1;
}

.amenities-overlay {
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(90deg,
      #000000e0 22.04%,
      rgba(0, 0, 0, 0.5) 49.88%,
      #000000f5 83.54%);
  padding: 4rem 0;
  position: relative;
  background-color: transparent !important;
  z-index: 2;
}

.amenities-slider3 {
  margin-top: 40px;
}

.amenities-slider3 .swiper-wrapper {
  margin: 0 !important;
}

.amenity-box {
  position: relative;
  text-align: center;
  padding: 40px 30px;
  border: 1px solid #d9ba7a;
  border-radius: 0px;
  overflow: hidden;
  background: transparent;
  height: 500px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-right: none !important;
  margin-right: 0 !important;
}

.amenity-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.amenity-box:hover .amenity-bg {
  opacity: 1;
}

.amenity-icon {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  border: 1px solid var(--light-golden);
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  transition: background-color 0.4s ease;
}

.amenity-box:hover .amenity-icon {
  background-color: var(--black);
}

.amenity-box h5 {
  position: relative;
  z-index: 2;
  background: var(--golden-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 10px;
}

.amenities-slider3 .swiper-slide {
  text-align: center;
}

.amenities-slider3 .swiper-slide img {
  height: auto;
  object-fit: cover;
  display: block;
}

.amenities-slider3 .swiper-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1rem auto 3rem auto;
}

.amenities-slider3 .swiper-nav .swiper-button {
  width: 40px;
  height: 40px;
}

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

.amenities-slider3 .swiper-wrapper {
  margin: 0 0 2rem 0;
}

/***********Amenitis Section ends************/

/* *******Floor Plan Section Starts******** */
.floor-plan {
  background: var(--white);
  z-index: 2;
  position: relative;
}

.believe-nav .custom-nav {
  margin: 1.4rem auto 0 auto;
  gap: 1rem;
  justify-content: center;
}

/* Nav item base styles */
.believe-nav .custom-nav .nav-item .nav-link {
  background: var(--white);
  border: 1px solid var(--golden);
  display: flex;
  align-items: center;
  border-radius: 0px;
}

.believe-nav .custom-nav .nav-item .nav-link span.txt {
  background: var(--golden-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.believe-nav .custom-nav .nav-item .nav-link.active {
  background: var(--golden-gradient);
}

.believe-nav .custom-nav .nav-item .nav-link.active span.txt {
  background: none;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: var(--black);
}

.layout-box {
  border: 2px solid var(--golden);
  border-radius: 0px;
  overflow: hidden;
  padding: 20px;
  background-color: #fff;
}

.layout-box img {
  filter: blur(2px);
}

.floor-desc {
  color: var(--black);
  font-weight: 500;
  display: flex;
  text-align: start !important;
  font-size: 1.2rem;
}

.floor-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 40px;
  height: 40px;
  border: 1px solid var(--golden) !important;
  padding: 8px 16px;
  font-size: 1.2rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* *******Floor Plan Section Ends******** */

/* ***************Location Section Starts******** */

.map-frame {
  position: absolute;
  height: 100%;
  width: 70%;
  top: 0;
  right: 0;
  z-index: 2;
}

.map-frame::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0));
  pointer-events: none;
  /* important: allows clicks to pass through */
}

.map-frame iframe {
  height: 100%;
  border: 0;
  width: 100%;
  pointer-events: none;
  object-fit: cover;
}

.section-heading .section-title {
  text-align: start;
}

.section-heading .other-description2 {
  text-align: start;
  padding-bottom: 1.2rem;
}

section.section-location {
  position: relative;
  width: 100%;
  height: auto;
  padding: 6rem 0 3rem 0;
  display: flex;
  justify-content: start;
  align-items: flex-end;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
}

/* section.section-location::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(108deg, rgba(255, 255, 255, 0.50) 34.41%, rgba(255, 255, 255, 0.00) 71.73%);
  background-size: contain;
  z-index: 3;
  inset: 0;
} */

/* section.section-location::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  inset: 0;
} */

.custom-container {
  width: 85%;
  margin: auto;
}

.location-accordion {
  background: var(--black);
  padding: 2rem;
  width: 35vw;
  position: relative;
  z-index: 3;
}

.location-accordion .accordion {
  --bs-accordion-bg: transparent !important;
}

.location-accordion .accordion-item {
  border: unset;
}

.location-accordion .accordion-header {
  background: transparent;
  position: relative;

  border-radius: 20px;
  padding: 0.25rem;
}

.location-accordion .accordion-header button {
  background: var(--golden-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: unset !important;
  font-weight: 600;
  padding: 0.25rem 1rem 0.25rem 1.75rem;
  position: relative;
  line-height: 52px;
  border-bottom: 1px solid var(--golden);
  font-size: 1.05rem;
}

.location-accordion .accordion-button::after {
  background-image: url("../assets/images/icons/drop.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 40px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.location-accordion .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-accordion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.6rem;
}

.location-accordion-content .location-content {
  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;
}

.location-accordion-content .location-content .location-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.location-accordion-content .location-content .location-head .location-no {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}

.location-accordion-content .location-content .location-head .location-title {
  font-weight: 400;
  color: var(--white);
  font-size: 0.8rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-accordion-content .location-content .location-dist {
  font-weight: 400;
  color: var(--white);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1rem;
  text-wrap: nowrap;
}

.location-map {
  width: 100%;
  /* height: 400px; */
  padding: 1rem;
  margin: 1rem auto auto auto;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ***************Location Section ends******** */

/* **********Interior Section Starts******/
.believe-swiper1,
.believe-swiper2 {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding-inline: 6vw;
  box-sizing: border-box;
  margin: 0 auto;
}

.believe-swiper1::before,
.believe-swiper2::before {
  content: "";
  position: absolute;
  top: -34px;
  left: -11%;
  width: 120%;
  height: 151px;
  background: var(--body-color, #fff);
  border-radius: 100%;
  z-index: 100;
  pointer-events: none;
}

/* Curve at the bottom */
.believe-swiper1::after,
.believe-swiper2::after {
  content: "";
  position: absolute;
  bottom: 70px;
  left: -15%;
  width: 120%;
  height: 110px;
  background: var(--body-color, #fff);
  border-radius: 100%;
  z-index: 60;
  pointer-events: none;
}

.believe-swiper1 .swiper-slide,
.believe-swiper2 .swiper-slide {
  text-align: center;
}

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

/* .believe-swiper1 .swiper-wrapper, .believe-swiper2 .swiper-wrapper {
  margin: 0 0 2rem 0;
} */

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

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

.swiper-slide.shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swiper-slide.shine:hover::before {
  opacity: 1;
  animation: shine 1s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.believe-swiper1 .swiper-nav,
.believe-swiper2 .swiper-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1rem auto 3rem auto;
}

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

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

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

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

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

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

/* **********Interior Section Ends******/

/* ********Walkthorught Section Starts**** */
.video-section {
  position: relative;
  height: 100vh;
  background: url("../assets/images/walkthrough/walkthrough.png") center center/cover no-repeat;
}

.video-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.video-text {
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: 2;
}

.virtual-tour {
  text-align: start !important;
}

/* Play button perfectly centered */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
}

.play-btn img {
  width: 100%;
  height: auto;
}

/* ********Walkthorught Section ends**** */

/* --------------About US Section Starts********* */
.about-us {
  background: url(../assets/images/about-us/about-us.webp) no-repeat center center / cover;
}

.about-overlay {
  background: linear-gradient(70deg,
      #000 5%,
      rgba(0, 0, 0, 0.8) 25%,
      rgba(0, 0, 0, 0.5) 45%,
      rgba(0, 0, 0, 0.8) 70%,
      #000 90%);
  padding: 5rem 0;
}

.divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  padding-bottom: 1rem;
}

.divider .line {
  width: 20%;
  position: relative;
  height: 2px;
  opacity: 0.7;
  background: linear-gradient(91deg,
      #c8a97b -2.42%,
      #ddbf7a 23.62%,
      #ddbf7a 61.2%,
      #c8a97b 88.52%);
}

.divider3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  padding-bottom: 1rem;
}

.divider3 .line {
  width: 15%;
  position: relative;
  height: 2px;
  opacity: 0.7;
  background: linear-gradient(91deg,
      #c8a97b -2.42%,
      #ddbf7a 23.62%,
      #ddbf7a 61.2%,
      #c8a97b 88.52%);
}

.gap-title {
  padding-bottom: 2rem;
}

/* *********About us Section Ends  */

/********** footer ***********/
.footer-black {
  background: url(../assets/images/footer/footer.webp) no-repeat center center / cover;
}

.bg-color {
  padding: 2rem;
  background: #000000db;
}

.text-footer a {
  color: #242424;
}

.copyright {
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  padding: 1rem 0rem;
  width: 300px;
  margin: auto;
  height: auto;
  max-width: 100%;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  object-fit: cover;
}

.qr-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1rem auto 1rem auto;
}

.qr-logo {
  width: 90px;
}

.qr-logos img {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  object-fit: cover;
}

.footer-qr img {
  width: 100%;
  height: 100%;
  /* border-radius: 6px; */
  -o-object-fit: cover;
  object-fit: cover;
}

.footer-desc {
  width: 90%;
  margin: auto;
}

.text-footer p {
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 400;
  padding: 1.3rem 1rem;
  text-wrap: balance;
  line-height: 24px;
}

.footer-desc p {
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  text-wrap: balance;
  font-weight: 500;
  line-height: 24px;
  padding: 0.2rem 1rem;
}

.copyright-desc {
  color: var(--white);
  margin-top: 1rem;
  padding: 0.2rem 1rem;
}

a.contact {
  text-decoration: none;
  transition: all 1s ease;
}

a.contact:hover {
  text-decoration: underline !important;
  text-underline-offset: 5px;
  transition: all 1s ease;
}

.copyright-desc a {
  text-decoration: none;
  transition: all 0.5s ease;
}

.copyright-desc2 {
  color: var(--white);
  font-size: 0.95rem;
  padding: 0.2rem 1rem;
}

.realatte-logo {
  height: 20px;
  vertical-align: middle;
  margin-left: 5px;
}

.copyright {
  display: flex;
  justify-content: space-between;
}

.copyright2 {
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.custom-hr {
  color: var(--white);
}

.copyright {
  width: 80%;
  margin: auto;
}

/* --------Modal Place holder starts */
.custom-placeholder::placeholder {
  color: white !important;
  opacity: 1;
  /* Ensure full visibility */
}

.custom-placeholder:-ms-input-placeholder {
  /* Edge 12-18 */
  color: white !important;
}

.custom-placeholder::-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white !important;
}

/* thank you page css */

nav.thank-you {
  background-color: #00000080;
}

section.secton-thankyou {
  height: calc(100dvh - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0rem 1.5rem;
  margin: 8rem auto auto auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}

section.secton-thankyou .thankyou-title {
  font-weight: 600;
  margin: 0.75rem auto 1.15rem auto !important;
  text-align: center;
  text-wrap: pretty;
  color: var(--light);
  font-size: 1.25rem;
}

section.secton-thankyou .thankyou-subtitle {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.75;
  text-align: center;
  text-wrap: pretty;
  color: var(--light);
}

.go_txt {
  font-size: 15px;
  color: #000;
  background-color: #fff !important;
  border-radius: 3.125rem;
  border: 1px solid #000;
  width: fit-content;
  padding: 15px 30px;
  margin: 15px auto 0;
}

.mobile-fixed-button {
  display: none;
}

 .carousel-inner{
    margin-top: 5.3rem;
  }

/* thank you page css */

/* ***********Modal Form********* */
.modal-content {
  background: var(--black);
  border-radius: unset;
  outline: 2px solid var(--light-golden);
  outline-offset: 4px;
}

.modal-header .btn-close {
  filter: invert(1);
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
  z-index: unset !important;
}

@media only screen and (max-width: 1400px) {
  nav {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 1rem 2rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-overview {
    /* padding: 12rem 0 12rem 0; */
  }

  .section-overview::after {
    width: 31dvw;
    height: 57dvh;
  }
}

@media only screen and (max-width: 1280px) {
  .navbar-container .navbar-links {
    gap: 2rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-overview {
    /* padding: 14rem 0 8rem 0; */
  }

  .section-overview::after {
    width: 36dvw;
    height: 58dvh;
  }

  /* .start-form {
    bottom: -25%;
  } */

  .form-flex {
    gap: 1rem;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar-container .menu {
    display: block;
    /* filter: invert(1); */
  }

  .navbar-links {
    display: none !important;
  }

  .navbar-container {
    justify-content: unset;
  }

  .section-title {
    font-size: 3rem;
  }

  .other-description {
    font-size: 0.8rem;
  }

  .other-description2 {
    font-size: 0.8rem;
  }

  .section-overview {
    /* padding: 13rem 0 8rem 0; */
  }

  .overview-container {
    width: 80%;
    margin: auto;
  }

  .overview-left,
  .overview-right {
    font-size: 0.8rem;
  }

  .section-overview::after {
    width: 40dvw;
    height: 62dvh;
  }

  .location-accordion {
    padding: 1.5rem;
    width: 45%;
  }

  .location-accordion .accordion-header button {
    padding: 0.25rem 1rem 0.25rem 1.75rem;
    position: relative;
    line-height: 45px;
    font-size: 0.9rem;
  }

  /* .start-form {
    bottom: -20%;
  } */

  .form-flex {
    gap: 1rem;
  }

  .custom-label span.txt {
    font-size: 0.95rem;
  }
}

@media only screen and (max-width: 991px) {
  .believe-nav .custom-nav {
    margin: 1.4rem auto auto auto;
    gap: 1rem;
  }

  .navbar-container {
    justify-content: unset;
  }

  .form-flex {
    gap: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .other-description {
    font-size: 0.9rem;
  }

  .section-overview {
    height: auto;
    /* padding: 1rem 0 16rem 0; */
  }

  .custom-heading {
    width: 90%;
    margin: auto;
  }

  .other-description2 {
    font-size: 0.9rem;
  }

  .overview-left,
  .overview-right {
    font-size: 0.9rem;
  }

  .section-overview::after {
    width: 35dvw;
    height: 41dvh;
  }

  .divider .line {
    width: 100%;
  }

  .rose {
    height: 10rem;
  }

  .rose-bottom-left {
    bottom: 1rem;
    left: -30px;
  }

  .location-accordion {
    padding: 1.5rem;
    width: 100%;
    margin-top: -3rem;
    position: relative;
  }

  section.section-location {
    padding: 4rem 0 3rem 0;
    background: transparent;
  }

  section.section-location::before {
    display: none;
  }

  .video-section {
    height: 60vh;
  }

  .video-text {
    position: absolute;
    top: 57px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
  }

  .virtual-tour {
    text-align: unset !important;
  }

  /* .start-form {
    bottom: -21%;
  } */

  .believe-swiper1::before,
  .believe-swiper2::before {
    top: -95px;
    height: 151px;
  }

  .believe-swiper1::after,
  .believe-swiper2::after {
    bottom: 43px;
    height: 110px;
  }

  .map-frame {
    display: none;
  }

  .new-form {
    position: relative;
    width: 90%;
    transform: unset;
    left: unset;
    bottom: unset;
    z-index: 9;
    margin: auto;
  }

  .new-form .form-wrapper {
    background: #fff;
    border: 1px solid var(--golden);
    padding: 1rem;
    box-shadow: 0 12px 60px 0 rgba(89, 89, 89, 0.1);
  }

  .new-form h3 {
    text-align: left;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #3b3e44;
  }

  .new-form hr {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 30px;
  }

  .form-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    flex-direction: column;
    align-items: unset;
  }
}

@media only screen and (max-width: 888px) {
  /* .start-form {
    bottom: -33%;
  } */

  .form-flex {
    gap: 1rem;
  }

  .section-overview {
    height: auto;
    /* padding: 16rem 0 16rem 0; */
  }
}

@media only screen and (max-width: 767px) {
  header {
    top: 0;
    width: 100%;
  }


  .carousel-inner{
    margin-top: 4.7rem;
  }

  .navbar-container .navlogo {
    /* gap: 2rem; */
  }

  .nav-tabs .nav-link {
    font-size: 1rem;
  }

  .navbar-container {
    justify-content: space-between;
  }

  .section-overview {
    height: 100%;
    padding: 1rem 0 23rem 0;
    margin: 0px 0 0 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .other-description {
    font-size: 0.9rem;
  }

  .other-description2 {
    font-size: 0.9rem;
  }

  .overview-left,
  .overview-right {
    font-size: 0.9rem;
  }

  .section-overview::after {
    width: 80dvw;
    height: 40dvh;
  }

  .overview-container {
    width: 95%;
    padding-top: 5rem;
  }

  .custom-heading {
    width: 100%;
    margin: auto;
  }

  .overview-row {
    display: unset;
    margin-top: 3rem;
  }

  .divider2 {
    flex-direction: row;
  }

  .divider2 .line2 {
    width: 100%;
    height: 1px;
  }

  .divider .line {
    width: 100%;
  }

  .divider3 .line {
    width: 100%;
  }

  .overview-left,
  .overview-right {
    width: unset;
  }

  .rose-bottom-left {
    display: none;
  }

  .sec-pad {
    padding: 2rem 0;
  }

  section.section-location::before {
    display: none;
  }

  .section-heading .section-title {
    text-align: center;
  }

  .section-heading .other-description2 {
    text-align: center;
    padding-bottom: 1.2rem;
  }

  .floor-carousel .owl-nav {
    margin-top: 1rem;
  }

  .believe-swiper1::before,
  .believe-swiper2::before {
    content: "";
    position: absolute;
    top: -33px;
    /* matches curve depth */
    left: -13%;
    width: 120%;
    height: 72px;
    /* increased for smoothness */
    background: var(--body-color, #fff);
    border-radius: 100%;
    z-index: 100;
    pointer-events: none;
  }

  .believe-swiper1::after,
  .believe-swiper2::after {
    content: "";
    position: absolute;
    bottom: 70px;
    left: -15%;
    /* matched to top curve for symmetry */
    width: 120%;
    height: 66px;
    /* same height as top for even look */
    background: var(--body-color, #fff);
    border-radius: 100%;
    z-index: 60;
    pointer-events: none;
  }

  /* .believe-swiper1 .swiper-nav, .believe-swiper2 .swiper-nav {
    margin: 1rem auto 1rem auto;
  } */

  .location-map {
    padding: 0rem;
  }

  .amenities-slider3 .swiper-wrapper {
    padding-left: 20px !important;
    /* Adds space after last slide */
  }

  .amenity-box {
    height: 450px !important;
  }

  .amenity-icon {
    width: 120px;
    height: 120px;
  }

  .amenity-box h5 {
    font-size: 0.7rem;
  }

  /* *******mobile view button starts*****/

  section.section-mobile-fixed {
    position: fixed;
    z-index: 999;
    left: 0;
    padding: 0;
    bottom: 0;
    width: 100vw;
  }

  .mobile-toggle-fixed {
    width: 100%;
  }

  .btn-toggle-fixed {
    width: 100%;
    border: none;
    padding: 15px 0;
    margin: 0;
  }

  .mobile-toggle-fixed .row {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .mobile-toggle-fixed .col-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .col-6:first-child .btn-toggle-fixed {
    background-color: var(--black);
    border-top: 1px solid var(--golden);
  }

  .col-6:last-child .btn-toggle-fixed {
    background-color: white;
    border-top: 1px solid var(--golden);
  }

  .btn-toggle-fixed .btn-toggle-fixed-txt {
    font-size: 1rem;
    font-weight: 500;
  }

  .col-6:first-child .btn-toggle-fixed-txt {
    background: var(--golden-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .col-6:last-child .btn-toggle-fixed-txt {
    color: black;
  }

  /* *******mobile view button ends*****/

  .footer-logo {
    width: 200px;
  }

  .qr-logo {
    width: 80px;
  }

  .copyright {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.2rem;
  }

  .copyright2 {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 2.5rem;
    gap: 0.2rem;
  }

  .section-overview::after {
    width: 53dvw;
    height: 52dvh;
  }

  .custom-container {
    width: 95%;
    margin: auto;
  }

  .footer-desc {
    width: unset;
    margin: unset;
  }

  .readmore-btn {
    background: none;
    border: none;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 0.85rem;
  }

  .readmore-btn:hover {
    text-decoration: underline;
  }

  .map-frame {
    display: none;
  }

  .custom-label span.txt {
    font-size: 0.925rem;
  }
}

@media only screen and (max-width: 576px) {
  .section-overview {
    padding: 1rem 0 28rem 0;
  }

  .section-overview::after {
    width: 73dvw;
    height: 50dvh;
  }

  .believe-swiper::before,
  .believe-swiper::after {
    height: 80px;
    left: -10%;
    width: 120%;
  }

  .believe-swiper {
    padding-inline: 4vw;
  }

  .navbar-container .navlogo {
    width: 100%;
  }

  .logo-middle {
    width: 100%;
    display: block;
    display: flex;
    margin: 0 0 0 -3rem;
    justify-content: center;
  }
}

@media only screen and (max-width: 500px) {
  .section-overview {
    padding: 1rem 0 28rem 0;
  }

  .section-overview::after {
    width: 85dvw;
    height: 50dvh;
  }
}

@media only screen and (max-width: 450px) {
  .section-overview {
    padding: 1rem 0 25rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-overview::after {
    width: 82dvw;
    height: 48dvh;
  }

  .text-footer p {
    font-size: 0.8rem;
  }

  .copyright-desc2 {
    font-size: 0.85rem;
  }

  .navbar-container .navlogo .logo {
    width: 150px;
  }

  /* .section-overview::after {
    width: 73dvw;
    height: 42dvh;
  } */
}

@media only screen and (max-width: 300px) {
  .section-overview::after {
    width: 49dvw;
    height: 28dvh;
  }
}