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


@font-face {
  font-family: CeraGodrejInterio-Regular;
  src: url("../assets/fonts/CeraGodrejInterio/CeraGodrejInterio-Regular.ttf");
}

@font-face {
  font-family: TheFuture-Regular;
  src: url("../assets/fonts/The-Future/TheFuture-Regular.otf");
}

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

:root {
  --light: #ffffff;
  --dark: #0a0a1a;
  --Lato: "Lato", sans-serif;
  --Montserrat: "Montserrat", sans-serif;
  --Raleway: "Raleway", sans-serif;
  --Playfair: "Playfair Display", serif;
  --Cormorant: "Cormorant Garamond", serif;
  --CeraGodrejInterio-Regular: CeraGodrejInterio-Regular;
  --TheFuture-Regular: TheFuture-Regular;
  --radius-1: 16px;
  --radius-full: 100px;
  --primary: #9A8456;
  --primary-dark: #0a1628;
  --primary-crimson: #bc2031;
  --primary-pink: #c41e3a;
  --gold: #9A8456;
  --gold-light: #c4a96a;
  --navy: #0a1628;
  --text-color: #2a2a2a;
  --bg-light: #f5f3ef;
}

html {
  font-size: 16px !important;
  overflow-x: 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;
  font-family: var(--Montserrat);
  background-color: var(--bg-light);
}

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

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

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

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

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

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

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

.toggle-up {
  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;
  background: var(--dark-blue);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  position: fixed;
  bottom: 0%;
  right: 1.25%;
  color: var(--light);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up.show {
  opacity: 1;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up i {
  font-size: 1.15rem;
}

/* form loader css */

.form-loader-div {
  display: none;
}

.form-loader {
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #b5acac;
  border-right-color: var(--light);
  -webkit-animation: l2 0.35s infinite linear;
  animation: l2 0.35s infinite linear;
}

@-webkit-keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

/* form loader css */

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

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

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

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

a {
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

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

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

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

.max-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.no-wrap {
  text-wrap: nowrap;
}

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

.rotate {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

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

.letter-spacing {
  letter-spacing: 1.05px;
}

.text-shadow {
  text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

.primary-bg {
  background-color: #f3f3f3;
}

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

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 11;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background: var(--bg-light);
}

header.scrolled {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background: var(--bg-light);
  border-bottom: 1px solid var(--gold-light);
}

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

.menu {
  display: none;
  width: 21px;
  cursor: pointer;
  filter: invert(1);
}

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

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

.logo-img-1 img {
  border-radius: 4px;
}

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

.scrolled .logo-img-1 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 100px;
}

.scrolled .logo-img-2 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 0px;
  display: none;
}

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

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

.navLinks .navLink {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

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

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

.line {
  width: 100%;
  height: 2px;
  margin: 2rem auto;
  background-color: rgba(10, 22, 40, 0.15);
}

.btnPrimary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.35rem;
  color: var(--light);
  background: transparent;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

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

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

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

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

.btnPrimary::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to right, #0a1628 0%, #0a1628 46%, rgba(255, 255, 255, 0.25) 50%, #0a1628 54%, #0a1628 100%);
  background-size: 600% 600%;
  -webkit-animation: btnShine 3s ease infinite;
  animation: btnShine 3s ease infinite;
  border-radius: 6px;
  border: 1px solid var(--gold);
}

.btnPrimary.custom-size {
  font-size: 0.8rem;
}

.btnPrimary.light {
  color: var(--navy);
}

.btnPrimary.light::after {
  background: linear-gradient(to right, #f5f3ef 0%, #f5f3ef 46%, rgba(10, 22, 40, 0.15) 50%, #f5f3ef 54%, #f5f3ef 100%);
  background-size: 600% 600%;
  -webkit-animation: btnShine 3s ease infinite;
  animation: btnShine 3s ease infinite;
  border: 1px solid var(--navy);
  border-radius: 6px;
}

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

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

.offcanvas.offcanvas-end .offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

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

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

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

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

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

.offcanvas-links .line {
  margin: auto auto;
}

.offcanvas-link {
  display: block;
  font-size: 3vw;
  font-family: var(--Montserrat);
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  position: relative;
  width: 100%;
}

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

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

.section-heading .section-title {
  font-size: 1.15rem;
  font-family: var(--Montserrat);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 3px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: uppercase;
}

.section-heading .section-subtitle {
  font-size: 2.5vw;
  color: var(--dark);
  font-family: var(--Playfair);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading .section-desc {
  font-size: 1.1rem;
  font-family: var(--Montserrat);
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.8;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

section.main-banner {
  margin: 0;
  position: relative;
  padding-top: 102px;
}

.main-banner .carousel-control-prev,
.main-banner .carousel-control-next {
  width: 45px;
  height: 45px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  opacity: 1;
  z-index: 5;
  transition: background 0.3s ease;
}

.main-banner .carousel-control-prev {
  left: 15px;
}

.main-banner .carousel-control-next {
  right: 15px;
}

.main-banner .carousel-control-prev:hover,
.main-banner .carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.main-banner .carousel-control-prev-icon,
.main-banner .carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

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

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

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 22, 40, 0.88) 0%,
      rgba(10, 22, 40, 0.6) 40%,
      rgba(10, 22, 40, 0.15) 70%,
      transparent 100%);
  z-index: 1;
}

.banner-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}

.banner-text-inner {
  padding: 0 0 0 8%;
  width: 50%;
}

.banner-heading {
  font-family: var(--Playfair);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--light);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.banner-heading-italic {
  font-style: italic;
  color: var(--gold-light);
}

.banner-tagline {
  font-family: var(--Montserrat);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.banner-location {
  font-family: var(--Montserrat);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: 1.5px solid var(--gold-light);
  border-radius: 6px;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--Montserrat);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.banner-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

/* USP Strip */
.banner-usp-strip {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 85%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}

.banner-usp-row {
  display: flex;
}

.banner-usp {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.banner-usp:last-child {
  border-right: none;
}

.usp-value {
  font-family: var(--Playfair);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--light);
  line-height: 1;
}

.usp-label {
  font-family: var(--Montserrat);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.35rem;
  text-align: center;
}

/* Banner responsive */
@media only screen and (max-width: 1400px) {
  .banner-heading {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 1200px) {
  .banner-heading {
    font-size: 2.6rem;
  }

  .banner-text-inner {
    width: 55%;
  }
}

@media only screen and (max-width: 991px) {
  .banner-heading {
    font-size: 2.2rem;
  }

  .banner-text-inner {
    width: 60%;
  }

  .banner-img {
    height: auto;
  }

  .usp-value {
    font-size: 1.4rem;
  }

  .usp-label {
    font-size: 0.62rem;
  }
}

@media only screen and (max-width: 767px) {
  section.main-banner {
    padding-top: 102px;
  }

  .main-banner .carousel-control-prev,
  .main-banner .carousel-control-next {
    width: 35px;
    height: 35px;
  }

  .main-banner .carousel-control-prev {
    left: 8px;
  }

  .main-banner .carousel-control-next {
    right: 8px;
  }

  .main-banner .carousel-control-prev-icon,
  .main-banner .carousel-control-next-icon {
    width: 14px;
    height: 14px;
  }

  .banner-overlay {
    background: linear-gradient(to top,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(10, 22, 40, 0.5) 55%,
        rgba(10, 22, 40, 0.2) 100%);
  }

  .banner-text-wrap {
    align-items: flex-end;
  }

  .banner-text-inner {
    width: 100%;
    padding: 0 6% 6.5rem 6%;
  }

  .banner-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .banner-tagline {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .banner-location {
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
  }

  .banner-img {
    height: auto;
  }

  .banner-usp-strip {
    width: 94%;
    border-radius: 8px 8px 0 0;
  }

  .banner-usp {
    padding: 0.85rem 0.5rem;
  }

  .usp-value {
    font-size: 1.15rem;
  }

  .usp-label {
    font-size: 0.55rem;
  }
}

@media only screen and (max-width: 576px) {
  section.main-banner {
    padding-top: 88px;
  }
}

@media only screen and (max-width: 480px) {
  .banner-heading {
    font-size: 1.75rem;
  }

  .banner-cta {
    padding: 0.65rem 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
  }

  .usp-value {
    font-size: 1rem;
  }

  .usp-label {
    font-size: 0.5rem;
    letter-spacing: 0;
  }

  .banner-usp {
    padding: 0.75rem 0.25rem;
  }
}

section.section-overview {
  padding: 4rem 0rem;
  position: relative;
}

.texture-pattern {
  position: relative;
  z-index: 2;
}

.texture-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--bg-light);
}

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

.overview-form {
  padding: 2.5rem 2.5rem;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  transition: all 0.5s ease;
}

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

.overview-form .form-title {
  color: var(--gold-light);
  font-family: var(--Playfair);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  text-align: center;
  line-height: 1.4;
  transition: all 0.5s ease;
}

.overview-form .form-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--Montserrat);
  font-weight: 400;
  font-size: 0.9rem;
  text-align: center;
  /* margin: 0 0 1.5rem 0; */
  transition: all 0.5s ease;
}

.overview-form .custom-input {
  border: 1px solid rgba(154, 132, 86, 0.35);
  color: var(--light);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.85rem 1.15rem;
  font-size: 0.95rem;
  border-radius: 8px;
}

.overview-form .custom-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(154, 132, 86, 0.2);
}

.overview-form .custom-input::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.875rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
}

.overview-form .form-check-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.overview-form .form-check-input {
  border-color: rgba(154, 132, 86, 0.5);
}

.overview-form .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.overview-form .btnPrimary {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 0.85rem 2rem;
  letter-spacing: 1px;
}

.overview-form .btnPrimary::after {
  background: var(--gold);
  animation: none;
  border-radius: 8px;
}

.modal .btnPrimary::after {
  background: var(--navy);
  animation: none;
}

.form-title {
  color: var(--navy);
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  font-size: 1.35vw;
  line-height: 1.8rem;
  transition: all 0.5s ease;
}

.form-subtitle {
  color: var(--text-color);
  margin: auto;
  font-family: var(--Montserrat);
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.5s ease;
}

.custom-input {
  padding: 0.75rem 1rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: unset;
  color: rgba(0, 0, 0, 0.6);
  font-family: var(--TheFuture-Regular);
  font-weight: 700;
  letter-spacing: 1.438px;
  border-radius: 4px;
  border: 1px solid rgba(154, 132, 86, 0.5);
  background-color: transparent;
}

.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background: transparent;
  border: 1px solid rgba(154, 132, 86, 0.5);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 0px 0px 2px var(--navy);
  box-shadow: 0px 0px 0px 2px var(--navy);
}

.custom-input::-webkit-input-placeholder {
  color: var(--text-color-2) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 0.975rem !important;
  font-family: var(--TT_Neoris_Regular);
}

.custom-input::-moz-placeholder {
  color: var(--text-color-2) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: var(--TT_Neoris_Regular);
}

.custom-input:-ms-input-placeholder {
  color: var(--text-color-2) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 0.975rem !important;
  font-family: var(--TT_Neoris_Regular);
}

.custom-input::-ms-input-placeholder {
  color: var(--text-color-2) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-family: var(--TT_Neoris_Regular);
  font-size: 0.975rem !important;
}

.custom-input::placeholder {
  color: var(--text-color-2) !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-size: 0.975rem !important;
}

.btn-submit {
  border: none;
  background: var(--navy);
  color: var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 3rem;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 5px;
}

.btn-submit-ext {
  border: none;
  background: var(--navy);
  color: var(--light);
  padding: 0.65rem 4rem;
  font-weight: 600;
  margin: 1.25rem 0 0 0;
  font-size: 1rem;
  border-radius: 10px;
}

.form-check-label {
  color: var(--text-color);
  font-weight: 400;
  font-family: var(--TheFuture-Regular);
  cursor: pointer;
  font-size: 0.875rem;
}

.form-check-input[type="checkbox"] {
  cursor: pointer;
}

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

.form-check-input:checked {
  background-color: var(--navy);
  border-color: var(--navy);
}

.divider {
  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: 2rem;
}

.divider .line {
  width: 100%;
  position: relative;
  height: 2px;
  background-color: rgba(172, 136, 58, 0.14);
}

.divider .line.line-1::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 0;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: rgb(235 228 208);
  border-radius: var(--radius-full);
}

.divider .line.line-2::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  left: 0;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: rgb(235 228 208);
  border-radius: var(--radius-full);
}

section.section-config {
  position: relative;
  padding: 5rem 0;
  z-index: 6;
  /* overflow: hidden; */
}


.config-about {
  background: none;
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 3rem 0;
}

.config-about-txt {
  width: 85%;
  margin: auto;
}

.config-about-txt .config-title {
  font-size: 1.65vw;
  color: var(--navy);
  font-family: var(--Playfair);
  font-weight: 600;
  margin: 0 0 1.25rem 0;
}

.config-about-txt .config-subtitle {
  font-size: 0.95rem;
  color: var(--text-color);
  font-family: var(--TheFuture-Regular);
  font-weight: 400;
}

.config-more-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.config-more-info .more-info {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.config-more-info .more-info .more-info-icon {
  width: 25px;
  height: 25px;
}

.config-more-info .more-info .more-info-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.config-more-info .more-info .more-info-txt {
  font-size: 1.1rem;
  font-family: var(--TheFuture-Regular);
}

.config-about-img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid rgba(10, 22, 40, 0.15);
  background: rgba(255, 255, 255, 0.45);
}

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


.config-about-img::after {
  content: none;
}


.config-nav {
  position: relative;
  z-index: 2;
}

.config-nav .custom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem auto 1rem auto;
}

.config-nav .custom-nav .nav-item .nav-link {
  border: 1px solid var(--navy);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  font-weight: 500;
  display: flex;
  -webkit-box-align: center;
  padding: 0.6rem 2rem;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  font-family: var(--Montserrat);
  transition: all 0.3s ease;
}

.config-nav .custom-nav .nav-item .nav-link.active {
  background: var(--navy);
  color: var(--light);
}

.config-content {
  margin: 2.75rem auto auto auto;
  position: relative;
  z-index: 2;
}

/************* vikas css ************/

/* ******************************gallery starts ********/
section.section-gallery {
  position: relative;
  padding: 5rem 0;
}

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

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

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

.custom-nav-tabs .custom-nav-link.active {
  position: relative;
}

.custom-nav-tabs .nav-item.show .custom-nav-link,
.custom-nav-tabs .custom-nav-link.active {
  color: var(--light) !important;
  font-size: 1rem;
  background-color: var(--navy);
}

.custom-nav-tabs .custom-nav-link {
  font-size: 1rem;
  color: var(--navy);
  border-radius: 100px !important;
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--navy);
  background: transparent;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.gal_image {
  position: relative;
  overflow: visible;
}

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

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

.gal-carousel .owl-item.active.center .gal_image::after {
  content: none;
}

.gal-carousel .owl-item:not(.active.center) .gal_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,
      rgba(251, 243, 234, 0.72) 0%,
      rgba(251, 243, 234, 0.72) 100%);
  border-radius: inherit;
  /* if you use rounded images */
  pointer-events: none;
  /* keep carousel clickable */
  z-index: 1;
}

.gal-carousel .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  transform: translateY(-50%);
}

.gal-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 100px !important;
  overflow: hidden;
}

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

.gal-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 10%;
}

.gal-carousel .owl-nav .owl-next {
  position: absolute;
  right: 10%;
}

.section-gallery .overtext {
  position: absolute;
  bottom: 6%;
  left: 6%;
  color: #fff;
  font-size: 12px;
  padding: 5px;
  text-transform: uppercase;
}


.gal-carousel .owl-item.active.center .gal_image {
  transform: scale(1);
}

.gal-carousel .owl-item.active.center .gal_image::before {
  opacity: 1;
}

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

/* ******************************location starts********/


.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/icons/drop.svg") !important;
  transform: rotate(0deg);
}

.accordion-button::after {
  background-image: url("../assets/images/icons/drop.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: 400;
  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 .acc-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.45rem;
}

.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: var(--navy) !important;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

/* ******************************location ends********/

/* ******************************about starts********/

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

.about-main-content {
  margin: 4.5rem auto auto auto;
}

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

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

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

.overview-content {
  margin: auto auto auto 3rem;
}


/* ******************************about ends********/

/* ******************************contact ends********/

/* ******************************footer starts********/
footer {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.footer-qr {
  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: 5rem;
}

.qr-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 3rem 0;
}

.qr-content .qr-img {
  width: 100%;
  height: 100%;
}

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

.qr-content .qr-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--navy);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  font-family: var(--Montserrat);
}

.disc {
  color: var(--text-dark);
  margin: 1rem 0;
  font-size: 0.95rem;
  text-align: center;
  width: 80%;
  margin: auto;
}

.disc strong {
  font-size: 1.035rem;
  color: var(--navy);
  text-transform: uppercase;
  font-family: var(--Montserrat);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-link {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-link:hover {
  color: var(--light);
  text-decoration: underline;
}

.footer-divider {
  color: rgba(154, 132, 86, 0.4);
  font-size: 0.9rem;
}

/* Legal Modals (Disclaimer & Privacy Policy) */
.legal-modal-content {
  background: var(--bg-light);
  border: none;
  border-radius: 12px;
  max-height: 85vh;
}

.legal-modal-header {
  background: var(--navy);
  border-radius: 12px 12px 0 0;
  padding: 1.25rem 1.75rem;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-modal-header .modal-title {
  color: var(--gold-light);
  font-family: var(--Playfair);
  font-size: 1.4rem;
  font-weight: 600;
}

.legal-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0.25rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.legal-modal-close:hover {
  color: var(--light);
}

.legal-modal-body {
  padding: 2rem 2.25rem;
  color: var(--text-color);
  font-size: 0.92rem;
  line-height: 1.75;
  max-height: 65vh;
  overflow-y: auto;
}

.legal-modal-body p {
  margin-bottom: 1rem;
}

.legal-modal-body h6 {
  font-family: var(--Playfair);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem 0;
}

.legal-modal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-modal-body ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.legal-modal-body strong {
  color: var(--navy);
}

.legal-modal-body::-webkit-scrollbar {
  width: 6px;
}

.legal-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.legal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(154, 132, 86, 0.3);
  border-radius: 10px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(154, 132, 86, 0.5);
}

.footer-copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}

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


/* ******************************footer ends********/

/************* vikas css ************/

.custom-modal-content {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0.5rem 0.5rem 0.5rem;
  background: var(--bg-light);
  border: 2px solid var(--navy);
}

.modal-logo {
  width: 120px;
  max-width: 100%;
  margin: 3rem auto 1rem auto;
}

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

.modal-close {
  position: absolute;
  top: 3%;
  width: 48px;
  height: 48px;
  right: 3%;
  cursor: pointer;
}

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

.fixed-button {
  position: fixed;
  display: block;
  right: 1.5%;
  bottom: 2%;
  gap: 0.6rem;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}

/* thank you css */

section.section-thankyou {
  height: calc(85vh - 75px);
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.thankyou-title {
  text-align: center;
  font-family: var(--Montserrat);
  margin: 0.35rem 0 0 0;
  font-weight: 500;
}

.thankyou-subtitle {
  text-align: center;
  font-family: var(--Montserrat);
  font-weight: 400;
  text-wrap: balance;
  opacity: 0.85;
  margin: 0.5rem 0 0 0;
}

.go_txt {
  font-size: 15px;
  color: #000;
  color: var(--light);
  background-color: var(--navy) !important;
  border-radius: 3.125rem;
  font-family: var(--Montserrat);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  margin: 15px auto 0;
}

/*********** media query *********/

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

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

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

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

  .logo {
    gap: 0.65rem;
  }

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

  .logo-img-2 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 0px;
    display: none;
  }

  .overview-form form {
    width: 100%;
  }


}

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

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

  .menu {
    display: block;
  }

  .navLinks {
    display: none;
  }

  .custom-visible {
    display: none;
  }



  .section-heading .section-subtitle {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }


  .config-about-txt .config-title {
    font-size: 2.45vw;
  }


  /* **************Footer  starts******/
  .disc {
    width: 100%;
  }


  /* **************Footer  ends******/
}

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

  /* **************Footer  starts******/
  .disc {
    width: 100%;
  }


  /* **************Footer  ends******/
}

@media only screen and (max-width: 991px) {
  .section-heading .section-title {
    font-size: 1.1rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-subtitle {
    font-size: 4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }


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

  .overview-form {
    padding: 2rem 1.5rem;
  }

  .overview-form form {
    width: 100%;
  }

  .overview-content {
    margin: auto auto auto 10rem;
  }



  .config-about-txt .config-title {
    font-size: 3.5vw;
  }


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




  /* ***********About Starts*********** */
  .overview-content {
    margin: unset;
  }


  /* **************About Ends********* */
  /* **************Footer  starts******/
  .disc {
    width: 100%;
  }


  /* **************Footer  ends******/

}

@media only screen and (max-width: 767px) {
  .logo-img {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 200px;
    max-width: 100%;
    position: relative;
  }

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

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

  .section-heading .section-subtitle {
    font-size: 5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

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


  .config-about-img {
    height: 45dvh;
  }

  .config-about-img::after {
    width: 90px;
    height: 90px;
  }

  .config-about-txt .config-title {
    font-size: 4.25vw;
  }

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

  .gal-carousel .owl-nav {
    position: relative;
    top: unset;
    transform: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto;
  }

  .gal-carousel .owl-nav .owl-prev {
    position: relative;
    left: unset;
  }

  .gal-carousel .owl-nav .owl-next {
    position: relative;
    right: unset;
  }

  /* *********gallery mobile view starts here****** */
  .custom-nav-tabs .nav-item.show .custom-nav-link,
  .custom-nav-tabs .custom-nav-link.active {
    font-size: 0.9rem;
  }

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


  /* ***********About Starts*********** */
  .overview-content {
    margin: unset;
  }


  /* **************About Ends********* */

  /* **************Footer  starts******/
  .disc {
    width: 100%;
  }


  /* **************Footer  ends******/

  .offcanvas-link {
    font-size: 4vw;
  }
}

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

  .logo-img-1 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 79px;
  }

  .logo-img-2 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 0px;
    display: none;
  }

  .scrolled .logo-img-1 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 79px;
  }

  .scrolled .logo-img-2 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 0px;
    display: none;
  }

  .section-title.pattern::after {
    left: -10%;
    width: 1.5rem;
    height: 1.5rem;
  }

  .section-title.pattern::before {
    right: -10%;
    width: 1.5rem;
    height: 1.5rem;
  }

  .offcanvas-links {
    gap: 1.75rem;
  }

  .offcanvas-link {
    font-size: 4.5vw;
  }

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

  .offcanvas-close {
    width: auto;
    height: auto;
  }

  .section-heading .section-subtitle {
    font-size: 5.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-form {
    padding: 2rem 1.25rem;
  }

  .overview-form form {
    width: 100%;
  }

  .config-content {
    width: 90%;
  }

  .overview-subcontent .overview-subcontent-txt {
    font-size: 0.85rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }


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

  .qr-content .qr-txt {
    font-size: 0.85rem;
  }




  .config-about-txt .config-title {
    font-size: 5.5vw;
  }



  .offcanvas-logo .logo-img {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 90px;
  }
}

@media only screen and (max-width: 450px) {
  .btn-middle {
    width: 55px;
    height: 55px;
  }

  .mobile-fixed-content .btn-fixed {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top: -7px;
    font-size: 0.825rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.4rem 0.5rem;
  }

  .mobile-fixed-content {
    width: 88%;
  }

  .btn-middle img {
    width: 32px;
    height: 32px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .btn-middle-content {
    top: 16px;
  }

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

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

@media only screen and (max-width: 350px) {
  .footer-qr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .qr-content .qr-img {
    width: 60px;
    height: 60px;
  }

  .qr-content .qr-txt {
    font-size: 0.785rem;
  }

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

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

/* ======== HOMELAND GLOBAL PARK - NEW SECTIONS ======== */

/* Retail Section */
.section-retail {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
  background: var(--navy);
  overflow: hidden;
}

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

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

.section-retail .section-heading .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.retail-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.d-md-grid {
  display: none !important;
}

@media (min-width: 768px) {
  .d-md-grid {
    display: grid !important;
  }
}

/* Retail mobile swiper */
.retail-swiper {
  padding-bottom: 2.5rem;
}

.retail-swiper .swiper-slide {
  height: auto;
}

.retail-swiper .retail-card {
  height: 100%;
}

.retail-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(154, 132, 86, 0.4);
  opacity: 1;
}

.retail-pagination .swiper-pagination-bullet-active {
  background: var(--gold-light);
  width: 28px;
  border-radius: 5px;
}

/* Offices mobile swiper */
.offices-swiper {
  padding-bottom: 2.5rem;
}

.offices-swiper .swiper-slide {
  height: auto;
}

.offices-swiper .office-card {
  height: 100%;
}

.offices-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(154, 132, 86, 0.3);
  opacity: 1;
}

.offices-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* Highlights mobile swiper */
.highlights-swiper {
  padding-bottom: 2.5rem;
}

.highlights-swiper .swiper-slide {
  height: auto;
}

.highlights-swiper .highlight-item {
  height: 100%;
}

.highlights-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(154, 132, 86, 0.4);
  opacity: 1;
}

.highlights-pagination .swiper-pagination-bullet-active {
  background: var(--gold-light);
  width: 28px;
  border-radius: 5px;
}

.retail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(154, 132, 86, 0.3);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.retail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.retail-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.retail-card h3 {
  font-family: var(--Playfair);
  color: var(--gold-light);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.retail-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  font-family: var(--Montserrat);
}

.retail-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--navy);
  background: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--Montserrat);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
}

.retail-card .card-cta:hover {
  background: var(--light);
  color: var(--navy);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(154, 132, 86, 0.3);
}

/* Presidential Offices Section */
.section-offices {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.office-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.office-card {
  background: var(--light);
  border: 1px solid rgba(154, 132, 86, 0.2);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
}

.office-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.office-card h3 {
  font-family: var(--Playfair);
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.office-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.7;
}

.office-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  color: var(--light);
  background: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--Montserrat);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
}

.office-card .card-cta:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(10, 22, 40, 0.2);
}

/* Highlights Section */
.section-highlights {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
  background: var(--navy);
}

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

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

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(154, 132, 86, 0.2);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.highlight-item:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(154, 132, 86, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  transition: all 0.4s ease;
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-light);
  transition: all 0.4s ease;
}

.highlight-item:hover .highlight-icon {
  background: var(--gold);
  transform: translateY(-3px);
}

.highlight-item:hover .highlight-icon svg {
  color: var(--navy);
}

.highlight-item h4 {
  color: var(--gold-light);
  font-family: var(--Playfair);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.highlight-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Configuration Section - updated for commercial */
.config-floor-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.config-floor-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background: var(--light);
  border: 1px solid rgba(154, 132, 86, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.config-floor-item:hover {
  border-color: var(--gold);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.config-floor-item .floor-label {
  font-family: var(--Playfair);
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 600;
}

.config-floor-item .floor-type {
  font-family: var(--Montserrat);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Form styling updates */
/* Footer update */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
}

footer .disc {
  color: rgba(255, 255, 255, 0.6);
}

footer .disc strong {
  color: var(--gold-light);
}

footer hr {
  border-color: rgba(154, 132, 86, 0.3);
}

footer .created {
  color: rgba(255, 255, 255, 0.5);
}

footer p {
  color: rgba(255, 255, 255, 0.6);
}

/* Accordion color updates */
.accordion-button {
  color: var(--dark) !important;
  font-family: var(--Montserrat);
}

/* Gallery overlay update */
.gal-carousel .owl-item:not(.active.center) .gal_image::after {
  background: linear-gradient(0deg, rgba(245, 243, 239, 0.72) 0%, rgba(245, 243, 239, 0.72) 100%);
}

.owl-nav button {
  background: var(--navy) !important;
}

/* Config nav updates */
.config-nav .custom-nav .nav-item .nav-link {
  border-color: var(--navy);
  color: var(--navy);
  font-family: var(--Montserrat);
  font-weight: 500;
}

.config-nav .custom-nav .nav-item .nav-link.active {
  background: var(--navy);
  color: var(--light);
}

.config-nav .custom-nav .nav-item .nav-link:hover {
  background: rgba(10, 22, 40, 0.08);
}

.custom-nav-tabs .nav-item.show .custom-nav-link,
.custom-nav-tabs .custom-nav-link.active {
  background-color: var(--navy) !important;
  color: var(--light) !important;
}

.custom-nav-tabs .custom-nav-link {
  color: var(--navy) !important;
  border-color: var(--navy) !important;
}

.config-about-txt .config-title {
  color: var(--navy) !important;
  font-family: var(--Playfair) !important;
}

/* Scroll indicator */
.toggle-up {
  background: var(--navy) !important;
}

/* ======== NEW LOCATION SECTION ======== */
.section-location-new {
  padding: 3rem 0;
}

.loc-tabs {
  margin: 2.5rem 0 2rem 0;
  display: flex;
  justify-content: center;
}

.loc-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.loc-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(10, 22, 40, 0.15);
  border-radius: 100px;
  background: transparent;
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--Montserrat);
  cursor: pointer;
  transition: all 0.3s ease;
}

.loc-tab-btn svg {
  opacity: 0.6;
  transition: all 0.3s ease;
}

.loc-tab-btn.active {
  background: #0a1628;
  color: var(--light);
  border-color: #0a1628;
}

.loc-tab-btn.active svg {
  opacity: 1;
  stroke: var(--light);
}

.loc-tab-btn:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold);
}

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

.loc-list-card {
  background: var(--light);
  border-radius: 12px;
  border: 1px solid rgba(10, 22, 40, 0.08);
  padding: 1.5rem 0;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.loc-list {
  display: flex;
  flex-direction: column;
}

.loc-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.75rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  transition: all 0.25s ease;
}

.loc-list-item:last-child {
  border-bottom: none;
}

.loc-list-item:hover {
  background: rgba(154, 132, 86, 0.05);
}

.loc-name {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.loc-name::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.loc-dist {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  padding-left: 1rem;
}

.loc-map-card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

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

.loc-map-card a {
  display: block;
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .loc-tab-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
  }
}

@media only screen and (max-width: 576px) {
  .loc-tab-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.78rem;
    gap: 0.35rem;
  }

  .loc-tab-btn svg {
    width: 14px;
    height: 14px;
  }

  .loc-list-item {
    padding: 0.75rem 1.25rem;
  }

  .loc-name {
    font-size: 0.88rem;
  }

  .loc-map-card {
    min-height: 280px;
  }
}

/* ======== NEW CONTACT SECTION ======== */
.section-contact-new {
  padding: 3rem 0;
  background: var(--bg-light);
}

.contact-card {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

.contact-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-card-left {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(154, 132, 86, 0.15);
}

.contact-card-title {
  font-family: var(--Playfair);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 1rem;
}

.contact-card-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  /* margin-bottom: 2rem; */
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.contact-info-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.contact-card-right {
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
}

.contact-card-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card-form .custom-input {
  border: 1px solid rgba(154, 132, 86, 0.35);
  color: var(--light);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.9rem 1.15rem;
  font-size: 0.95rem;
  border-radius: 8px;
  width: 100%;
}

.contact-card-form .custom-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(154, 132, 86, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card-form .custom-input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.875rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
}

.contact-card-form .form-check-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  cursor: pointer;
}

.contact-card-form .form-check-input {
  border-color: rgba(154, 132, 86, 0.5);
}

.contact-card-form .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.contact-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 8px;
  background: var(--gold);
  color: var(--light);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--Montserrat);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(154, 132, 86, 0.3);
}

/* Responsive for new sections */
@media only screen and (max-width: 991px) {
  .retail-cards {
    grid-template-columns: 1fr;
  }

  .office-cards {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card-inner {
    grid-template-columns: 1fr;
  }

  .contact-card-left {
    border-right: none;
    border-bottom: 1px solid rgba(154, 132, 86, 0.15);
    padding: 2.5rem 2rem;
  }

  .contact-card-right {
    padding: 2.5rem 2rem;
  }
}

@media only screen and (max-width: 576px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .config-floor-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .contact-card-left {
    padding: 2rem 1.5rem;
  }

  .contact-card-right {
    padding: 2rem 1.5rem;
  }

  .contact-card-title {
    font-size: 1.6rem;
  }

  .section-contact-new {
    padding: 3rem 0;
  }
}