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

@font-face {
  font-family: Futura;
  src: url("../assets/fonts/Futura.ttc");
}

@font-face {
  font-family: futura-heavy;
  src: url("../assets/fonts/Futura_Heavy_font.ttf");
}

@font-face {
  font-family: futura-medium;
  src: url("../assets/fonts/Futura_Book.ttf");
}

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

:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #451616;
  --golden-gradient: linear-gradient(
    270deg,
    #e7cc9e 22.26%,
    #b69265 62.47%,
    #986f42 86.09%
  );
  --color-3: transparent;
  --radius-full: 100px;
  --light: #fff6e7;
  --montserrat: "Montserrat", sans-serif;
  --Futura: Futura;
  --futura-medium: futura-medium;
  --futura-heavy: futura-heavy;
}

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(--primary);
  font-family: var(--futura-medium);
}

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

a {
  text-decoration: none !important;
}

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

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

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

.mirror {
  transform: scaleX(-1);
}

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%;
  transform: translate(-50%, 0%);
  z-index: 999;
  border: 1px solid rgba(79, 28, 27, 0.1);
  background: rgba(79, 28, 27, 0.5);
}

header.dropped {
  top: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100vw;
}

nav {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0rem 5rem;
}

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

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  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 .custom-visible {
  display: none;
}

.navbar-container .menu {
  width: 30px;
}

.navbar-container .menu a {
  display: block;
  width: 100%;
  height: 100%;
}

.navbar-container .menu a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-container .navlogo .logo {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: 12vw;
  -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: 100%;
  -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;
}

.phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.phone-number {
  background: var(--golden-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--futura-medium);
}

.navbar-container .navbar-links .navbar-link .nav-link {
  color: var(--light);
  font-size: 1vw;
  line-height: normal;
  font-style: normal;
  font-weight: 400;
  text-wrap: nowrap;
  font-family: var(--futura-medium);
}

.btn-phone {
  width: 40px;
  height: 40px;
  background-color: var(--light);
  display: flex;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
}

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

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

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

.offcanvas-link {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--light);
  text-transform: capitalize;
  padding-bottom: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

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

.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 {
  text-transform: uppercase;
  border: 1px solid var(--golden);
  position: relative;
  border-radius: var(--radius-full);
  outline: none;
  display: flex;
  justify-content: center;
  background: var(--golden-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  align-items: center;
  padding: 0.4rem 2.25rem;
  text-wrap: nowrap;
  font-size: 1vw;
  z-index: 1;
  cursor: pointer;
  font-weight: 500;
}

@-webkit-keyframes pulse-effect {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ffffff;
    box-shadow: 0 0 0 0 #ffffff;
  }

  70% {
    -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-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-box-shadow: 0 0 0 0 #ffffff;
    box-shadow: 0 0 0 0 #ffffff;
  }

  70% {
    -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-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(--light);
  background: transparent;
  border-radius: 0px;
  color: var(--light);
}

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

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

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

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

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

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

.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;
  text-transform: uppercase;
  font-weight: 500;
}

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

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

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

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

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

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

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

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

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

.modal-form input:-ms-input-placeholder {
  color: var(--light) !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(--primary);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid var(--light);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.45s ease;
  cursor: pointer;
  animation: pulse-effect 2s infinite;
  display: flex;
  gap: 0.375rem;
}

.btn-enquire .txt {
  color: var(--light);
  text-transform: uppercase;
}

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

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

.btn-contact {
  background-color: var(--white);
  padding: 0.55rem 1rem;
  border-radius: 8px;
}

.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(--primary);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  border: 1px solid var(--light);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.45s ease;
  cursor: pointer;
  animation: pulse-effect 2s infinite;
  display: flex;
  gap: 0.375rem;
}

.download-btn .txt {
  color: var(--light);
  text-transform: uppercase;
}

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

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

.section-heading {
  position: relative;
  z-index: 4;
}

.section-heading .section-title {
  font-size: 2.5vw;
  color: var(--primary);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: capitalize;
  font-family: var(--Futura);
}

.section-heading.light .section-title {
  color: var(--light);
}

.section-heading .section-subtitle {
  font-size: 1vw;
  color: var(--primary);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: uppercase;
  font-family: var(--Futura);
}

.section-heading.light .section-subtitle {
  color: var(--light);
}

.section-heading .section-desc {
  font-size: 1vw;
  color: var(--primary);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading.light .section-desc {
  color: var(--light);
}

/* ************Overview Section Starts*********/
section.section-overview {
  position: relative;
  padding: 4vw 0 15vw 0;
  overflow: hidden;
  background: url(../assets/images/elements/bg.webp) no-repeat center center /
    cover;
  z-index: 1;
  /* Prevent internal layout shifts from affecting sibling elements (panels-container) */
  contain: layout paint;
}

section.section-overview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../assets/images/overview/overview.webp) no-repeat center
    center / cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  clip-path: inset(100% 0% 0% 0%);
  transition: clip-path 2s linear;
  /* Keep clip-path animation on GPU compositor — prevents layout reflow on scroll */
  will-change: clip-path;
  contain: paint;
}

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

.custom-container {
  width: 80vw;
  max-width: 100%;
  margin: auto;
}

.custom-container-2 {
  width: 80vw;
  max-width: 100%;
  margin: auto;
}

.gap-14 {
  gap: 14vw;
}

.bold-font {
  font-weight: 500 !important;
  font-family: var(--futura-heavy);
}

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

.overview-number-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.counter-box h3 {
  font-size: 2vw;
  margin: 0;
  color: var(--primary);
  font-family: var(--Futura);
}

.counter-box p {
  margin: 0;
  font-size: 1.3vw;
  color: var(--primary);
  font-family: var(--Futura);
}

.count-subtitle {
  font-size: 1.1vw;
  color: var(--primary);
  font-weight: 600;
  font-family: var(--futura-medium);
}

.overview-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  text-align: center;
}

.box-2 {
  position: relative;
}

.box-2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  width: 100%;
  height: 1px;
  background: var(--primary);
}

.box-3 {
  position: relative;
}

.box-3::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: 0;
  height: 100%;
  width: 1px;
  background: var(--primary);
}

.box-3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  width: 100%;
  height: 1px;
  background: var(--primary);
}

.box-7 {
  position: relative;
}

.box-7::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: 0;
  height: 100%;
  width: 1px;
  background: var(--primary);
}

.box-22 {
  position: relative;
}

.box-22::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  width: 100%;
  height: 1px;
  background: var(--primary);
}

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

/* **************Panaorma Section Starts**** */
section.section-panorama {
  position: relative;
  background: var(--primary);
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.panels-container {
  position: relative;
  height: 100dvh;
}

.custom-panel {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background: transparent;
}

.panels-container.pinned .custom-panel {
  position: fixed;
}

.outer,
.inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section-panorama-mobile {
  padding: 4rem 0;
}

/* ─── Mobile: disable GSAP panel layout, stack panels naturally ─── */
@media (max-width: 991px) {
  .panels-container {
    height: auto;
    /* Let stacked panels define the height */
  }

  .custom-panel {
    position: relative;
    /* In normal document flow */
    height: 100dvh;
    /* Each panel still fills the viewport */
    visibility: visible;
    /* Always visible — GSAP cleared inline styles */
    opacity: 1;
    width: 100%;
  }

  .outer,
  .inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}

.bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  background-size: cover;
  background-position: center;
}

.panorama-label {
  font-size: 1vw;
  background: var(--golden-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem !important;
  font-family: var(--Futura);
}

.panorama-text {
  font-size: 1.5vw;
  line-height: 1.8;
  background: var(--golden-gradient);
  font-family: var(--Futura);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.panorama-content-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.fancybox-caption__body {
  font-size: 2rem !important;
}

.section-panorama-mobile {
  display: none;
}

.panorama-img {
  width: 100%;
  height: 100%;
}

.section-panorama-mobile .panorama-img {
  width: 90%;
  margin: auto;
  height: 100%;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

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

.char {
  display: inline-block;
  transform-origin: bottom;
}

.view-label {
  position: absolute;
  top: 10%;
  right: 10%;
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 500;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.75);
}

.scroll {
  position: absolute;
  bottom: 9%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 2;
  cursor: pointer;
  text-align: center;
}

.scroll img {
  width: 4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.scroll p {
  font-size: 1vw;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* **************Panaorma Section Ends**** */

/* **************Project Configuration Section Starts**** */
section.section-project-configuration {
  position: relative;
  padding: 8rem 0 4rem 0;
  z-index: 1;
  background: url(../assets/images/elements/bg.webp) no-repeat center center /
    cover;
}

section.section-project-configuration::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: var(--primary);
  z-index: -1;
}

.project-config-img {
  background: var(--white);
  filter: blur(5px);
  display: block;
  cursor: pointer;
}

.project-config-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.starting-area-box {
  border: 2px solid #e7cc9e;
  border-radius: 0px;
  padding: 2rem;
  margin-top: 7rem;
}

.area-title {
  font-size: 1.2vw;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--light);
  text-transform: uppercase;
}

.area-divider {
  border: none;
  border-top: 2px solid #e7cc9e;
  margin-bottom: 1.2rem;
  opacity: unset;
}

.area-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

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

.area-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1vw;
  font-weight: 400;
  color: var(--light);
}

.btn-price {
  border: 1px solid #e7cc9e;
  color: var(--light);
  text-decoration: none;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-size: 1vw;
  font-weight: 500;
  background: rgba(201, 164, 97, 0.1);
  transition: all 0.3s ease;
}

/* **************Project Configuration Section Ends**** */

section.section-specification {
  padding: 4rem 0;
}

section.section-location {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.map-click-overlay {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 5;
  background-color: transparent;
  width: 55vw;
  height: 100%;
}

.map-click-overlay a {
  width: 100%;
  display: block;
  height: 100%;
}

section.section-location::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      106deg,
      #fff6e7 33.7%,
      rgba(255, 246, 231, 0) 58.4%,
      rgba(255, 246, 231, 0) 97.62%
    ),
    linear-gradient(
      90deg,
      #fff6e7 21.22%,
      rgba(255, 246, 231, 0.75) 24.07%,
      rgba(255, 246, 231, 0.5) 26.93%,
      rgba(255, 246, 231, 0.25) 29.78%,
      rgba(255, 246, 231, 0) 32.63%
    );
}

.location-icon {
  width: 40px;
  height: 40px;
}

.location-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-frame {
  position: absolute;
  height: 100%;
  width: 80%;
  top: 0;
  right: 0;
  display: block;
  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;
} */

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

.location-container {
  position: relative;
  z-index: 3;
  width: 30rem;
  max-width: 90%;
}

.location-accordion .accordion-button {
  background-color: transparent;
}

.location-accordion .accordion-item {
  background-color: transparent;
  border-bottom: 1px solid rgba(67, 21, 21, 0.25);
}

.location-accordion .accordion-button:not(.collapsed) {
  box-shadow: unset;
}

section.section-construction {
  padding: 6rem 0;
}

.custom-container-3 {
  width: 90vw;
  margin: auto 1% auto auto;
}

.construction-content {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 60dvh;
}

.construction-content .construction-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.construction-content .construction-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 100%;
  transition: all 0.75s ease;
  background: transparent;
  pointer-events: none;
}

.construction-content .construction-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.construction-content .construction-date {
  border-radius: 6px;
  background: rgba(75, 24, 23, 0.47);
  color: var(--white);
  position: absolute;
  padding: 0.5rem 1.25rem;
  top: 0%;
  font-weight: 500;
  font-size: 1.1vw;
  opacity: 0;
  right: 4%;
  transition: all 0.75s ease;
}

.construction-content .construction-title {
  color: var(--white);
  position: absolute;
  left: 4%;
  bottom: 0%;
  opacity: 0;
  font-weight: 500;
  font-size: 1.25vw;
  transition: all 0.75s ease;
}

.construction-swiper-container
  .swiper-slide.swiper-slide-active
  .construction-content
  .construction-img::after {
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 44.6%,
    rgba(0, 0, 0, 0.5) 70.83%
  );
  transition: all 1s ease;
  cursor: pointer;
}

.construction-swiper-container
  .swiper-slide.swiper-slide-active
  .construction-content
  .construction-title {
  opacity: 1;
  bottom: 4%;
  transition: all 1s ease;
}

.construction-swiper-container
  .swiper-slide.swiper-slide-active
  .construction-content
  .construction-date {
  top: 4%;
  opacity: 1;
  transition: all 1s ease;
}

.swiper-nav .swiper-button {
  width: 3.5rem;
  height: 3.5rem;
}

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

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

.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 */

section.secton-thankyou {
  height: calc(70dvh - 70px);
  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;
  background: var(--golden-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.25rem;
}

section.secton-thankyou .thankyou-subtitle {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.75;
  text-align: center;
  background: var(--golden-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.25rem;
}

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

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

/* thank you page css */

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

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

.modal-header {
  border-bottom: 1px solid var(--light) !important;
}

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

/************************** shailesh gallery section css ********************/

.texture-bg {
  position: relative;
  z-index: 1;
}

.texture-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background: url("../assets/images/layers/bg-layer.webp") no-repeat center
    center/cover;
}

section.section-masterplan {
  padding: 4rem 0;
}

.map-container {
  width: 90%;
  margin: auto;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.section-gallery {
  padding: 5rem 0;
}

.gallery-container {
  max-width: 100%;
  width: 100%;
  margin: auto;
}

.gallery-nav-content {
  margin: 3rem 0 0 0;
}

.gallery-nav .nav-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.btn-tab {
  border-radius: 7px;
  border: 2px solid #e7cc9e;
  color: #4f1c1b;
  font-size: 1vw;
  padding: 0.65rem 2.5rem;
  width: 100%;
  font-weight: 500;
  background: transparent;
  transition: all 0.5s ease;
  text-transform: capitalize;
}

.btn-tab:hover {
  color: #4f1c1b;
  background: linear-gradient(
    270deg,
    #e7cc9e 22.26%,
    #b69265 62.47%,
    #986f42 86.09%
  ) !important;
}

.btn-tab.active {
  background: linear-gradient(
    270deg,
    #e7cc9e 22.26%,
    #b69265 62.47%,
    #986f42 86.09%
  ) !important;
  color: #4f1c1b !important;
}

.gallery-content {
  margin: 3rem 0 0 0;
}

.gallery-arc {
  position: relative;
  height: 480px;
  perspective: 1200px;
}

.gallery-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: 360px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  transform: translateX(-50%);
  opacity: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* .gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 44.6%,
    rgba(0, 0, 0, 0.5) 70.83%
  );
} */

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay-txt {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: 1%;
  transition: all 0.5s ease;
  font-size: 1.25vw;
  text-shadow: rgba(0, 0, 0, 0.75) 1px 0 10px;
  font-weight: 500;
  color: var(--white);
  text-wrap: nowrap;
}

.gallery-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.btn-gallery-nav {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 4rem;
  cursor: pointer;
  height: 4rem;
}

.btn-gallery-nav img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.masterplan-content {
  background: #fff6e7;
  padding: 50px;
}

.masterplan-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.masterplan-list li {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: max-content;
  gap: 1.2rem;
}

.masterplan-list span {
  width: 10px;
  height: 10px;
  background: #5a1f1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
}

section.section-amenities {
  position: relative;
  background: var(--primary);
  padding: 5rem 0;
}

/* default (Arrival Deck) */
section.section-amenities.arrival::after {
  position: absolute;
  content: "";
  background: url("../assets/images/amenities/amenities-web.png") no-repeat
    center center/cover;
  background-size: 100% 100%;
  width: 50vw;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Leisure Deck */
section.section-amenities.leisure::after {
  position: absolute;
  content: "";
  background: url("../assets/images/amenities/podium-mobile.webp") no-repeat
    center center/cover;
  background-size: 100% 100%;
  width: 50vw;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Sky Deck */
section.section-amenities.sky::after {
  position: absolute;
  content: "";
  background: url("../assets/images/amenities/sky-mobile.webp") no-repeat center
    center/cover;
  background-size: 100% 100%;
  width: 50vw;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* section.section-amenities::after {
  position: absolute;
  content: "";
  background: url("../assets/images/layers/amens-overlay.png") no-repeat center center/cover;
  background-size: 100% 100%;
  width: 50vw;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
} */

.text-shadow {
  text-shadow: #000 1px 0 10px;
}

.amenities-container {
  display: flex;
  justify-content: end;
}

.amenities-nav-tab-content {
  max-width: 100%;
}

.amenities-nav-tab-content .nav-tab-content {
  background: #fff6e7;
  padding: 3vw 2vw 3vw 18vw;
  width: 55vw;
  max-width: 100%;
  transition: all 0.5s ease;
  border-radius: 16px;
}

.amenities-nav .nav-pills {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  gap: 1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.amenities-nav .nav-pills .nav-item {
  width: 100%;
}

.amenities-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.amenities-lists .amenities-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.amenities-lists .amenities-list .amens-icon {
  width: 3rem;
  height: 3rem;
}

.amens-txt {
  text-transform: lowercase;
}

.amens-txt::first-letter {
  text-transform: uppercase;
}

.amenities-lists .amenities-list .amens-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.amenities-carousel-container .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0 0 0;
}

section.section-amenities {
  padding: 3rem 0;
}

/* ── Spacer sections ─────────────────────────── */
.spacer {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  padding: 4rem 2rem;
}

/* ── Main wrapper ────────────────────────────── */
.wrapper {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 4rem;
}

.cards {
  width: 80vw;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Card wrappers ───────────────────────────── */
.card-wrapper {
  width: 100%;
  perspective: 500px;
  margin-bottom: 50px;
}

.card-wrapper:last-child {
  margin-bottom: 0;
}

/* ── Cards ───────────────────────────────────── */
.card {
  width: 100%;
  border-radius: 16px;
  background-color: var(--white);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.spec-txt {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.spec-txt .spec-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #4f1c1b;
}

.spec-txt .spec-subtitle {
  color: #6f4d2d;
  font-size: 1rem;
  font-weight: 400;
}

/* .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  border-radius: inherit;
} */

/* *********about us section starts******/

section.section-about {
  position: relative;
  height: 100%;
  padding: 5rem 0;
  background: url("../assets/images/aboutus/3.webp") no-repeat left center /
    cover;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}

section.section-about::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  right: 0;
  top: 0;
  background: url(../assets/images/aboutus/2.webp) no-repeat center / cover;
  background-size: 100% 100%;
}

.about-content {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.about-inner {
  width: 70%;
  text-align: center;
}

.about-logo {
  margin-bottom: 2rem;
}

.about-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.about-stats .stat:nth-child(4) {
  grid-column: 1 / 3;
  justify-self: center;
}

.about-stats .stat:nth-child(5) {
  grid-column: 3;
  justify-self: start;
}

.stat h3 {
  font-size: 2vw;
  font-weight: 500;
  font-family: var(--montserrat);
  color: var(--primary);
}

.stat p {
  font-size: 1vw;
  font-family: var(--Futura);
  color: var(--primary);
}

/* *********about us section ends******/

/* ************contact us section starts****** */
/* Get start */

.section_get {
  padding: 6rem 0;
  background: var(--primary);
  position: relative;
}

.half_circle {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 13%;
}

.half_circle img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section_get .custom-input {
  background: transparent;
  border-bottom: 1px solid rgba(255, 246, 231, 0.54);
  border-radius: unset;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--light);
}

.section_get .custom-input::placeholder {
  color: var(--light) !important;
  opacity: 1;
}

.dis-color {
  color: var(--light);
}

.custom-disclaimer {
  color: rgba(255, 246, 231, 0.45);
}

/* ************contact us section starts****** */
/* footer start */
.text-light {
  color: var(--light) !important;
}

.section__footer {
  width: 100%;
  padding: 3rem 0 0 0;
  background: url(../assets/images/elements/bg.webp) center no-repeat;
  background-size: cover;
}

.footer_div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer_logo img {
  width: 70%;
  height: auto;
  object-fit: cover;
}

.footer_disc p {
  font-family: var(--futura-medium);
  font-size: 1vw;
  color: var(--primary);
}

.reg_div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  margin: 1rem auto;
}

.reg_div h2 {
  font-family: var(--Futura);
  font-weight: 500;
  font-size: 1.1vw;
  color: var(--primary);
  text-transform: uppercase;
}

.reg_div p {
  font-family: var(--futura-medium);
  font-size: 1vw;
  color: var(--primary);
}

.reg_div p a {
  color: var(--primary);
}

.reg_div img {
  width: 30%;
  height: auto;
  object-fit: cover;
}

.copy_div {
  background: var(--primary);
  padding: 1.5rem 0;
}

.copy_para p {
  font-family: var(--Futura);
  font-weight: 500;
  font-size: 1vw;
  color: var(--light);
  margin-bottom: 0;
}

/* footer end */
@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: 0.65rem 3rem;
  }

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

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

  .btn-primary {
    font-size: 1.15vw;
  }

  .btn-primary {
    padding: 0.4rem 1.25rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: 1.15vw;
  }
}

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

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

  .custom-container {
    width: 90%;
    max-width: 100%;
  }

  .custom-container-2 {
    width: 90vw;
  }

  .amenities-nav-tab-content .nav-tab-content {
    padding: 3vw 2vw 3vw 18vw;
    width: 60vw;
    transition: all 0.5s ease;
  }

  .btn-tab {
    font-size: 1.35vw;
    transition: all 0.5s ease;
  }

  .construction-content .construction-date {
    font-size: 1.5vw;
    transition: all 0.75s ease;
  }

  .construction-content .construction-title {
    font-size: 2vw;
    transition: all 0.75s ease;
  }

  .map-click-overlay {
    width: 50vw;
  }

  .gallery-overlay-txt {
    transition: all 0.5s ease;
    font-size: 2vw;
  }
}

@media only screen and (max-width: 1060px) {
  .navbar-container .navlogo .logo {
    width: 20vw;
  }

  .section-heading .section-desc {
    font-size: 1.25vw;
  }

  .section-heading .section-title {
    font-size: 3vw;
  }

  .counter-box h3 {
    font-size: 2vw;
  }

  .count-subtitle {
    font-size: 1.25vw;
  }

  .counter-box p {
    font-size: 1.5vw;
  }

  .section-heading .section-desc {
    font-size: 1.25vw;
  }

  .panorama-label {
    font-size: 1.25vw;
  }

  .panorama-text {
    font-size: 1.75vw;
  }

  .section-heading .section-subtitle {
    font-size: 1.5vw;
  }

  .area-title {
    font-size: 1.75vw;
  }

  .area-info {
    font-size: 1.5vw;
  }

  .btn-price {
    font-size: 1.5vw;
  }

  /* *********about us css starts**** */
  .stat p {
    font-size: 1.25vw;
  }

  .stat h3 {
    font-size: 2.5vw;
  }

  /* *********about us css ends**** */

  /* *********farzeen section starts********* */
  .footer_disc p {
    font-size: 1.25vw;
  }

  .reg_div h2 {
    font-size: 1.5vw;
  }

  .reg_div p {
    font-size: 1.25vw;
  }

  .copy_para p {
    font-size: 1.25vw;
  }

  /* *********farzeen section starts********* */
  .scroll p {
    font-size: 1.25vw;
  }
}

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

  .believe-nav .custom-nav {
    margin: 1.4rem auto auto auto;
    gap: 1rem;
  }

  .custom-container-2 {
    width: 90vw;
  }

  .section-heading .section-title {
    font-size: 3.5vw;
  }

  .counter-box h3 {
    font-size: 2.5vw;
    text-align: center;
  }

  .counter-box p {
    font-size: 1.75vw;
  }

  .count-subtitle {
    font-size: 1.75vw;
  }

  .section-heading .section-desc {
    font-size: 1.75vw;
  }

  .scroll p {
    font-size: 1.75vw;
  }

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

  .gap-14 {
    gap: 1rem;
  }

  .overview-content {
    display: block;
    justify-content: unset;
    align-items: unset;
    margin-top: 2rem;
  }

  .overview-number-content {
    display: flex;
    gap: 3rem;
    justify-content: space-around;
    flex-direction: unset;
  }

  .count-levels {
    margin-top: 4rem;
  }

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

  .mob-box-3 {
    position: relative;
  }

  .mob-box-3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 100%;
    height: 1px;
    background: var(--primary);
  }

  .box-25 {
    position: relative;
  }

  .box-25::after {
    content: "";
    position: absolute;
    right: -7.5rem;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--primary);
  }

  .section-panorama {
    display: none;
  }

  .scroll {
    display: none;
  }

  .section-panorama-mobile {
    display: block;
  }

  .panorama-label {
    font-size: 2vw;
  }

  .panorama-text {
    font-size: 2.35vw;
  }

  .area-title {
    font-size: 2vw;
  }

  .area-info {
    font-size: 2vw;
  }

  .section-heading .section-subtitle {
    font-size: 1.75vw;
  }

  .btn-price {
    font-size: 1.75vw;
  }

  section.section-project-configuration::after {
    height: 80%;
  }

  section.section-amenities {
    padding: 3rem 0;
  }

  /* section.section-amenities::after {
    background: url("../assets/images/layers/amens-mob-overlay.png") no-repeat center center/cover;
    background-size: 100% 100%;
    height: 45%;
    width: 100%;
  } */
  section.section-amenities.arrival::after {
    background: url("../assets/images/amenities/amenities-mob.png") no-repeat
      bottom center/cover;
    background-size: 100% 100%;
    height: 50%;
    width: 100%;
  }

  /* Leisure Deck */
  section.section-amenities.leisure::after {
    background: url("../assets/images/amenities/podium-desktop.webp") no-repeat
      bottom center/cover;
    background-size: 100% 100%;
    height: 44%;
    width: 100%;
  }

  /* Sky Deck */
  section.section-amenities.sky::after {
    background: url("../assets/images/amenities/sky-desktop.webp") no-repeat
      bottom center/cover;
    background-size: 100% 100%;
    height: 44%;
    width: 100%;
  }

  .amenities-nav-tab-content .nav-tab-content {
    padding: 40vw 2vw 3vw 2vw;
    width: 100%;
    transition: all 0.5s ease;
    margin: auto;
  }

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

  .construction-content {
    height: 100%;
  }

  .cards {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  /* *********about us css starts**** */
  .stat p {
    font-size: 1.75vw;
  }

  .stat h3 {
    font-size: 3vw;
  }

  section.section-about::after {
    width: 100%;
    height: 71%;
    top: -10%;
    right: 0;
    background: url(../assets/images/aboutus/1.png) no-repeat center / cover;
  }

  section.section-about {
    height: auto;
    padding: 4rem 0 47rem;
    justify-content: center;
    background: url(../assets/images/aboutus/4.png) no-repeat bottom center /
      cover;
  }

  .about-content {
    width: 95%;
  }

  .about-inner {
    width: 100%;
  }

  /* *********about us css ends**** */

  /* *********farzeen section starts********* */
  .footer_disc p {
    font-size: 1.75vw;
  }

  .reg_div h2 {
    font-size: 2vw;
  }

  .reg_div p {
    font-size: 1.75vw;
  }

  .copy_para p {
    font-size: 1.75vw;
  }

  /* *********farzeen section starts********* */

  .btn-tab {
    font-size: 2vw;
    transition: all 0.5s ease;
  }

  .map-frame {
    width: 100%;
    position: relative;
    height: 50dvh;
  }

  .map-frame::after {
    content: "";
    position: absolute;
    left: 0;
    /* z-index: -1; */
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      0deg,
      #fff6e7 -2.46%,
      rgba(255, 246, 231, 0.75) 8.72%,
      rgba(255, 246, 231, 0.5) 19.9%,
      rgba(255, 246, 231, 0.25) 31.07%,
      rgba(255, 246, 231, 0) 42.25%
    );
  }

  section.section-location {
    padding: 0 0;
  }

  section.section-location::after {
    left: unset;
    bottom: unset;
    z-index: unset;
    background: transparent;
  }

  .location-main-container {
    width: 100%;
    padding: 4rem 0;
    max-width: 100%;
    background: #fff6e7;
  }

  .location-container {
    width: 100%;
    max-width: 100%;
  }

  .construction-content .construction-date {
    font-size: 2.5vw;
    transition: all 0.75s ease;
  }

  .construction-content .construction-title {
    font-size: 3vw;
    transition: all 0.75s ease;
  }

  .card-content {
    background-color: var(--white);
    border-radius: 16px;
    padding: 1rem;
  }

  .card-content .spec-img {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }

  .card-content .spec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card-swiper .swiper-wrapper {
    align-items: stretch;
  }

  .card-swiper .swiper-slide {
    height: auto;
    display: flex;
  }

  .card-swiper .card-content {
    height: 100%;
    display: flex;
  }

  .gallery-overlay-txt {
    transition: all 0.5s ease;
    font-size: 2.25vw;
  }
}

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

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

  .carousel-inner img {
    position: relative;
    height: 100%;
  }

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

  .section-footer {
    padding: unset;
  }

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

  .masterplan-list li {
    margin-bottom: 1.2rem;
  }

  .fancybox-caption__body {
    font-size: 1rem !important;
  }

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

  section.section-overview {
    padding: 10vw 0 30vw 0;
  }

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

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

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

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

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

  .col-6:first-child .btn-toggle-fixed-txt {
    color: var(--light);
  }

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

  .col-6:last-child .btn-toggle-fixed-txt {
    color: var(--light);
  }

  /* *******mobile view button ends*****/
  .counter-box h3 {
    font-size: 3.25vw;
  }

  .overview-content {
    margin-top: 1rem;
  }

  .count-subtitle {
    font-size: 2.5vw;
  }

  .counter-box p {
    font-size: 2.5vw;
  }

  .scroll p {
    font-size: 2.25vw;
  }

  .section-heading .section-title {
    font-size: 4vw;
  }

  .section-heading .section-desc {
    font-size: 2.25vw;
  }

  .box-25::after {
    right: -5.5rem;
  }

  .panorama-label {
    font-size: 2.5vw;
  }

  .panorama-text {
    font-size: 2.75vw;
  }

  .section-heading .section-subtitle {
    font-size: 2vw;
  }

  .area-title {
    font-size: 2.5vw;
  }

  .area-info {
    font-size: 2.3vw;
  }

  .btn-price {
    font-size: 2.25vw;
  }

  .starting-area-box {
    padding: 1rem;
  }

  section.section-project-configuration::after {
    height: 75%;
  }

  section.section-amenities::after {
    height: 40%;
  }

  .amenities-nav-tab-content .nav-tab-content {
    padding: 35vw 2vw 3vw 2vw;
    transition: all 0.5s ease;
  }

  /* *********about us css starts**** */
  .stat p {
    font-size: 2.25vw;
  }

  .stat h3 {
    font-size: 3.5vw;
  }

  .about-logo {
    width: 40vw;
  }

  section.section-about::after {
    top: -7%;
  }

  section.section-about {
    padding: 4rem 0 37rem;
  }

  /* *********about us css ends**** */

  /* *********farzeen section starts********* */
  .footer_disc p {
    font-size: 2.25vw;
  }

  .reg_div h2 {
    font-size: 2.5vw;
  }

  .reg_div p {
    font-size: 2.25vw;
  }

  .footer_logo img {
    width: 100%;
  }

  .copy_para p {
    font-size: 2.25vw;
  }

  .section_get {
    padding: 4rem 0;
  }

  /* *********farzeen section starts********* */

  .construction-content .construction-date {
    font-size: 3vw;
    transition: all 0.75s ease;
  }

  .construction-content .construction-title {
    font-size: 3.75vw;
    transition: all 0.75s ease;
  }

  .view-label {
    font-size: 2rem;
  }

  section.section-amenities.arrival::after {
    height: 36%;
  }

  /* Leisure Deck */
  section.section-amenities.leisure::after {
    height: 31%;
  }

  /* Sky Deck */
  section.section-amenities.sky::after {
    height: 31%;
  }

  .masterplan-content {
    padding: 2rem;
  }

  .section__footer {
    padding: 3rem 0;
  }

  .gallery-overlay-txt {
    transition: all 0.5s ease;
    font-size: 3vw;
  }
}

.modal-form .form-check-label {
  font-size: 0.7rem;
  word-break: break-all;
}

@media only screen and (max-width: 576px) {
  .navbar-container .navlogo {
    width: 100%;
  }

  section.section-overview::after {
    inset: unset;
    bottom: 0;
    left: 0;
    background: url(../assets/images/overview/overview-mobile.webp) no-repeat
      bottom center / cover;
    height: 55%;
    will-change: clip-path;
    contain: paint;
  }

  section.section-project-configuration {
    padding: 4rem 0 4rem 0;
  }

  .logo-middle {
    width: 100%;
    display: block;
  }

  .btn-primary {
    font-size: 3vw;
  }

  .section-heading .section-title {
    font-size: 5vw;
  }

  .section-heading .section-desc {
    font-size: 3vw;
  }

  .scroll p {
    font-size: 3vw;
  }

  .box-25::after {
    right: -4.5rem;
  }

  .counter-box h3 {
    font-size: 4vw;
  }

  .counter-box p {
    font-size: 3vw;
  }

  .panorama-label {
    font-size: 2.75vw;
  }

  .panorama-text {
    font-size: 3vw;
  }

  .section-heading .section-subtitle {
    font-size: 2.75vw;
  }

  .area-title {
    font-size: 3vw;
  }

  .btn-price {
    font-size: 2.75vw;
  }

  .area-info {
    font-size: 2.75vw;
  }

  section.section-project-configuration::after {
    height: 70%;
  }

  section.section-amenities::after {
    height: 30%;
  }

  .amenities-nav-tab-content .nav-tab-content {
    padding: 28vw 3vw 3vw 3vw;
    transition: all 0.5s ease;
  }

  /* *********about us css starts**** */
  .stat p {
    font-size: 3vw;
  }

  .stat h3 {
    font-size: 4.5vw;
  }

  section.section-about {
    padding: 4rem 0 34rem;
  }

  /* *********about us css ends**** */

  /* *********farzeen section starts********* */
  .footer_disc p {
    font-size: 3vw;
  }

  .reg_div h2 {
    font-size: 3.25vw;
  }

  .reg_div p {
    font-size: 3vw;
  }

  .copy_para p {
    font-size: 3vw;
  }

  /* *********farzeen section starts********* */

  .btn-tab {
    font-size: 3vw;
    transition: all 0.5s ease;
  }

  .construction-content .construction-date {
    font-size: 4vw;
    transition: all 0.75s ease;
  }

  .construction-content .construction-title {
    font-size: 5.25vw;
    transition: all 0.75s ease;
  }

  .gallery-card {
    width: 90%;
  }

  .gallery-content {
    margin: 1.5rem 0 0 0;
  }

  .gallery-overlay-txt {
    transition: all 0.5s ease;
    font-size: 5vw;
  }
}

@media only screen and (max-width: 450px) {
  .navbar-container .navlogo .logo {
    width: 150px;
  }

  .box-25::after {
    right: -3.5rem;
  }

  .panorama-label {
    font-size: 3vw;
  }

  .panorama-text {
    font-size: 3.5vw;
  }

  /* *********about us css starts**** */

  section.section-about {
    padding: 4rem 0 28rem;
  }

  /* *********about us css ends**** */
}

@media only screen and (max-width: 300px) {
}
.video-container .owl-nav {
  display: flex;
 justify-content: center;
 gap: 10px;
 margin-top: 20px;
}