/*
* 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=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

@font-face {
  font-family: "Vanitas";
  src: url("../assets/fonts/FontsFree-Net-vanitas-bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --white: #ffffff;
  --black: #111111;
  --primary: #c4a24a;
  --primary-dark: #8a6a18;
  --primary-gradient: linear-gradient(180deg, #d4a843 0%, #9b7b20 100%);
  --primary-light: #1c1c1c;
  --gold: #c4a24a;
  --font-body: "Montserrat", sans-serif;
  --font-display: "Vanitas";
  --mulish: "Montserrat", sans-serif;
  --radikal: "Vanitas";
  --font-cormorant: "Vanitas";
  --color: #c4a24a;
  --color-3: transparent;
  --radius-full: 100px;
}

body {
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sub-title,
.ban-title,
.counter-number,
.thankyou-title,
.bhk,
.hero-title,
.overview-form-title {
  font-family: "Vanitas", serif !important;
}

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: linear-gradient(
    135deg,
    #ffffff 0%,
    #fdfaf1 38%,
    #f6ebcf 72%,
    #ead9ac 100%
  );
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  font-family: var(--mulish);
}

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: #c4a24a;
}

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

/* submit button spinner */

.btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-loading .btn-text {
  display: none !important;
}

.btn-loading .btn-spinner {
  display: inline-block;
}

.btn-of-submit.btn-loading,
.jkb-submit.btn-loading,
.connect-submit.btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.85;
}

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

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

#kenytChatBubble.style1 {
  bottom: 8% !important;
}

.line {
  width: 6vw;
  height: 2px;
  border-radius: 100px;
  background: var(--primary-gradient);
  position: relative;
  bottom: 15px;
}

.line.about-line {
  bottom: unset;
}

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

header {
  position: fixed;
  z-index: 10;
  top: 0vw;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100vw;
  left: 50%;
  background: var(--white);
  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.4rem 4rem;
}

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

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-evenly;
  -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 .menu img {
  width: 37px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(72%) sepia(38%) saturate(600%)
    hue-rotate(3deg) brightness(95%) contrast(90%);
}

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

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

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

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

nav.dropped .navbar-container .navlogo-right .logo-right {
  width: 65px;
}

@media only screen and (max-width: 1200px) {
  .navbar-container .navlogo-right {
    margin-left: auto;
  }

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

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

.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: 100px;
  -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-link {
  position: relative;
  display: inline-block;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  bottom: -5px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--primary-gradient);
  transition: transform 0.5s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
} */

.navbar-container .navbar-links .navbar-link {
  position: relative;
}

.navbar-container .navbar-links .navbar-link .nav-link {
  color: #1a1a1a;
  font-size: 1rem;
  line-height: normal;
  font-style: normal;
  /* font-family: var(--radikal); */
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: capitalize;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.35s ease;
}

.navbar-container .navbar-links .navbar-link .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #c4a24a, var(--primary));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 0.45s cubic-bezier(0.65, 0.05, 0.36, 1),
    background-position 0.6s ease;
  border-radius: 2px;
}

.navbar-container .navbar-links .navbar-link .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-gradient);
  opacity: 0;
  transform: translate(-50%, -4px);
  transition:
    opacity 0.35s ease 0.1s,
    transform 0.45s cubic-bezier(0.65, 0.05, 0.36, 1) 0.1s;
}

.navbar-container .navbar-links .navbar-link .nav-link:hover {
  color: var(--primary);
}

.navbar-container .navbar-links .navbar-link .nav-link:hover::before {
  transform: scaleX(1);
  background-position: 100% 0;
}

.navbar-container .navbar-links .navbar-link .nav-link:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Offcanvas (mobile) nav ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â matching style */
.offcanvas-nav .offcanvas-link {
  position: relative;
  display: inline-block;
  color: #1a1a1a;
  font-family: var(--radikal);
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0;
  transition:
    color 0.35s ease,
    padding-left 0.35s ease;
}

.offcanvas-nav .offcanvas-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transform: translateY(-50%);
  transition: width 0.35s ease;
}

.offcanvas-nav .offcanvas-link:hover {
  color: var(--primary);
  padding-left: 22px;
}

.offcanvas-nav .offcanvas-link:hover::before {
  width: 16px;
}

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

.offcanvas-body {
  padding: 2rem 1.5rem;
  background-color: var(--white);
  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: var(--primary-gradient);
  left: 0;
  bottom: 0;
}

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

.btn-primary {
  color: var(--white);
  border: none;
  position: relative;
  border-radius: 20px;
  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;
  font-weight: 600;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  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 #9b7b20;
    box-shadow: 0 0 0 0 #9b7b20;
  }

  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 #9b7b20;
    box-shadow: 0 0 0 0 #9b7b20;
  }

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

.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(--primary-gradient);
  color: var(--white);
  border: none;
  border: 1px solid var(--white);
  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;
}

.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: 99;
  -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: 3vw;
  -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 {
  color: var(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid var(--white);
  padding: 0.6rem 1.6rem;
  background: var(--primary-gradient);
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
  display: flex;
  gap: 0.375rem;
}

.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: 99;
  -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: 3vw;
  -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 {
  color: var(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.6rem 1.6rem;
  border-radius: 10px;
  background: var(--primary-gradient);
  border: 1px solid var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
  display: flex;
  gap: 0.375rem;
}

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

.main-banner {
  position: relative;
  overflow: hidden;
}

.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 {
  transform-origin: center center;
}

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

/******************Banner Section Ends************* */
/* ***********Overview Section Starts*********** */
.overview {
  padding: 4rem 0;
}

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

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

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

.sub-title {
  color: var(--gold);
  font-size: 3.5rem;
  text-transform: uppercase;
  font-family: var(--font-cormorant);
  font-weight: 500;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.overview-sub-title {
  font-family: var(--font-body) !important;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 1.25rem !important;
  text-transform: none;
  letter-spacing: 0.01em;
}

@media (max-width: 767px) {
  .overview-sub-title {
    font-size: 0.95rem;
  }
}

.sub-title.aos-animate .char {
  background: none;
  -webkit-text-fill-color: inherit;
  color: inherit;
}

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

.overview-img {
  width: 100%;
  position: relative;
}

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

.other-description {
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
  text-transform: capitalize;
}

.overview-desc-wrapper {
  position: relative;
}

.overview-desc-more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.55s ease,
    opacity 0.45s ease;
}

.overview-desc-more.expanded {
  max-height: 600px;
  opacity: 1;
}

.overview-desc-more p {
  margin-top: 0;
  margin-bottom: 0;
}

.overview-readmore-btn {
  background: none;
  border: none;
  padding: 0;
  margin-top: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.overview-readmore-btn:hover {
  color: var(--primary-dark);
}

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

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

/* ************Project Highlight Starts*********** */
.high-text {
  width: 65%;
  margin: auto;
  padding: 1rem 0;
}

.highlight-carousel {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.highlight-carousel .owl-item .item {
  padding: 20px;
}

.highlight-carousel .box {
  background: linear-gradient(94deg, #0d0d0d 3.13%, rgba(10, 10, 10, 0) 96.87%);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  overflow: hidden;
}

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

.highlight-carousel .icon {
  background-color: #ece0c1;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-carousel .icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%);
}

/* Amenity icon hover uses primary maroon pulse */

.highlight-carousel .text {
  font-size: 1rem;
  line-height: 1.6rem;
  color: #ece0c1;
  font-weight: 400;
  padding-top: 2rem;
  text-align: start;
}

.owl-nav button {
  pointer-events: all;
  background: var(--primary-gradient) !important;
  width: 40px;
  height: 40px;
  border-radius: 45% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.highlight-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.highlight-carousel .owl-nav .owl-prev {
  margin-left: -5rem;
}

.highlight-carousel .owl-nav .owl-next {
  margin-right: -5rem;
}

/* ************Project Highlight ends*********** */

/* ************************Configuration Table Starts******************* */

/* Table wrapper ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â full width, no scroll */
.config-table-wrap {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(196, 162, 74, 0.18);
  border: 1px solid rgba(196, 162, 74, 0.3);
  width: 100%;
}

.config-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  table-layout: fixed;
}

/* Header row ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â deep maroon with gold text */
.config-table thead tr {
  background: var(--primary-gradient);
}

.config-table thead th {
  color: #ece0c1;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.25rem 2.5rem;
  text-align: center;
  border-right: 1px solid rgba(196, 162, 74, 0.2);
}

.config-table thead th:last-child {
  border-right: none;
}

/* Body rows */
.config-table tbody tr {
  background: #fff;
  transition: background 0.3s ease;
}

.config-table tbody tr:hover {
  background: var(--primary-light);
}

.config-table tbody td {
  padding: 1.5rem 2.5rem;
  text-align: center;
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
  border-top: 1px solid rgba(196, 162, 74, 0.1);
  border-right: 1px solid rgba(196, 162, 74, 0.08);
  word-break: break-word;
}

.config-table tbody td:last-child {
  border-right: none;
}

/* Check Price button inside table */
.config-enquire-btn {
  display: inline-block;
  padding: 0.5rem 1.6rem;
  border-radius: 50px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.config-enquire-btn:hover {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 6px 20px rgba(196, 162, 74, 0.3);
}

.config-disclaimer {
  font-size: 0.78rem;
  color: #000;
  margin-top: 0.85rem !important;
  text-align: center;
  font-style: italic;
}

/* Config Tabs */
.config-tabs-wrap {
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.config-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.config-tab-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
  border: none;
  justify-content: center;
  margin-bottom: 0;
  padding-bottom: 0.25rem;
}

.config-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(196, 162, 74, 0.5);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.config-tab-btn i {
  font-size: 1.15rem;
  color: var(--gold, #c4a24a);
}

.config-tab-type {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
}

.config-tab-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
}

.config-tab-btn:hover {
  border-color: var(--gold, #c4a24a);
  background: rgba(196, 162, 74, 0.08);
}

.config-tab-btn.active {
  background: var(--primary-gradient);
  border-color: transparent;
  color: #fff;
}

.config-tab-btn.active i {
  color: #ece0c1;
}

.config-tab-btn.active .config-tab-type {
  color: #fff;
}

.config-tab-btn.active .config-tab-label {
  color: rgba(236, 224, 193, 0.85);
}

.config-tab-content {
  margin-top: 0;
}

@media (max-width: 767px) {
  .config-tab-nav {
    justify-content: flex-start;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .config-tab-btn {
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 575px) {
  .config-table thead th,
  .config-table tbody td {
    padding: 1rem 0.75rem;
    font-size: 0.88rem;
  }

  .config-rera-value {
    font-size: 1.2rem;
  }
}
/* ************************Configuration Table Ends******************* */

/* ************************project config Section Starts******************* */
.configuration {
  position: relative;
  background: #d49e1300 !important;
}

/* Suppress leaf decoration on dark bg */
.configuration::before {
  display: none !important;
}

/* Section title gold, description cream */
.configuration .sub-title {
  color: var(--gold, #c4a24a) !important;
}
.configuration .section-desc,
.configuration .section-heading p {
  color: #ddd0b5 !important;
}

/* Table wrapper dark */
.configuration .config-table-wrap {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(196, 162, 74, 0.35);
}

/* Table header: black bg, gold text */
.configuration .config-table thead tr {
  background: #000 !important;
}
.configuration .config-table thead th {
  color: var(--gold, #c4a24a);
  border-right-color: rgba(196, 162, 74, 0.25);
}

/* Table body: dark rows, cream text */
.configuration .config-table tbody tr {
  background: #111 !important;
}
.configuration .config-table tbody tr:hover {
  background: #1c1c1c !important;
}
.configuration .config-table tbody td {
  color: #e2d5b8;
  border-top-color: rgba(196, 162, 74, 0.12);
  border-right-color: rgba(196, 162, 74, 0.08);
}

/* Check Price button: gold outline Ã¢â€ â€™ gold fill on hover */
.configuration .config-enquire-btn {
  border-color: var(--gold, #c4a24a);
  color: var(--gold, #c4a24a);
}
.configuration .config-enquire-btn:hover {
  background: var(--gold, #c4a24a);
  color: #000;
  box-shadow: 0 6px 20px rgba(196, 162, 74, 0.35);
}

/* Tabs inactive: dark fill, gold border, cream text */
.configuration .config-tab-btn {
  background: #141414;
  border-color: rgba(196, 162, 74, 0.5);
  color: #ddd0b5;
}
.configuration .config-tab-btn .config-tab-label {
  color: rgba(196, 162, 74, 0.7);
}
.configuration .config-tab-btn:hover {
  background: #1e1e1e;
  border-color: var(--gold, #c4a24a);
}

/* Tab active: gold gradient, dark text */
.configuration .config-tab-btn.active {
  background: linear-gradient(180deg, #c9a94f 0%, #a07c28 100%) !important;
  border-color: transparent;
  color: #0a0a0a;
}
.configuration .config-tab-btn.active i,
.configuration .config-tab-btn.active .config-tab-type,
.configuration .config-tab-btn.active .config-tab-label {
  color: #0a0a0a !important;
}

/* Disclaimer */
.configuration .config-disclaimer {
  color: #000 !important;
}

.config-text {
  width: 80%;
  margin: auto;
  padding: 1rem 0;
}

.layout-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--primary);
}

.layout-box img {
  width: 100%;
  height: auto;
  display: block;
  filter: blur(3px);
}

.layout-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(to top, rgb(0 0 0), #00000042 100%);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.layout-content .bhk {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.456em !important;
}

.layout-content .area {
  margin: 2px 0 0;
  font-size: 0.875rem;
  opacity: 0.9;
}

.layout-content .btn-check {
  cursor: pointer;
  background-color: transparent;
  color: var(--white);
  padding: 8px 18px;
  font-size: 0.875rem;
  border-radius: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition:
    color 0.6s ease,
    border 0.6s ease;
  z-index: 1;
  font-weight: 600;
}

.layout-content .btn-check::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  z-index: -1;
  transform: translateY(0%);
  transition: transform 0.6s ease;
}

.layout-content .btn-check:hover::before {
  transform: translateY(100%);
}

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

.project-carousel {
  margin-top: 2rem;
}

.btn-check {
  position: unset;
  clip: unset;
  pointer-events: unset;
}

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

/* ***********************project config Section Ends*************** */

/* ***********amenities section starts********** */

.amenities {
  width: 100%;
  position: relative;
  background: #fff;
}

.amenity-item {
  text-align: center;
  padding: 1rem 0rem;
  transition: transform 0.35s ease;
  cursor: default;
}

.amenity-item:hover {
  transform: translateY(-6px);
}

.amenity-icon {
  width: 120px;
  height: 120px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.amenity-item:hover .amenity-icon {
  background: var(--primary-gradient);
  box-shadow: 0 10px 28px rgba(196, 162, 74, 0.35);
  transform: scale(1.1);
}

.amenity-icon img {
  width: 67px !important;
  height: 67px;
  filter: brightness(0) saturate(100%) invert(19%) sepia(99%) saturate(2000%)
    hue-rotate(330deg) brightness(98%);
  transition: filter 0.35s ease;
}

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

.amenity-icon i {
  font-size: 50px;
  color: #9b7b20;
  transition: color 0.35s ease;
}

.amenity-item:hover .amenity-icon i {
  color: #fff;
}

.amenity-label {
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
  margin: 0;
  transition: color 0.35s ease;
}

.amenity-item:hover .amenity-label {
  color: var(--primary);
}

.ame-cirle {
  margin: 1rem 0rem;
}

.amenities-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.amenities-carousel .owl-nav .owl-prev {
  margin-left: -5rem;
}

.amenities-carousel .owl-nav .owl-next {
  margin-right: -5rem;
}

/* ***********amenities section ends********** */

/* ***********gallery section starts*********/
.gallery {
  background: #000 !important;
  position: relative;
}

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

.justify-ext {
  justify-content: center;
  gap: 1rem;
}

.nav-tabs {
  border-bottom: none !important;
}

.nav-tabs .nav-link {
  font-size: 1.2rem;
  border-radius: 0 !important;
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
  background-color: transparent !important;
  padding: 0.45rem 1.5rem;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  background: var(--primary-gradient) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
  border-radius: 0 !important;
}

.nav-tabs .nav-link.active::after {
  display: none;
}

.gal_image {
  position: relative;
}

/* Gallery hover box effect */
.gal_image.box {
  overflow: hidden;
}

.gal_image.box .box-content {
  position: relative;
  display: block;
  width: 100%;
}

.gal_image.box .box-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  display: block;
}

.gal_image.box:hover .box-content img {
  opacity: 1;
  transform: scale(1.05);
}

.gal_image.box .inner-content {
  color: #fff;
  text-align: center;
  width: 80%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 65%;
  left: 50%;
  transition: all 500ms ease;
  z-index: 3;
  pointer-events: none;
}

.gal_image.box:hover .inner-content {
  opacity: 1;
  top: 50%;
}

.gal_image.box .inner-content .title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  font-family: var(--font-cormorant);
}

.gal_image.box .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.gal_image.box:hover .img-overlay {
  background: transparent;
}

.loc-map .box-content,
.contact-map .box-content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.loc-map .box-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.loc-map .img-overlay,
.contact-map .img-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.gallery .overtext {
  z-index: 4 !important;
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px;
}

.gal-carousel .owl-item.active.center .gal_image {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}

.gal-carousel .owl-item:not(.active.center) .gal_image {
  position: relative;
}

.gal-carousel .owl-item .gal_image {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  position: relative;
}

/* Floorplan blur & click-to-enquire */
.floorplan-blurred {
  filter: blur(2px);
  transition: filter 0.3s ease;
}

.gal_image.box .floorplan-overlay {
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.gal_image.box .floorplan-overlay .overtext {
  position: static;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  padding: 8px 14px;
  letter-spacing: 0.5px;
  border-radius: 2px;
  font-weight: 600;
}

.floorplan-trigger {
  cursor: pointer;
}

.gal-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.gal-carousel .owl-nav .owl-prev {
  margin-left: -5rem;
}

.gal-carousel .owl-nav .owl-next {
  margin-right: -5rem;
}

/* Gallery tabs */
.gallery-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.gallery-tab-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0.25rem 0.5rem;
  margin: 0;
  border: none;
  min-width: max-content;
}

.gallery-tab-nav .nav-item {
  margin: 0;
}

.gallery-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
}

.gallery-tab-btn i {
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.gallery-tab-btn:hover {
  background: rgba(196, 162, 74, 0.08);
  color: var(--primary);
}

.gallery-tab-btn:hover i {
  transform: scale(1.2);
}

.gallery-tab-btn.active {
  background: var(--primary-gradient);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(196, 162, 74, 0.28);
}

.gallery-tab-btn.active i {
  color: var(--gold);
}

.gallery-tab-content {
  margin-top: 0;
}

@media (max-width: 767px) {
  .gallery-tabs-wrap {
    justify-content: flex-start;
    padding: 0 1rem;
  }

  .gallery-tab-nav {
    gap: 0.65rem;
  }

  .gallery-tab-btn {
    font-size: 0.78rem;
    padding: 0.5rem 1.2rem;
  }
}

/* **************gallery section ends********* */

/* ***********loaction section starts************** */
.location {
  position: relative;
}

.loc-back {
  background: #000 !important;
  padding: 3rem 2.8rem;
  border-radius: 3rem;
}

.loc-text {
  text-align: start !important;
}

.accordion {
  --bs-accordion-bg: transparent !important;
  --bs-accordion-border-color: none !important;
  --bs-accordion-btn-icon-transform: rotate(0deg) !important;
}

.accordion-button:not(.collapsed) {
  background-color: unset !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../assets/images/loacation/minus.png") !important;
  transform: rotate(0deg);
}

.accordion-button::after {
  background-image: url("../assets/images/loacation/plus.svg") !important;
  transform: rotate(360deg);
  background-size: contain;
}

.accordion-button img {
  position: absolute;
  left: 0%;
}

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

.accordion-button {
  font-size: 1.2rem !important;
  padding-left: 2% !important;
  border-bottom: 1px solid !important;
  font-style: normal;
  font-weight: 600;
  line-height: 1.55rem;
  /* 103.333% */
  letter-spacing: 0.02375rem;
}

.accordion-container {
  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.85rem;
}

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

.accordion-content .acc-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
}

.accordion-body .distance {
  white-space: nowrap;
  padding-left: 10px;
}

.accordion-body {
  position: relative;
}

.accordion-body span {
  position: absolute;
  right: 22px;
}

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

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: #242424 !important;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

.accordion-item {
  position: relative;
}

/* .accordion-item img {
  position: absolute;
  top: 17px;
  width: 15px;
} */

.loc-img {
  width: 100%;
  position: relative;
}

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

.loc-cust {
  margin-top: 1%;
}

.adv-text {
  font-weight: 500;
}

/* ***********loaction section ends************** */

/* ***********about us section starts---------- */
.aboutus {
  background: #000 !important;
}

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

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

.about-img {
  width: 100%;
  position: relative;
}

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

.counter-section {
  padding-top: 3rem;
}

.counter-box {
  position: relative;
  padding-top: 2rem;
}

.counter-box .top-line {
  content: "";
  width: 90%;
  height: 1px;
  background: var(--primary-gradient);
  position: absolute;
  top: 0;
  left: 0;
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
  white-space: nowrap;
}

.counter-label {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: var(--black);
}

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

/* form */

.auto-update-form {
  gap: 1rem;
}

.register-interest {
  background: #fff;
  position: relative;
}

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

.section-title {
  color: #242424;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.section-subtitle {
  color: #000;
  background-color: #fff;
  font-size: 1.25rem;
  font-style: normal;
  /* width: max-content; */
  max-width: 100%;
  margin: 1rem auto !important;
  padding: 1.5rem 0rem;
  font-weight: 600;
  line-height: 22.5px;
  text-transform: capitalize;
}

.new-class {
  background: #000 !important;
  border: 0;
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 1rem 1rem;
  border-radius: 20px;
}

.new-class:focus {
  box-shadow: none;
}

.btn-submit2 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 0.75rem 2.5rem;
  color: #fff;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 20px;
  font-size: 1.15rem;
  font-weight: 400;
  transition:
    color 0.6s ease,
    border 0.6s ease;
}

.btn-submit2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  z-index: -1;
  transform: translateY(0%);
  transition: transform 0.6s ease;
}

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

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

.form-calltxt {
  margin-bottom: 0;
  color: #181d24;
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
}

.form-calltxt a {
  color: #181d24 !important;
  text-decoration: none !important;
  font-size: 1.8rem;
  font-weight: 600;
}

/********** footer ***********/
.footer-black {
  background: var(--primary-gradient);
  padding: 2rem 0rem;
}

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

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

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

.footer-official-link {
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.footer-official-link:hover {
  color: var(--gold) !important;
}

.footer-qr-wrap {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.footer-qr-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
}

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

.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 {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 1.5rem 4rem;
  background: #000 !important;
}

.thankyou-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-content-img img {
  width: 90px;
  height: 90px;
  margin-bottom: 1.5rem;
}

section.secton-thankyou .thankyou-title {
  font-weight: 600;
  margin: 0.5rem auto 0.5rem auto !important;
  text-align: center;
  color: var(--gold) !important;
  font-size: 2.4rem;
  line-height: 1.2;
}

section.secton-thankyou .thankyou-subtitle {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  color: #c8bba0;
  margin-top: 1rem !important;
  line-height: 1.7;
}

.ty-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem auto 2rem;
}

.ty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border: 1.5px solid rgba(196, 162, 74, 0.4);
  border-radius: 50px;
  background: rgba(196, 162, 74, 0.06);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ddd0b5;
  text-transform: uppercase;
}

.ty-badge i {
  color: var(--gold);
  font-size: 0.85rem;
}

.go_txt {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0a0a0a;
  background: var(--primary-gradient) !important;
  border-radius: 50px;
  border: none;
  padding: 0.85rem 2.25rem;
  margin: 0.5rem auto 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  text-transform: uppercase;
}

.go_txt:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

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

/* thank you page css */

/* ***********Modal Form********* */
.modal-content {
  background: #fff;
  border-radius: unset;
  outline: 2px solid #fff;
  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: 0.65rem 2rem;
  }

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

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

  .counter-number {
    font-size: 2rem;
  }
}

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

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

  .counter-number {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar-container .menu {
    display: block;
    margin-left: auto;
  }

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

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

  .high-text {
    width: unset;
  }

  .config-text {
    width: unset;
  }

  .highlight-carousel .owl-nav .owl-prev {
    margin-left: -4rem;
  }

  .highlight-carousel .owl-nav .owl-next {
    margin-right: -4rem;
  }

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

  .counter-number {
    font-size: 2.5rem;
  }
}

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

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

  .high-text {
    width: unset;
  }

  .config-text {
    width: unset;
  }

  .overview {
    padding: 4rem 0;
  }

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

  .counter-box .top-line {
    width: 100%;
  }

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

  .counter-number {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 767px) {
  footer {
    padding-bottom: 0px;
  }

  .overview {
    padding: 2rem 0;
  }

  .custom-container {
    width: 95%;
    margin: auto auto auto auto;
  }
  .sub-title {
    font-size: 2rem;
  }

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

  .high-text {
    width: unset;
  }

  .config-text {
    width: unset;
  }

  .owl-carousel .owl-dots.disabled,
  .owl-carousel .owl-nav.disabled {
    display: flex !important;
  }

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

  .navbar-container .navlogo {
    gap: 8rem;
  }

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

  .highlight-carousel .owl-nav {
    top: auto;
    bottom: 0;
    transform: none;
    justify-content: center !important;
    position: relative;
    gap: 20px;
    margin-top: 1rem;
  }

  .amenities-carousel .owl-nav {
    top: auto;
    bottom: 0;
    transform: none;
    justify-content: center !important;
    position: relative;
    gap: 20px;
    margin-top: 1rem;
  }

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

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

  .counter-number {
    font-size: 2rem;
  }

  .counter-box .top-line {
    width: 100%;
  }

  .highlight-carousel {
    margin-top: 0rem;
  }

  .social-links2 {
    padding-bottom: 0;
  }

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

  /* mobile toggle bar */

  .mobile-fixed-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding: 0;
    -webkit-filter: none;
    filter: none;
    -webkit-box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
  }

  .mobile-fixed-button::after {
    content: none;
  }

  .mobile-fixed-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .mobile-fixed-content .btn-fixed {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    padding: 0.85rem 0.5rem;
    position: static;
    top: unset;
    width: auto;
    cursor: pointer;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .mob-btn-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .mobile-fixed-content .btn-fixed span.icon {
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .mobile-fixed-content .btn-fixed span.icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  /* mobile toggle bar */
}

@media only screen and (max-width: 576px) {
  .high-text {
    width: unset;
  }

  .config-text {
    width: unset;
  }

  .mobile-fixed-content .btn-fixed {
    font-size: 0.78rem;
    padding: 0.85rem 0.4rem;
  }
}

@media only screen and (max-width: 450px) {
  .mobile-fixed-content .btn-fixed {
    font-size: 0.72rem;
    padding: 0.8rem 0.3rem;
  }

  .btn-fixed span.icon {
    width: 16px;
    height: 16px;
  }

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

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

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

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

@media only screen and (max-width: 350px) {
  .text-footer p {
    font-size: 0.75rem;
  }

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

  .mobile-fixed-content .btn-fixed {
    font-size: 0.725rem;
  }

  .btn-fixed span.icon {
    width: 15px;
    height: 15px;
  }

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

/* ---------owl line starts here------- */

.amenities-carousel .owl-dots {
  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.25rem;
  margin: 2rem auto 1rem auto;
}

.amenities-carousel .owl-dots button {
  width: 15px;
  height: 3px;
  border-radius: 100px;
  -webkit-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  transition: all 1.1s ease;
  background-color: #dfdfdf !important;
}

.amenities-carousel .owl-dots button.active {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 25px;
  background: var(--primary-gradient) !important;
}

.highlight-carousel .owl-dots {
  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.25rem;
  margin: 2rem auto 1rem auto;
}

.highlight-carousel .owl-dots button {
  width: 15px;
  height: 3px;
  border-radius: 100px;
  -webkit-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  transition: all 1.1s ease;
  background-color: #dfdfdf !important;
}

.highlight-carousel .owl-dots button.active {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 25px;
  background: var(--primary-gradient) !important;
}

/* ================== JKB Harsha ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Brochure Theme ================== */

.sub-title,
.ban-title,
.counter-number,
.thankyou-title {
  font-family: var(--font-display) !important;
  color: var(--gold) !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
}

.bhk {
  font-family: var(--font-display);
  color: #fff;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: var(--primary-light);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.15rem rgba(196, 162, 74, 0.18);
  border-color: var(--primary);
}

.btn-check {
  background: var(--primary-gradient);
  color: #fff !important;
  border-radius: 30px;
  padding: 6px 16px;
  text-decoration: none;
  font-size: 0.85rem;
  text-wrap: nowrap;
}

.footer-black {
  background: var(--primary-gradient) !important;
}

.copyright2 .copyright-desc2,
.text-footer p,
.footer-desc p {
  color: #fff !important;
}

/* Overview form card */
.overview-form-card {
  background: #111;
  border-radius: 14px;
  padding: 2.25rem 2rem;
  border: 1.5px solid rgba(196, 162, 74, 0.45);
  box-shadow:
    0 0 0 1px rgba(196, 162, 74, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(196, 162, 74, 0.15);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

/* Gold top accent bar */
.overview-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 0 0 4px 4px;
}

.overview-form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold) !important;
  margin-bottom: 0.5rem !important;
  font-weight: 600;
}

.overview-form-sub {
  font-family: var(--mulish);
  font-size: 0.85rem;
  color: #a09070 !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: 0.03em;
}

.overview-form .of-input {
  border: none;
  border-bottom: 1.5px solid rgba(196, 162, 74, 0.3);
  border-radius: 0;
  background: transparent;
  padding: 0.65rem 0.25rem;
  font-size: 0.95rem;
  color: #ddd0b5;
  box-shadow: none;
  transition: border-color 0.25s ease;
}

.overview-form .of-input:focus {
  border-bottom-color: var(--gold);
  box-shadow: none;
  background: transparent;
  color: #ddd0b5;
}

.overview-form .of-input:focus {
  border-color: var(--primary);
  box-shadow: none;
  background: transparent;
}

.overview-form .of-input::placeholder {
  color: #a09070 !important;
}

.of-mobile-wrap {
  position: relative;
}

.of-cc {
  position: absolute;
  left: 0;
  top: 0.65rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  pointer-events: none;
}

.of-mobile-wrap .of-mobile {
  padding-left: 2.5rem !important;
}

.of-agree {
  color: #555;
  font-size: 0.78rem;
  line-height: 1.3;
}

.overview-form .form-check-input:checked {
  background-color: #9b7b20;
  border-color: #9b7b20;
}

.btn-of-submit {
  width: 100%;
  border: none;
  background: #7a5c10;
  color: #fff;
  font-family: var(--mulish);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 1rem;
  border-radius: 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 12px 26px rgba(196, 162, 74, 0.25);
  margin-top: 0.25rem;
  position: relative;
  overflow: hidden;
}

.btn-of-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  border-radius: 30px;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-of-submit span {
  position: relative;
  z-index: 1;
}

.btn-of-submit:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(155, 123, 32, 0.32);
}

.btn-of-submit:hover::before {
  opacity: 0;
}

@media (max-width: 767px) {
  .overview-form-card {
    padding: 1.5rem 1.25rem;
  }

  .overview-form-title {
    font-size: 1.4rem;
  }
}

.qr-label {
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  margin: 0.35rem 0 0 0;
  font-family: var(--mulish);
}

.qr-logos .qr-logo img {
  background: #fff;
  padding: 4px;
  border-radius: 4px;
}

/* ================== Brochure-theme Ã¢â‚¬â€ overridden by dark theme below ================== */
body {
  background: #000 !important;
}

.overview,
.project-highlight,
.amenities,
.gallery,
.location,
.aboutus,
.register-interest,
.secton-thankyou {
  position: relative;
  background-color: #000 !important;
}

/* Decorative leaf corner on top-left for alternating sections */
.configuration::before,
.gallery::before,
.register-interest::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
  background: url("../assets/images/bg-leaf-corner.webp") no-repeat left top;
  background-size: contain;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Alternate section shades to give brochure rhythm */
.project-highlight {
  background: var(--primary-gradient);
}

.amenities {
  background-color: #000 !important;
}

.gallery {
  /* background-color: #000; */
}

.location {
  /* background-color: #000; */
}

.aboutus {
  /* background-color: #000; */
}

.register-interest {
  /* background-color: #000; */
}

/* Ensure content sits above the decoration */
.overview-container,
.custom-container,
.container,
.container-fluid {
  position: relative;
  z-index: 1;
}

/* Softer card look on highlight boxes */
.highlight-carousel .box {
  background: #ffffff;
  border: 1px solid rgba(196, 162, 74, 0.25);
  /* box-shadow: 0 8px 22px rgba(196, 162, 74, 0.06); */
}

/* Accordion items on soft pink */
.accordion-item {
  background: transparent;
  border-color: rgba(196, 162, 74, 0.25);
}

/* Gallery nav tabs hover/active in theme pink */
.nav-gallery.active {
  background: var(--primary-gradient) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

.nav-gallery:hover:not(.active) {
  background-color: rgba(196, 162, 74, 0.08) !important;
}

@media (max-width: 767px) {
  .project-highlight::before,
  .gallery::before,
  .register-interest::before {
    width: 120px;
    height: 140px;
    opacity: 0.35;
  }
}

/* ================== Hero Banner (brochure-style) ================== */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000 !important;
  margin-top: 49px;
}

.hero-banner .carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.96) 0%,
    rgba(10, 10, 10, 0.75) 35%,
    rgba(10, 10, 10, 0.25) 60%,
    rgba(10, 10, 10, 0) 80%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 2vw;
  max-width: 1600px;
  margin: 0 auto;
}

.hero-text {
  max-width: 560px;
  color: #1a0d10;
}

.hero-title {
  color: var(--gold);
  font-size: 3.5rem;
  text-transform: capitalize;
  font-family: var(--font-cormorant);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title.aos-animate .char {
  background: none;
  -webkit-text-fill-color: inherit;
  color: inherit;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #000;
  line-height: 1.65;
  margin-bottom: 1rem !important;
  max-width: 460px;
  margin-top: 1.5rem;
}

.hero-meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.75rem !important;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-btn {
  background: var(--primary-gradient);
  color: #fff;
  border: 1px solid var(--primary);
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 26px rgba(196, 162, 74, 0.25);
}

.hero-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(196, 162, 74, 0.32);
}

.hero-badges {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 162, 74, 0.18);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(196, 162, 74, 0.12);
  position: relative;
  max-width: 460px;
}

.hero-badges::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(196, 162, 74, 0.35),
    transparent
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-badge {
  position: relative;
  padding-bottom: 0.25rem;
}

.hero-badge:nth-child(1),
.hero-badge:nth-child(2) {
  border-bottom: 1px solid rgba(196, 162, 74, 0.15);
  padding-bottom: 1rem;
}

.hero-badges::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(196, 162, 74, 0.4),
    rgba(196, 162, 74, 0)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-badge {
  text-align: left;
  min-width: 0;
}

.hero-badge-num {
  font-family: var(--font-cormorant);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}

.hero-badge-num .hero-unit {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.7;
  margin-left: 0.15em;
  text-transform: lowercase;
}

.hero-badge-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a3525;
  margin-top: 0.35rem;
  line-height: 1.25;
  font-weight: 500;
}

.hero-divider {
  width: 1px;
  height: 42px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(196, 162, 74, 0.35),
    transparent
  );
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.96) 0%,
      rgba(10, 10, 10, 0.6) 45%,
      rgba(10, 10, 10, 0.25) 70%,
      rgba(10, 10, 10, 0.85) 100%
    );
  }

  .hero-content {
    padding: 6rem 1.25rem 14rem;
    align-items: flex-start;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-badges {
    margin-top: 2rem;
    gap: 1rem 1.25rem;
    padding: 1.1rem 1.25rem;
    max-width: 100%;
  }

  .hero-badge-num {
    font-size: 1.45rem;
  }
}

@media (max-width: 991px) {
  .hero-sub {
    margin-top: 1rem;
  }

  .hero-meta {
    margin-bottom: 1rem !important;
  }
}

/* ================== JKB themed modal ================== */
.jkb-modal .modal-dialog {
  max-width: 880px;
}

.jkb-modal-content {
  border: none !important;
  border-radius: 18px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(196, 162, 74, 0.25);
  position: relative;
}

.jkb-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
}

.jkb-modal-close i {
  font-size: 1rem;
  line-height: 1;
}

.jkb-modal-close:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: rotate(90deg);
}

.jkb-modal-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 520px;
}

.jkb-modal-left {
  background:
    linear-gradient(160deg, #9b7b20bf, #9b7b20),
    url(../assets/images/gallery/elevation-2.webp) center / cover no-repeat;
  color: #fff;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.jkb-modal-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 160px;
  background: url("../assets/images/bg-leaf-corner.webp") no-repeat left top;
  background-size: contain;
  opacity: 0.35;
  pointer-events: none;
}

.jkb-modal-logo {
  background: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  align-self: flex-start;
  width: 150px;
  max-width: 100%;
}

.jkb-modal-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.jkb-modal-tag {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 500;
  margin: 1.5rem 0 1.25rem;
  position: relative;
  z-index: 1;
}

.jkb-modal-tag em {
  font-style: italic;
  color: #e8d5a8;
}

.jkb-modal-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  position: relative;
  z-index: 1;
}

.jkb-modal-facts li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #edd8c0;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.jkb-modal-facts li:last-child {
  border-bottom: none;
}

.jkb-modal-facts li span {
  color: #fff;
  font-weight: 600;
  margin-right: 0.35rem;
}

.jkb-modal-loc {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8d5a8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.jkb-modal-right {
  padding: 2.75rem 2.25rem;
  background: #000 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jkb-modal-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem !important;
}

.jkb-modal-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #000;
  margin-bottom: 1.5rem !important;
  line-height: 1.55;
}

.jkb-form .jkb-field {
  position: relative;
  margin-bottom: 1.1rem;
}

.jkb-form .form-control {
  border: none;
  border-bottom: 1.5px solid rgba(196, 162, 74, 0.35);
  border-radius: 0;
  background: transparent;
  padding: 0.65rem 0.25rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #1a0d10;
  box-shadow: none !important;
  transition: border-color 0.3s ease;
}

.jkb-form .form-control::placeholder {
  color: #a09070;
  font-weight: 400;
}

.jkb-form .form-control:focus {
  border-color: var(--primary);
  background: transparent;
  outline: none;
}

.jkb-form .jkb-mobile {
  position: relative;
}

.jkb-form .jkb-cc {
  position: absolute;
  left: 0;
  top: 0.7rem;
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.92rem;
  pointer-events: none;
}

.jkb-form .jkb-mobile .form-control {
  padding-left: 2.6rem;
}

.jkb-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.25rem 0 1.25rem;
}

.jkb-agree .form-check-input {
  margin-top: 0.25rem;
  border-color: var(--primary);
  flex-shrink: 0;
}

.jkb-agree .form-check-input:checked {
  background-color: #9b7b20;
  border-color: #9b7b20;
}

.jkb-agree .form-check-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #4a3525;
  line-height: 1.4;
  cursor: pointer;
}

.jkb-submit {
  width: 100%;
  background: #7a5c10;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 10px 24px rgba(196, 162, 74, 0.25);
  position: relative;
  overflow: hidden;
}

.jkb-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  border-radius: 50px;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.jkb-submit span {
  position: relative;
  z-index: 1;
}

.jkb-submit:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(155, 123, 32, 0.32);
}

.jkb-submit:hover::before {
  opacity: 0;
}

.jkb-trust {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #a09070;
  text-align: center;
  margin: 0.9rem 0 0;
}

@media (max-width: 767px) {
  .hero-banner {
    margin-top: 54px;
  }

  .jkb-modal-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .jkb-modal-left {
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .jkb-modal-tag {
    font-size: 1.3rem;
    margin: 1rem 0 0.9rem;
  }

  .jkb-modal-facts {
    margin-bottom: 0.9rem;
  }

  .jkb-modal-right {
    padding: 1.75rem 1.5rem 1.75rem;
  }

  .jkb-modal-title {
    font-size: 1.5rem;
  }
}

.hero-title-italic {
  font-style: italic;
  font-weight: 500;
  font-family: var(--font-cormorant);
  color: var(--primary);
  display: inline-block;
}

/* Project highlight cards - luxury dark maroon + cream theme */
.project-highlight .sub-title {
  color: #ece0c1 !important;
  text-shadow: none;
}

/* Splitting.js ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â no animation for project-highlight, plain cream text */
.project-highlight .sub-title .char,
.project-highlight .sub-title.aos-animate .char {
  /* background: none !important; */
  /* -webkit-text-fill-color: #ece0c1 !important; */
  color: var(--gold, #c4a24a) !important;
}

.highlight-carousel .box {
  background: rgba(236, 224, 193, 0.06);
  border: 1px solid rgba(236, 224, 193, 0.25);
  border-radius: 14px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition:
    transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.42s ease,
    border-color 0.42s ease,
    background 0.42s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.highlight-carousel .box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(236, 224, 193, 0.1) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.42s ease;
  border-radius: 14px;
  pointer-events: none;
}

.highlight-carousel .box:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(236, 224, 193, 0.7);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(236, 224, 193, 0.3),
    inset 0 1px 0 rgba(236, 224, 193, 0.15);
  background: rgba(236, 224, 193, 0.1);
}

.highlight-carousel .box:hover::before {
  opacity: 1;
}

/* Icon ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â cream circle with maroon icon */
.highlight-carousel .icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ece0c1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow:
    0 4px 20px rgba(236, 224, 193, 0.25),
    0 0 0 3px rgba(236, 224, 193, 0.12);
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.5s ease,
    background 0.4s ease;
  position: relative;
  z-index: 1;
}

/* Ring pulse on hover */
.highlight-carousel .icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(236, 224, 193, 0);
  transition:
    border-color 0.45s ease,
    inset 0.45s ease;
}

.highlight-carousel .box:hover .icon {
  transform: scale(1.18) rotate(12deg);
  background: #ece0c1;
  box-shadow:
    0 0 0 6px rgba(236, 224, 193, 0.2),
    0 0 0 12px rgba(236, 224, 193, 0.08),
    0 16px 40px rgba(236, 224, 193, 0.3);
}

.highlight-carousel .box:hover .icon::after {
  border-color: rgba(236, 224, 193, 0.5);
  inset: -10px;
}

.highlight-carousel .icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.highlight-carousel .box:hover .icon img {
  transform: scale(1.12) rotate(-12deg);
}

.highlight-carousel .icon i {
  font-size: 34px;
  color: #4e1220;
  line-height: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.highlight-carousel .box:hover .icon i {
  transform: scale(1.15) rotate(-12deg);
}

.highlight-carousel .text {
  /* font-family: var(--font-cormorant); */
  font-size: 1.15rem;
  font-weight: 600;
  color: #ece0c1;
  line-height: 1.35;
  margin: 0;
  transition:
    transform 0.38s ease,
    letter-spacing 0.38s ease,
    color 0.38s ease;
  position: relative;
  z-index: 1;
  text-align: center;
}

.highlight-carousel .box:hover .text {
  transform: translateY(-3px);
  letter-spacing: 0.4px;
  color: #fff;
}

/* Cream nav arrows inside highlight section */
.project-highlight .owl-nav button {
  background: var(--primary-gradient) !important;
  border: 1px solid rgba(236, 224, 193, 0.4) !important;
  transition: all 0.3s ease !important;
}

.project-highlight .owl-nav button:hover {
  background: rgba(236, 224, 193, 0.25) !important;
  border-color: #ece0c1 !important;
}

.project-highlight .owl-nav button span {
  color: #ece0c1 !important;
}

.owl-carousel .owl-nav button.owl-prev img,
.owl-carousel .owl-nav button.owl-next img,
.owl-nav .owl-prev img,
.owl-nav .owl-next img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

/* ================== New Location Advantages section ================== */
.loc-section {
  position: relative;
  background: #000 !important;
}

.loc-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.loc-intro {
  margin-top: 0.5rem;
  /* color: #4A3525; */
}

.loc-tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 2.5rem;
}

.loc-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.loc-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0.25rem 0.5rem;
  min-width: 100%;
  justify-content: center;
}

.loc-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
}

.loc-tab-icon {
  display: inline-flex;
  align-items: center;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  flex-shrink: 0;
}

.loc-tab-icon i {
  font-size: 0.95rem;
  color: inherit;
  transition: transform 0.25s ease;
}

.loc-tab:hover {
  background: rgba(196, 162, 74, 0.08);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}

.loc-tab:hover .loc-tab-icon i {
  transform: scale(1.2);
}

.loc-tab.active {
  background: var(--primary-gradient);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(196, 162, 74, 0.28);
}

.loc-tab.active .loc-tab-icon i {
  color: var(--gold);
}

.loc-grid-wrap {
  /* display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem; */
  align-items: center;
}

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

.loc-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(196, 162, 74, 0.1);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(196, 162, 74, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.loc-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--primary));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.loc-card:hover {
  transform: translateX(5px);
  border-color: rgba(196, 162, 74, 0.25);
  box-shadow: 0 8px 24px rgba(196, 162, 74, 0.12);
  background: #fdf8f0;
}

.loc-card:hover::before {
  transform: scaleY(1);
}

.loc-card.hidden {
  display: none;
}

.loc-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(196, 162, 74, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.loc-card-icon i {
  font-size: 0.95rem;
  color: var(--primary);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.loc-card:hover .loc-card-icon {
  background: var(--primary-gradient);
  transform: scale(1.1) rotate(-8deg);
}

.loc-card:hover .loc-card-icon i {
  color: var(--gold);
}

.loc-card-body {
  flex: 1;
  min-width: 0;
}

.loc-card-cat {
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.loc-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loc-card-dist {
  font-family: var(--font-cormorant);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}

.loc-card-dist small {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  color: #a09070;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}

.loc-map {
  position: sticky;
  top: 90px;
  border-radius: 0px;
  overflow: hidden;
  border: 1px solid rgba(196, 162, 74, 0.18);
  box-shadow: 0 18px 40px rgba(196, 162, 74, 0.12);
}

.loc-map .loc-map-badge,
.loc-map .loc-map-pin {
  z-index: 4;
}

.loc-map img {
  width: 100%;
  height: auto;
  display: block;
}

.loc-map-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 28px rgba(196, 162, 74, 0.18);
}

.loc-map-pin {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-map-pin img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.loc-map-badge strong {
  display: block;
  font-family: var(--font-cormorant);
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.1;
}

.loc-map-badge span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #4a3525;
}

@media (max-width: 991px) {
  .loc-grid-wrap {
    grid-template-columns: 1fr;
  }

  .loc-map {
    position: relative;
    top: auto;
    margin-bottom: 1.5rem;
  }
}

/* Hide only the "All" tab — keep category tabs visible */
.loc-tab[data-cat="all"] {
  display: none !important;
}

@media (max-width: 575px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }
}

/* ================== Connect With Us card ================== */
.contact-map {
  height: 100%;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(196, 162, 74, 0.12);
}

.connect-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.25rem 2rem;
  border: 1px solid rgba(196, 162, 74, 0.14);
  box-shadow: 0 22px 50px rgba(196, 162, 74, 0.12);
  position: relative;
  overflow: hidden;
}

.connect-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #c4a24a, var(--primary));
}

.connect-card-head {
  margin-bottom: 1.5rem;
}

.connect-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  background: #fbe4ee;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  margin-bottom: 0.85rem;
}

.connect-card .sub-title {
  margin-bottom: 0.6rem;
}

.connect-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #4a3525;
  line-height: 1.6;
  margin: 0;
  max-width: 420px;
}

.connect-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.connect-field {
  display: flex;
  flex-direction: column;
}

.connect-field label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.connect-opt {
  color: #a09070;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.25rem;
  font-size: 0.72rem;
}

.connect-field .form-control {
  border: 1px solid rgba(196, 162, 74, 0.25);
  background: #fdf6f9;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #1a0d10;
  box-shadow: none;
  transition: all 0.25s ease;
}

.connect-field .form-control::placeholder {
  color: #b09099;
}

.connect-field .form-control:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196, 162, 74, 0.1);
  outline: none;
}

.connect-mobile {
  position: relative;
}

.connect-mobile .connect-cc {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding-right: 0.6rem;
  border-right: 1px solid rgba(196, 162, 74, 0.25);
  pointer-events: none;
}

.connect-mobile .form-control {
  padding-left: 3.5rem;
}

.connect-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.connect-agree .form-check-input {
  margin-top: 0.2rem;
  border-color: #9b7b20;
  flex-shrink: 0;
  cursor: pointer;
}

.connect-agree .form-check-input:checked {
  background-color: #9b7b20;
  border-color: #9b7b20;
}

.connect-agree .form-check-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #4a3525;
  line-height: 1.4;
  cursor: pointer;
}

.connect-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #7a5c10;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.95rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 12px 26px rgba(196, 162, 74, 0.25);
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}

.connect-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  border-radius: 50px;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.connect-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.connect-submit span {
  position: relative;
  z-index: 1;
}

.connect-submit:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(155, 123, 32, 0.32);
}

.connect-submit:hover::before {
  opacity: 0;
}

.connect-submit:hover svg {
  transform: translateX(4px);
}

.connect-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #4a3525;
  line-height: 1.3;
}

.connect-trust img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.connect-details {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.connect-details p {
  font-size: 0.82rem;
  color: var(--black);
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.5;
  padding: 0.55rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 6px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
  cursor: default;
}

.connect-details p:hover {
  background: rgba(196, 162, 74, 0.05);
  border-color: rgba(196, 162, 74, 0.18);
  transform: translateX(4px);
}

.connect-details p i {
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
  background: var(--primary-gradient);
  width: 28px;
  height: 28px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.connect-details p:hover i {
  background: var(--gold);
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 4px 12px rgba(196, 162, 74, 0.4);
}

.connect-details p a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s ease;
}

.connect-details p:hover a {
  color: var(--primary);
}

.contact-address-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: rgba(196, 162, 74, 0.05);
  border: 1px solid rgba(196, 162, 74, 0.15);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--black);
  text-align: center;
}

.contact-address-bar i {
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .connect-card {
    padding: 1.75rem 1.5rem;
  }
}

/* ================== Text Reveal & Blur Animations ================== */

/* --- Header reveal: enhances existing AOS fade-up with blur --- */
h1[data-aos],
h2[data-aos],
h3[data-aos],
h4[data-aos],
.sub-title[data-aos],
.hero-title[data-aos],
.overview-sub-title[data-aos],
.gap-title[data-aos],
.gap-title2[data-aos] {
  filter: blur(8px);
  transition-property: transform, opacity, filter !important;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
  transition-duration: 1s !important;
}

h1[data-aos].aos-animate,
h2[data-aos].aos-animate,
h3[data-aos].aos-animate,
h4[data-aos].aos-animate,
.sub-title[data-aos].aos-animate,
.hero-title[data-aos].aos-animate,
.overview-sub-title[data-aos].aos-animate,
.gap-title[data-aos].aos-animate,
.gap-title2[data-aos].aos-animate {
  filter: blur(0);
}

/* --- Paragraph blur-in via JS observer --- */
.p-blur-init {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(16px);
  transition:
    opacity 0.9s ease,
    filter 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-blur-init.p-blur-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ===================================================================
   DARK THEME Ã¢â‚¬â€ PDF Brochure Style (All Sections)
   Black bg Ã‚Â· Gold headings Ã‚Â· Cream body text Ã‚Â· Gold accents
   =================================================================== */

/* ---- Global body & scroll ---- */
body {
  background: #000 !important;
  color: #ddd0b5 !important;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--gold);
}

/* ---- All sections base ---- */
.overview,
.project-highlight,
.amenities,
.gallery,
.loc-section,
.aboutus,
.register-interest,
.secton-thankyou {
  background-color: #000 !important;
  background: #000 !important;
}

/* Remove all leaf decorations on dark bg */
.configuration::before,
.gallery::before,
.register-interest::before,
.project-highlight::before {
  display: none !important;
}

/* ---- Global heading & text ---- */
.sub-title,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--gold, #c4a24a) !important;
}
/* p, span, li, label {
  color: #ddd0b5;
} */
.line {
  background: linear-gradient(90deg, var(--gold), transparent) !important;
}

/* ---- Navbar ---- */
header,
#navbar {
  background: #000 !important;
  border-bottom: 1px solid rgba(196, 162, 74, 0.18) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6) !important;
}
.nav-link,
.navbar-links a,
.offcanvas-link {
  color: #ddd0b5 !important;
}
.nav-link:hover,
.navbar-links a:hover,
.offcanvas-link:hover {
  color: var(--gold) !important;
}
.header-btn,
.nav-enquire-btn {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.header-btn:hover,
.nav-enquire-btn:hover {
  background: var(--gold) !important;
  color: #0a0a0a !important;
}
.offcanvas,
.offcanvas-body {
  background: #111 !important;
}

/* ---- Loader ---- */
.loader-container {
  background: #000 !important;
}

/* ---- Hero Banner ---- */
.hero-banner {
  background: #000 !important;
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.7) 40%,
    rgba(10, 10, 10, 0.2) 65%,
    rgba(10, 10, 10, 0) 80%
  ) !important;
}
.hero-text {
  color: #ddd0b5 !important;
}
.hero-sub {
  color: #c8bba0 !important;
}
.hero-badges {
  background: rgba(20, 20, 20, 0.85) !important;
  border-color: rgba(196, 162, 74, 0.3) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5) !important;
}
.hero-badges::after {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(196, 162, 74, 0.35),
    transparent
  ) !important;
}
.hero-badge:nth-child(1),
.hero-badge:nth-child(2) {
  border-bottom-color: rgba(196, 162, 74, 0.18) !important;
}
.hero-badge-label {
  color: #a09070 !important;
}

/* ---- Overview section ---- */
.overview .overview-sub-title {
  color: #c8bba0 !important;
}
.overview p,
.overview .overview-desc {
  color: #c8bba0 !important;
}
.overview-form-card,
.overview-form {
  background: #111 !important;
  border-color: rgba(196, 162, 74, 0.45) !important;
  /* box-shadow: 0 0 0 1px rgba(196,162,74,0.08), 0 24px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(196,162,74,0.15) !important; */
}
.overview-form-title {
  color: var(--gold) !important;
}
.overview-form-sub {
  color: #a09070 !important;
}
.of-input,
.form-control,
.form-select {
  background: #1a1a1a !important;
  border-color: rgba(196, 162, 74, 0.3) !important;
  color: #ddd0b5 !important;
}
.of-input::placeholder,
.form-control::placeholder {
  color: #6a5f4a !important;
}
.of-input:focus,
.form-control:focus,
.form-select:focus {
  background: #1e1e1e !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(196, 162, 74, 0.15) !important;
  color: #ddd0b5 !important;
}
.of-agree,
.form-check-label {
  color: #888 !important;
}
.of-cc {
  color: var(--gold) !important;
}
.btn-of-submit {
  background: var(--gold) !important;
  color: #0a0a0a !important;
  box-shadow: 0 12px 26px rgba(196, 162, 74, 0.25) !important;
}
.btn-of-submit::before {
  background: linear-gradient(180deg, #c9a94f 0%, #a07c28 100%) !important;
}
.btn-of-submit:hover {
  box-shadow: 0 16px 34px rgba(196, 162, 74, 0.35) !important;
}

/* ---- Project Highlights ---- */
.project-highlight {
  background: #111 !important;
}
.project-highlight .sub-title {
  color: var(--gold) !important;
}
.highlight-carousel .box {
  background: #1a1a1a !important;
  border-color: rgba(196, 162, 74, 0.25) !important;
}
.highlight-carousel .box p,
.highlight-carousel .box h5,
.highlight-carousel .box span,
.highlight-carousel .box .highlight-text {
  color: #ddd0b5 !important;
}
.highlight-carousel .box i,
.highlight-carousel .box .highlight-icon {
  color: var(--gold) !important;
}
.owl-dot span {
  background: #333 !important;
}
.owl-dot.active span {
  background: var(--gold) !important;
}

/* ---- Amenities ---- */
.amenities {
  background: #000 !important;
}
.amenities .sub-title {
  color: var(--gold) !important;
}
.amenity-card,
.amenities .box,
.amenities .amenity-item {
  border-color: rgba(196, 162, 74, 0.2) !important;
}
.amenity-card p,
.amenity-card span,
.amenities .amenity-label {
  color: #ddd0b5 !important;
}
.amenity-card i,
.amenities .amenity-icon {
  color: var(--gold) !important;
}
.accordion-item {
  background: #141414 !important;
  border-color: rgba(196, 162, 74, 0.2) !important;
}
.accordion-button {
  background: #1a1a1a !important;
  color: #ddd0b5 !important;
}
.accordion-button:not(.collapsed) {
  background: #1e1e1e !important;
  color: var(--gold) !important;
  box-shadow: none !important;
}
.accordion-button::after {
  filter: invert(0.7) sepia(1) saturate(2) hue-rotate(5deg) !important;
}
.accordion-body {
  background: #141414 !important;
  color: #c8bba0 !important;
}

/* ---- Gallery ---- */
.gallery {
  background: #000 !important;
}
.gallery .sub-title {
  color: var(--gold) !important;
}
.nav-gallery {
  background: #141414 !important;
  border-color: rgba(196, 162, 74, 0.3) !important;
  color: #ddd0b5 !important;
}
.nav-gallery:hover:not(.active) {
  background: #1e1e1e !important;
  border-color: var(--gold) !important;
}
.nav-gallery.active {
  background: linear-gradient(180deg, #c9a94f 0%, #a07c28 100%) !important;
  border-color: transparent !important;
  color: #0a0a0a !important;
}

/* ---- Location ---- */
.loc-section {
  background: #000 !important;
}
.loc-section .sub-title {
  color: var(--gold) !important;
}
.loc-section p,
.location-desc {
  color: #c8bba0 !important;
}
.loc-card,
.location-card {
  background: #141414 !important;
  border-color: rgba(196, 162, 74, 0.2) !important;
}
.loc-card i,
.location-card i {
  color: var(--gold) !important;
}
.loc-card p,
.loc-card span,
.location-card p {
  color: #ddd0b5 !important;
}

/* ---- About Us ---- */
.aboutus {
  background: #000 !important;
}
.aboutus .sub-title {
  color: var(--gold) !important;
}
.aboutus p {
  color: #c8bba0 !important;
}

.counter-number {
  color: var(--gold) !important;
}
.counter-label,
.counter-text {
  color: #ddd0b5 !important;
}
.counter-box,
.counter-item {
  border-color: rgba(196, 162, 74, 0.2) !important;
}

/* ---- Register Interest / Contact ---- */
.register-interest {
  background: #000 !important;
}
.register-interest .sub-title {
  color: var(--gold) !important;
}
.register-interest p {
  color: #c8bba0 !important;
}
.connect-card {
  background: #141414 !important;
  border-color: rgba(196, 162, 74, 0.25) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}
.connect-card .connect-title {
  color: var(--gold) !important;
}
.connect-details p {
  color: #ddd0b5 !important;
  border-color: transparent !important;
}
.connect-details p:hover {
  background: rgba(196, 162, 74, 0.07) !important;
  border-color: rgba(196, 162, 74, 0.2) !important;
}
.connect-details p a {
  color: #ddd0b5 !important;
}
.connect-details p:hover a {
  color: var(--gold) !important;
}
.contact-address-bar {
  background: rgba(196, 162, 74, 0.07) !important;
  border-color: rgba(196, 162, 74, 0.2) !important;
  color: #ddd0b5 !important;
}
.contact-address-bar i {
  color: var(--gold) !important;
}
.connect-submit,
.jkb-submit {
  background: linear-gradient(180deg, #c9a94f 0%, #a07c28 100%) !important;
  color: #0a0a0a !important;
}

/* ---- Modal ---- */
.jkb-modal-content {
  background: #111 !important;
}
.jkb-modal-right {
  background: #141414 !important;
}
.jkb-modal-right .jkb-modal-title {
  color: var(--gold) !important;
}
.jkb-modal-right p,
.jkb-modal-right label {
  color: #c8bba0 !important;
}
.jkb-modal-right .of-input,
.jkb-modal-right .form-control {
  background: #1a1a1a !important;
  border-color: rgba(196, 162, 74, 0.3) !important;
  color: #ddd0b5 !important;
}
.jkb-modal-close {
  background: rgba(20, 20, 20, 0.9) !important;
  color: var(--gold) !important;
}
.jkb-modal-close:hover {
  background: var(--gold) !important;
  color: #0a0a0a !important;
}

/* ---- Thank you section ---- */
.secton-thankyou {
  background: #000 !important;
}
.thankyou-title {
  color: var(--gold) !important;
}

/* ---- Footer ---- */
footer,
.footer {
  background: #000 !important;
  border-top: 1px solid rgba(196, 162, 74, 0.15);
}
footer p,
footer span,
footer a,
.footer p,
.footer span,
.footer a {
  color: #888 !important;
}
footer a:hover,
.footer a:hover {
  color: var(--gold) !important;
}

/* ---- Misc cards & boxes ---- */
.layout-box {
  background: #141414 !important;
  border-color: rgba(196, 162, 74, 0.25) !important;
}

/* ---- Brochure-theme overrides (neutralise old pink rules) ---- */
.overview,
.project-highlight,
.amenities,
.gallery,
.location,
.aboutus,
.register-interest,
.secton-thankyou {
  /* background-color: #000 !important; */
}
.amenities {
  background-color: #000 !important;
}
.project-highlight {
  background: #000 !important;
}

/* Hero banner overlay fix for mobile */
@media (max-width: 991px) {
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(10, 10, 10, 0.6) 50%,
      rgba(10, 10, 10, 0.2) 75%,
      rgba(10, 10, 10, 0.85) 100%
    ) !important;
  }
}

/* ============================================================
   WHITE & GOLDEN THEME
   Added on request: convert the dark brochure theme to a white &
   golden look across the whole landing page. Appended last so it
   wins the cascade over the earlier dark "!important" rules.
   ============================================================ */

/* ---- Page background: white -> champagne gradient. Must carry
        !important to beat the earlier `body{background:#000 !important}`
        rules; without this the whole page stays black. ---- */
body {
  background: linear-gradient(
      135deg,
      #ffffff 0%,
      #fdfaf1 38%,
      #f6ebcf 72%,
      #ead9ac 100%
    )
    fixed !important;
  background-color: #ffffff !important;
  color: #2b2620 !important;
}

/* ---- Top navbar / header: white bar so the dark nav links read.
        Beats the earlier `header,#navbar{background:#000 !important}`. ---- */
header,
#header,
#navbar,
#navbar.dropped,
nav.dropped,
header.dropped {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(196, 162, 74, 0.25) !important;
  box-shadow: 0 2px 16px rgba(196, 162, 74, 0.1) !important;
}

/* ---- Section backgrounds: transparent so the white->gold body
        gradient shows through everywhere (incl. amenity tiles) ---- */
.overview,
.project-highlight,
.amenities,
.gallery,
.location,
.loc-section,
.aboutus,
.register-interest,
.secton-thankyou,
.hero-banner,
.amenities,
.amenities .box,
.amenity-card {
  /* background: transparent !important; */
  background-color: #d49e1300 !important;
}
.amenities .amenity-item,
.amenities .box,
.amenity-card {
  border-color: rgba(196, 162, 74, 0.2) !important;
}

/* Loading screen */
.loader-container {
  background: #fbf6ea !important;
}

/* ---- Headings stay gold (reads well on light) ---- */
.sub-title,
h1,
h2,
h3,
h4,
h5,
h6,
.configuration .sub-title,
.amenities .sub-title,
.gallery .sub-title,
.loc-section .sub-title,
.aboutus .sub-title,
.register-interest .sub-title,
.project-highlight .sub-title,
.project-highlight .sub-title .char,
.counter-number,
.counter-number .count {
  color: #c4a24a !important;
  -webkit-text-fill-color: #c4a24a !important;
}
/* Exception: the modal's left panel is golden, so its heading stays light
   (the blanket h1-h6 gold rule above would otherwise make it gold-on-gold) */
.jkb-modal-left .jkb-modal-tag,
.jkb-modal-left .jkb-modal-tag * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ---- Navbar / offcanvas: dark links on light ---- */
.nav-link,
.navbar-links a,
.offcanvas-link,
.navbar-container .navbar-links .navbar-link .nav-link,
.offcanvas-nav .offcanvas-link {
  color: #1a1a1a !important;
}
.offcanvas,
.offcanvas-body,
.offcanvas.offcanvas-start {
  background: #ffffff !important;
}

/* ---- Body copy -> dark, readable ---- */
.overview .overview-sub-title,
.overview p,
.overview .overview-desc,
.other-description,
.loc-section p,
.location-desc,
.loc-card p,
.loc-card span,
.loc-card .loc-card-name,
.loc-card .loc-card-cat,
.location-card p,
.aboutus p,
.about-para,
.amenity-label,
.amenity-card p,
.amenity-card span,
.amenities .amenity-label,
.counter-label,
.counter-text,
.highlight-carousel .box p,
.highlight-carousel .box h5,
.highlight-carousel .box span,
.highlight-carousel .box .highlight-text,
.highlight-carousel .text,
.highlight-carousel .box:hover .text,
.connect-details p,
.connect-details p a,
.connect-sub,
.jkb-modal-sub,
.config-disclaimer,
.configuration .section-desc,
.configuration .section-heading p {
  color: #2b2620 !important;
}

/* keep gold icon accents on light cards */
.loc-card-icon i,
.gallery-tab-btn:not(.active) i,
.loc-tab:not(.active) .loc-tab-icon i {
  color: #c4a24a !important;
}
/* deeper gold for icons that sit on the cream highlight disc */
.highlight-carousel .box i,
.highlight-carousel .icon i,
.highlight-carousel .box .highlight-icon {
  color: #8a6a18 !important;
}
/* active tabs sit on the gold gradient -> their icons must be light, not gold */
.gallery-tab-btn.active i,
.loc-tab.active .loc-tab-icon i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ---- Cards / panels: white with a soft gold border ---- */
.overview-form-card,
.overview-form,
.loc-card,
.location-card,
.connect-card,
.highlight-carousel .box {
  background: #ffffff !important;
  border-color: rgba(196, 162, 74, 0.3) !important;
}
.loc-card:hover,
.highlight-carousel .box:hover {
  background: #fbf6ea !important;
}

/* ---- Form fields: white bg, dark text ---- */
.of-input,
.form-control,
.form-select,
.overview-form .of-input,
.jkb-modal-right .of-input,
.jkb-modal-right .form-control {
  background: #ffffff !important;
  border-color: rgba(196, 162, 74, 0.4) !important;
  color: #2b2620 !important;
}
.of-input:focus,
.form-control:focus,
.form-select:focus,
.overview-form .of-input:focus {
  background: #ffffff !important;
  border-color: #c4a24a !important;
  color: #2b2620 !important;
}
.of-input::placeholder,
.form-control::placeholder {
  color: #9a917f !important;
}
.of-agree,
.form-check-label {
  color: #5a5345 !important;
}

/* ---- Configuration table: gold header, white rows, dark text ---- */
.configuration .config-table thead tr {
  background: var(--primary-gradient) !important;
}
.configuration .config-table thead th {
  color: #ffffff !important;
}
.configuration .config-table tbody tr {
  background: #ffffff !important;
}
.configuration .config-table tbody tr:hover {
  background: #fbf6ea !important;
}
.configuration .config-table tbody td {
  color: #2b2620 !important;
}
.configuration .config-table-wrap {
  box-shadow: 0 8px 30px rgba(138, 106, 24, 0.15) !important;
}
.configuration .config-tab-btn {
  background: #ffffff !important;
  color: #8a6a18 !important;
}
.configuration .config-tab-btn .config-tab-label {
  color: rgba(138, 106, 24, 0.75) !important;
}
.configuration .config-tab-btn:hover {
  background: #fbf6ea !important;
}

/* ---- Popup modal: keep golden left panel, flip right panel to white ---- */
.jkb-modal-content {
  background: #ffffff !important;
}
.jkb-modal-right {
  background: #ffffff !important;
}
.jkb-modal-right p,
.jkb-modal-right label,
.jkb-modal-title {
  color: #2b2620 !important;
}
/* keep the golden left panel's text light (re-asserted so the dark default
   body color can never bleed into it) */
.jkb-modal-left .jkb-modal-facts li {
  color: #edd8c0 !important;
}
.jkb-modal-left .jkb-modal-facts li span {
  color: #ffffff !important;
}
.jkb-modal-left .jkb-modal-loc {
  color: #e8d5a8 !important;
}

/* Gallery image caption chips sit on the gold gradient -> keep text white */
.gallery .overtext,
.gal_image .overtext,
.img-overlay .overtext {
  color: #ffffff !important;
}

/* ---- Footer: light champagne, dark text, gold top border ---- */
footer,
.footer,
.footer-black,
.footer-black.text-white {
  background: #d49e130a !important;
  border-top: 1px solid rgba(196, 162, 74, 0.45) !important;
}
.footer-black.text-white,
footer p,
footer span,
footer a,
.footer p,
.footer span,
.footer a,
.copyright-desc,
.copyright-desc2,
.copyright2 .copyright-desc2,
.text-footer p,
.footer-desc p {
  color: #3a3328 !important;
}
footer a:hover,
.footer a:hover {
  color: #8a6a18 !important;
}
/* mobile disclaimer "Read More" toggle: was white -> unreadable on champagne */
.readmore-btn,
footer .readmore-btn {
  color: #8a6a18 !important;
}
.custom-hr {
  color: rgba(196, 162, 74, 0.4) !important;
  border-color: rgba(196, 162, 74, 0.4) !important;
}
/* ===================== end White & Golden theme ===================== */

/* ---- Gallery: uniform 1000x600 (5:3) tiles so every carousel item and
        every tab lines up at the same size regardless of source image ---- */
.gal_image.box .box-content {
  display: block !important;
  aspect-ratio: 5 / 3 !important;
  width: 100% !important;
}
.gal_image.box .box-content img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}
