/* =====================================================
   ARIHANT AALISHAN — all-custom.css
   Bootstrap 5 compatible version
   All original custom styles kept intact.
   Bootstrap conflicts neutralized via targeted overrides.
   ===================================================== */

/* ---------- FONTS ---------- */
@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/92zatBhPNqw73oTd4g_1.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/92zatBhPNqw73oTd4g_1.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- BASE RESETS (override Bootstrap where needed) ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Jost, sans-serif !important;
  color: #000;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Jost;
  font-weight: 400;
}

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

p {
  margin-bottom: 20px;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

a {
  color: #000;
  text-decoration: none;
  outline: 0;
}

a:hover {
  color: #75113a;
  text-decoration: none;
}

a:active,
a:focus {
  outline: 0;
}

button:focus {
  outline: 0;
}

/* Bootstrap container override — use original layout logic */
.container {
  z-index: 1;
  position: relative;
}

/* ---------- TRANSITIONS ---------- */
a,
button,
.theme-btn span,
.gallery-img,
.accordion-item.active,
.close,
.close1 {
  -webkit-transition: .3s linear;
  -moz-transition: .3s linear;
  -ms-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

/* ---------- UTILITIES ---------- */
.center,
.text-center-custom {
  text-align: center;
}

.white-text {
  color: #fff !important;
}

.white-bg {
  background-color: #fff;
}

.gray-bg {
  background-color: #f8f8f8;
}

.overflow-visible {
  overflow: visible !important;
}

.full-width {
  width: 100%;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-60 {
  margin-bottom: 60px;
}

/* ---------- HEADER ---------- */
header {
  position: fixed;
  z-index: 9999;
  padding: 10px 40px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
  transition: transform 3s cubic-bezier(.25, .1, .25, 1);
}

#header.sticky {
  box-shadow: 0 0 12px rgb(0 0 0 / 10%);
}

.theme-logo img {
  max-width: initial;
  width: auto;
  display: block;
  height: 50px;
  min-width: 110px;
}

.theme-logo-2 {
  max-width: 280px;
  margin-left: auto;
}

.col-header {
  text-align: left;
}

.col-header:last-child {
  text-align: right;
}

/* Nav */
.header-primary-menu-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#header1__menu1 {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header__menu-item {
  display: inline-block;
  padding: 8px 6px;
}

.header__menu-link {
  font-size: 15px;
  color: #000;
  transition: .3s linear;
}

.header__menu-link:hover,
.header__menu-link.active {
  color: #75113a;
}

#header-primary-menu {
  padding-right: 40px;
}

/* Banner offset */
#section-banner,
.section-cms {
  margin-top: 82px;
}

/* ---------- SECTION BASE ---------- */
.section,
section {
  position: relative;
  padding-top: 39px;
  padding-bottom: 39px;
  overflow: hidden;
}

/* ---------- SECTION TITLES ---------- */
.section-title {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.section-gallery{
      background-image: url(../images/theme-bg.webp) !important;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-title h1,
.section-title h2 {
  display: inline-block;
  font-size: 32px;
  line-height: 42px;
  color: #75113a;
  margin: 0;
  padding-bottom: 6px;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
}

/* .section-title h1::before,
.section-title h2::before {
  position: absolute;
  content: "";
  background-image: url('../images/title-element.svg');
  height: 100%;
  width: 100%;
  top: 100%;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
} */
.title-tagline {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 400;
  margin-top: 40px;
  display: block;
}

/* ---------- THEME BG ---------- */
.theme-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-configuration {
  background-image: url('../images/theme-bg.png')
}

.nowebp .theme-bg {
  background-image: url('../images/theme-bg.png');
}

/* .webp .theme-bg { background-image: url('../images/theme-bg.webp'); } */

/* ---------- THEME PADDING ---------- */
.theme-padding {
  padding-left: 200px;
  padding-right: 200px;
}

/* ---------- THEME BUTTON ---------- */
.theme-btn {
  display: inline-block;
  font-family: Jost, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  border: 0;
  color: #0b1624;
  padding: 8px 30px;
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
  transition: .3s linear;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.theme-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: .3s linear;
}

.theme-btn:hover::before {
  width: 100%;
  background-color: #75113a;
}

.theme-btn:hover span {
  color: #fff;
}

.theme-btn span {
  transition: .3s linear;
}

.theme-btn.white-btn {
  background: #fff;
  color: #001421;
  border: 1px solid #fff;
}

.theme-btn.white-btn:hover {
  color: #fff;
}

.configuration-btn.theme-btn,
.plan-btn.theme-btn {
  background-color: #75113a;
  color: #fff;
}

/* ---------- OVERVIEW SECTION ---------- */
.overview-desc {
  padding-left: 40px;
}

.overview-cols {
  justify-content: center;
}

/* ---------- CONFIGURATION SECTION ---------- */
.configuration-cols {
  justify-content: center;
}

.configuration-col-inner {
  text-align: center;
  padding: 70px;
  position: relative;
  background-color: #fff;
  border: 1px solid #75113a;
}

.configuration-col-inner::before {
  position: absolute;
  content: "";
  height: 60%;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../images/left-element.svg');
}

.configuration-col-inner p {
  margin-bottom: 30px;
}

/* ---------- AMENITIES SECTION ---------- */
.amenities-text {
  text-transform: uppercase;
  color: #75113a;
  margin-top: 10px;
}

/* ---------- CONNECTIVITY SECTION ---------- */
.section-connectivity {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}

.connectivity-col-inner {
  padding-left: 100px;
}

.distance-col-inner img {
  height: 50px;
  width: auto;
  margin-bottom: 10px;
}

.distance-col-inner span:last-child {
  display: block;
  font-weight: 500;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
  color: #fff;
}

.dark p,
.dark span {
  color: #000;
}

/* ---------- GALLERY SECTION ---------- */
#gallery-slider .splide__slide.is-active.is-visible .gallery-img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  transition: .3s linear;
  z-index: 99;
}

#gallery-slider .splide__track {
  padding-top: 65px;
  padding-bottom: 65px;
}

/* ---------- PLANS SECTION ---------- */
.floorplans-tabs .theme-block {
  border: 1px solid #75113a;
}

.master {
  max-width: 500px;
  margin: 0 auto;
}

.floorplans-details .title-tagline {
  margin: 30px 0;
}

.plan-inquire-btn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  width: 100%;
  max-width: fit-content;
  opacity: 1;
  visibility: visible;
  z-index: 9;
  transition: .3s linear;
  background: #fff;
  padding: 10px 20px;
  font-weight: 600;
  text-align: center;
}

/* ---------- TAB LIST ---------- */
.tab-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  transition: .3s linear;
}

.tab-list .tab {
  position: relative;
  display: block;
  line-height: 1;
  padding: 14px 24px;
  text-transform: uppercase;
  width: 200px;
  background: 0 0;
  transition: .3s linear;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.tab-list .tab.is-active,
.tab-list .tab:hover {
  background: unset;
  border-bottom: 1px solid #75113a;
}

.tab-list .tab a {
  color: #7c7c7c;
  transition: .3s linear;
}

.tab-list .tab.is-active a,
.tab-list .tab:hover a {
  color: #75113a;
  transition: .3s linear;
}

/* ---------- THEME BLOCK ---------- */
.theme-block {
  position: relative;
  overflow: hidden;
}

.theme-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #75113a;
  z-index: 1;
  opacity: 0;
  transition: .3s linear;
}

.theme-block:hover:before {
  opacity: .5;
}

.theme-block .theme-block-icon {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 9;
}

.theme-block .theme-block-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.theme-block:hover .theme-block-icon {
  opacity: 1;
}

/* image blur animation */
.theme-block.theme-img-animation {
  overflow: hidden;
}

.theme-img-animation>picture>img {
  filter: blur(12px);
}

.theme-img-animation.eligibility>picture>img {
  filter: blur(0px);
}

/* image label pseudo-elements */
.actual-flat-image,
.actual-image,
.actual-lobby-image,
.artistic-impression,
.stock-image {
  position: relative;
}

.actual-flat-image::after,
.actual-image::after,
.actual-lobby-image::after,
.artistic-impression::after,
.stock-image::after {
  content: "Artistic Impression";
  display: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: auto;
  height: auto;
  max-width: fit-content;
  z-index: 9;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-shadow: 1px 1px #000;
}

.stock-image::after {
  content: "Stock Image";
}

.actual-image::after {
  content: "Actual Image";
}

.actual-flat-image::after {
  content: "Actual Flat Image";
}

.actual-lobby-image::after {
  content: "Actual Lobby Image";
}

/* ---------- ABOUT DEVELOPER ---------- */
.about-developer-inner .title-tagline {
  margin: 30px 0;
}

.developer-logo {
  max-width: 180px;
  margin: 0 auto;
}

.developer-text {
  max-width: 820px;
  margin: 0 auto;
}

.about-left-element {
  position: absolute;
  left: 0;
  bottom: 5px;
  max-width: 130px;
}

.about-right-element {
  position: absolute;
  right: 0;
  top: 5px;
  max-width: 130px;
}

/* ---------- MODAL ---------- */
.theme-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  outline: 0;
  opacity: 0;
  visibility: hidden;
}

html:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
}

html.is-active:before,
html.is-active-1:before {
  opacity: .9;
  visibility: visible;
}

.theme-modal.is-active {
  visibility: visible;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99999;
}

.theme-modal-background {
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: .3s linear;
}

.theme-modal[style="visibility: visible;"] .theme-modal-background {
  opacity: .9;
  visibility: visible;
}

.theme-modal-card {
  position: relative;
  top: calc(50% + 30px);
  max-width: 600px;
  width: 100%;
  padding: 30px;
  max-height: inherit;
  background-color: #75113a;
  margin: 0 auto;
  transform: translateY(-50%);
  transition: .3s linear;
}

.theme-modal.is-active .theme-modal-card {
  top: 50%;
}

.theme-modal[style="visibility: visible;"] .theme-modal-card {
  transform: translate(0, -50%);
  opacity: 1;
}

.theme-modal-card-body {
  border: 1px solid #fff;
  position: relative;
  overflow: visible;
  padding: 30px;
  background-color: transparent;
}

.modal-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.close,
.close1 {
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
  opacity: 1;
  border: 1px solid #ffffff60;
  background-color: #75113a;
  position: absolute;
  top: -22px;
  right: -22px;
  margin: 0 auto;
  z-index: 10;
  cursor: pointer;
  transition: .3s linear;
}

.close1:hover,
.close:hover {
  background-color: #a02b5b;
  opacity: 1;
}

/* ---------- SM FORM CONTROLS ---------- */
.col-form {
  position: relative;
}

.sm-form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 15px 15px 15px 0;
  background-color: transparent;
  border-radius: 0;
  resize: none;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid #fff;
}

.sm-form-control::-webkit-input-placeholder {
  color: #fff;
  font-family: Jost;
}

.sm-form-control:-ms-input-placeholder {
  color: #fff;
  font-family: Jost;
}

.sm-form-control::placeholder {
  color: #fff;
  font-family: Jost;
}

.error-msg1 {
  position: absolute;
  bottom: -12px;
  background: red;
  display: flex;
  line-height: 11px;
  color: #fff;
  font-size: 9px;
}

/* ---------- STICKY BOTTOM FORM ---------- */
.sticky-bottom-form {
  position: fixed;
  bottom: 3px;
  left: 0;
  padding: 10px 0 0 15px;
  width: 98%;
  z-index: 999;
  background: #75113a;
  max-width: 1344px;
  margin: 0 auto;
  right: 0;
  border: 1px solid #fff;
  /* border-bottom: 0; */
}

.sticky-bottom-form .col-form {
  position: relative;
  width: 20%;
  float: left;
  padding: 0 15px;
  margin: 0 0 10px !important;
}

.sticky-bottom-form .col-form .sm-form-control {
  padding: 10px 10px 10px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  line-height: 19px;
}

.sticky-bottom-form .col-form .sm-form-control::-webkit-input-placeholder {
  color: #fff;
  font-family: Jost;
}

.sticky-bottom-form .col-form .sm-form-control::placeholder {
  color: #fff;
  font-family: Jost;
}

.col-form-title {
  display: none;
}

/* ---------- STICKY FLOATING BUTTONS ---------- */
.sticky-btn-enquire {
  position: fixed !important;
  right: -125px;
  font-size: 14px !important;
  padding: 10px 15px !important;
  z-index: 999 !important;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
  width: 170px;
}

.sticky-btn--enquire {
  top: 350px;
  background-color: #75113a;
}

.sticky-btn--whatsapp {
  top: 396px;
  background-color: #75113a;
}

.sticky-btn--call {
  top: 442px;
  background-color: #75113a;
}

.sticky-btn-enquire::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: .3s linear;
}

.sticky-btn-enquire:hover::before {
  width: 100%;
  background-color: #75113a;
}

.sticky-btn-enquire:hover {
  right: 0 !important;
  color: #fff !important;
}

.sticky-btn--enquire:hover,
.sticky-btn--whatsapp:hover,
.sticky-btn--call:hover {
  background-color: #a02b5b;
}

.btn-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 20px;
}

.title-with-icon {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
}

/* ---------- SCROLL TO TOP ---------- */
.scrollToTopBtn {
  position: fixed;
  bottom: 74px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 89;
  opacity: 0;
  transform: translateY(100px);
  transition: .5s;
  border: 1px solid #fff;
  background-color: #75113a;
  color: #fff;
  border-radius: 100%;
}

.scrollToTopBtn:hover {
  background: #a02b5b;
}

.scrollToTopBtn.showBtn {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SPLIDE SLIDER ---------- */
.splide {
  visibility: hidden;
  padding: 0;
}

.splide__list {
  margin: 0 !important;
  padding: 0 !important;
  width: max-content;
  will-change: transform;
}

.splide.is-active .splide__list {
  display: flex;
}

.splide__slide {
  box-sizing: border-box;
  list-style-type: none !important;
  margin: 0;
  flex-shrink: 0;
}

.splide__slide img {
  vertical-align: bottom;
  width: 100%;
}

.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.splide__arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  padding: 17px;
  color: #fff;
  background-color: unset;
  border: 1px solid #75113a;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splide__arrow:hover {
  background-color: #75113a;
  color: #fff;
  opacity: 1;
}

.splide__arrow svg {
  fill: transparent;
  height: 45px;
  width: 45px;
  font-size: 24px;
}

.splide__arrow:hover svg path {
  stroke: #fff;
}

.splide__arrow--prev {
  left: 25px;
}

.splide__arrow--next {
  right: 25px;
}

.splide__arrow.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow.splide__arrow--next:disabled,
.splide__arrow.splide__arrow--prev:disabled {
  border: 1px solid #7c7c7c;
  pointer-events: none;
}

.splide__arrow.splide__arrow--next:disabled svg path,
.splide__arrow.splide__arrow--prev:disabled svg path {
  stroke: #7C7C7C;
}

.arrow-bottom.splide__arrows {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.arrow-bottom .splide__arrow {
  position: static;
  transform: unset;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.js-scroll {
  opacity: 0;
  transition: opacity .5s;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: 1s ease-in-out both fade-in;
}

.scrolled.fade-in-top {
  animation: 1s ease-in-out both fade-in-top;
}

.scrolled.fade-in-bottom {
  animation: 1s ease-in-out both fade-in-bottom;
}

.scrolled.fade-in-left {
  animation: 1s ease-in-out both fade-in-left;
}

.scrolled.fade-in-right {
  animation: 1s ease-in-out both fade-in-right;
}

@keyframes fade-in-left {
  0% {
    transform: translateX(-100px);
    opacity: 0
  }

  100% {
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes fade-in-right {
  0% {
    transform: translateX(100px);
    opacity: 0
  }

  100% {
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0
  }

  100% {
    transform: translateY(0);
    opacity: 1
  }
}

@keyframes fade-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0
  }

  100% {
    transform: translateY(0);
    opacity: 1
  }
}

@keyframes fade-in {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.delay1 {
  animation-delay: .1s !important;
}

.delay2 {
  animation-delay: .2s !important;
}

.delay3 {
  animation-delay: .3s !important;
}

.delay4 {
  animation-delay: .4s !important;
}

/* ---------- VIDEO SECTION ---------- */
#section-walkthrough {
  padding: 40px 20px !important;
  /* background-image: url(../images/theme-bg.webp);
  background-repeat: no-repeat;
  background-size: cover; */
  text-align: center;
  transition: 0.3s;
}
.section-about-developer{
      background-image: url(../images/theme-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

#videoThumbnail {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  cursor: pointer;
}

#videoThumbnail img {
  width: 100%;
  display: block;
}

#videoPlayBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: none;
  background: #c9a24a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0;
  font-size: 0;
}

#videoPlayBtn::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 3px;
}

#videoPlayBtn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(201, 162, 74, .5);
  animation: pulse 1.8s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

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

#videoModalOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, .6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

#videoPlayer {
  width: 100%;
  display: block;
}

/* ---------- FOOTER ---------- */
#footer {
  padding: 20px 0;
  background-color: #75113a;
  color: #fff;
}

#home #footer {
  padding: 30px 0;
}

.footer h3 {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #eb5c21;
}

.copyright-detail .small {
  font-size: 14px;
  color: #fff;
}

.copyright-detail a:hover {
  color: #fff;
}

.footer-menu li a {
  color: #c5c5c5;
  font-size: 14px;
}

.footer-menu li a:hover {
  color: #fff;
}

.site-office {
  margin-bottom: 20px;
}

.disclaimer-text {
  margin-bottom: 30px;
  font-size: 14px;
}

.footer-wrapper {
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
  padding-bottom: 50px;
}

.privacy-policy {
  margin-top: 10px;
}

.contact-us {
  margin-bottom: 20px;
  text-align: end;
}

.qr-code {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}

.qr-code-images {
  display: flex;
  gap: 10px;
}

.qr-code-img {
  max-width: 80px;
  flex: 0 0 80px;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
}

.footer-icon img {
  height: auto;
  width: 30px;
  transition: .3s linear;
}

.footer-icon img:hover {
  transform: scale(1.2);
  transition: .3s linear;
}

/* ---------- YBOX POPUP ---------- */
.yBoxOverlay {
  background: rgba(0, 0, 0, .5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transition: .5s;
}

.yBoxOverlay.active {
  visibility: visible;
  opacity: 1;
}

.yBoxFrame {
  background: #fff;
  max-width: calc(100% - 10px);
  max-height: calc(100vh - 10px);
  z-index: 10001;
  transition: .5s;
  transform: translate(0, 30px);
}

.yBoxOverlay.active .yBoxFrame {
  transform: translate(0, 0);
}

.closeYbox {
  background: 0 0/100% 100% #fff;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0;
  padding: 0;
  border: none;
  outline: 0;
  cursor: pointer;
  z-index: 3;
}

.closeYbox::after,
.closeYbox::before {
  content: '';
  background-color: #616161;
  width: 71%;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: .5s;
}

.closeYbox::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.yBoxImgZoom {
  width: 100%;
  max-height: 100%;
  overflow: hidden;
}

.yBoxFrame.yBoxImgWrap img.yBoxImg {
  max-width: calc(100vw - 50px);
  max-height: calc(100vh - 30px);
  vertical-align: top;
}

.yBoxFrame.yBoxImgWrap .yBoxNextImg,
.yBoxFrame.yBoxImgWrap .yBoxPrevImg {
  background: 0 0;
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  border: none;
  outline: 0;
  cursor: pointer;
  z-index: 2;
}

.yBoxFrame.yBoxImgWrap .yBoxNextImg {
  right: 0 !important;
  left: inherit;
}

.yBoxFrame.yBoxImgWrap .yBoxPrevImg {
  left: 0 !important;
  right: inherit;
}

.yBoxFrame.yBoxImgWrap .yBoxNextImg::after,
.yBoxFrame.yBoxImgWrap .yBoxPrevImg::after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  border-bottom: 3px solid rgba(255, 255, 255, .7);
  border-left: 3px solid rgba(255, 255, 255, .7);
}

.yBoxFrame.yBoxImgWrap .yBoxPrevImg::after {
  left: 50px;
  transform: translate(0, -50%) rotate(45deg);
}

.yBoxFrame.yBoxImgWrap .yBoxNextImg::after {
  right: 50px;
  left: inherit;
  transform: translate(0, -50%) rotate(-135deg);
}

.insertYboxAjaxHere {
  min-width: 150px;
  min-height: 23px;
  max-height: calc(100vh - 140px);
  overflow: auto;
  padding: 50px 19px 13px;
}

.yBoxFrame.yBoxImgWrap .insertYboxAjaxHere {
  padding: 10px;
  max-height: calc(100vh - 10px);
}

/* ---------- MENU RESPONSIVE (mobile nav) ---------- */
#home.insomenu-active #header-primary-menu {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
  z-index: 9998;
}

#home.insomenu-active #header1__menu1 {
  display: block !important;
}

#home.insomenu-active .header__menu-item {
  display: block;
  padding: 8px 0;
}

.menu-trigger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.menu-trigger span,
.menu-trigger::before,
.menu-trigger::after {
  content: '';
  display: block;
  height: 2px;
  background: #75113a;
  border-radius: 2px;
}

/* =====================================================
   BOOTSTRAP 5 OVERRIDES
   Prevent Bootstrap from breaking custom layout
   ===================================================== */

/* Reset Bootstrap's default box-model interference */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Bootstrap overrides for ul/li in nav */
#header1__menu1 li {
  list-style: none;
}

/* Bootstrap row negative margins don't affect slider */
.splide__list {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Remove Bootstrap's default button styles from theme buttons */
.theme-btn,
.configuration-btn.theme-btn,
.plan-btn.theme-btn {
  border-radius: 0 !important;
}

/* Prevent Bootstrap utility classes from overriding custom display rules for sliders */
.splide__slide {
  display: block !important;
}

.splide.is-active .splide__list {
  display: flex !important;
}

/* Bootstrap footer override — our footer has custom padding */
footer#footer {
  padding: 20px 0;
  background-color: #75113a;
}

/* Bootstrap columns — remove gutter interference on connectivity row */
.distance-cols .col-4 {
  padding: 8px;
}

/* Fix Bootstrap's default <a> color in footer */
#footer a,
#footer a:visited {
  color: #fff;
}

#footer a:hover {
  color: #eb5c21;
}

/* =====================================================
   RESPONSIVE OVERRIDES (Bootstrap breakpoints used)
   ===================================================== */

/* lg and below — collapse header nav */
@media screen and (max-width: 1216px) {
  .header-primary-menu-wrapper {
    display: block !important;
  }

  #header1__menu1 {
    display: none !important;
  }

  #header-primary-menu {
    padding-right: 0;
  }
}

/* md and below */
@media screen and (max-width: 991px) {
  .theme-padding {
    padding-left: 60px;
    padding-right: 60px;
  }

  .overview-desc {
    padding-left: 20px;
  }

  .connectivity-col-inner {
    padding-left: 40px;
  }

  .configuration-col-inner {
    padding: 40px 20px;
  }
}

/* sm and below */
@media screen and (max-width: 767px) {
  header {
    padding: 10px 15px;
  }

  .theme-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section,
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .title-tagline {
    font-size: 15px;
  }

  .overview-desc {
    padding-left: 0;
  }

  .connectivity-col-inner {
    padding-left: 15px;
  }

  .configuration-col-inner {
    padding: 30px 15px;
  }

  .configuration-col-inner p {
    margin-bottom: 20px;
  }

  .mb-80 {
    margin-bottom: 40px;
  }

  .mb-60 {
    margin-bottom: 30px;
  }

  /* sticky bottom form — collapse on mobile */
  .sticky-bottom-form .col-form {
    width: 100%;
    float: none;
  }

  .col-form-title {
    display: block;
    cursor: pointer;
    color: #fff;
    padding-bottom: 10px;
  }

  .col-form-title h3 {
    font-size: 16px;
    color: #fff;
    margin: 0;
  }

  /* sticky side buttons hidden on mobile except call */
  .sticky-btn--enquire,
  .sticky-btn--whatsapp {
    display: none !important;
  }

  /* Footer */
  .qr-code {
    justify-content: start;
  }

  .contact-us {
    text-align: left;
  }

  .footer-icons {
    justify-content: start;
  }

  /* distance cols — keep 3 col on mobile */
  .distance-cols .col-4 {
    padding: 6px 4px;
  }

  .distance-col-inner img {
    height: 35px;
  }

  .distance-col-inner span {
    font-size: 11px;
  }

  /* gallery padding */
  #gallery-slider .splide__track {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* about */
  .about-left-element,
  .about-right-element {
    display: none;
  }
}

/* xs */
@media screen and (max-width: 480px) {

  .section-title h1,
  .section-title h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .configuration-col-inner {
    padding: 25px 10px;
  }

  .tab-list .tab {
    width: 140px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .close,
  .close1 {
    top: -18px;
    right: -12px;
    width: 36px;
    height: 36px;
  }
}

/* Overview Start */
:root {
  --gold: #75113a;
  --gold-lt: #75113a;
  --gold-dk: #8A6D0F;
  --ink: #1A1610;
  --ink2: #2E2A22;
  --cream: #F8F4EE;
  --cream2: #EDE7DC;
  --stone: #6B6256;
  --white: #FFFFFF;
  --border: rgba(201, 162, 39, .22);
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'Outfit', sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}


/* ───────────────────────────────────────────
   SECTION SHELL
─────────────────────────────────────────── */
#section-overview {
  position: relative;
  padding: 40px 0 100px;
  /* background: var(--cream); */
  overflow: hidden;
}

/* Textured background grain */
#section-overview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.028'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}

/* Large decorative watermark number */
#section-overview::after {
  content: '01';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(200px, 22vw, 340px);
  font-weight: 700;
  color: rgba(201, 162, 39, .04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -10px;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ───────────────────────────────────────────
   SECTION LABEL
─────────────────────────────────────────── */
.overview-eyebrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 60px;
}

.overview-eyebrow .oe-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.overview-eyebrow .oe-text {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.overview-eyebrow .oe-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ───────────────────────────────────────────
   MAIN GRID
─────────────────────────────────────────── */
.overview-grid {
  position: relative;
  z-index: 1;
  /* display: grid;
  grid-template-columns: 420px 1fr; */
  /* gap: 0 80px; */
  align-items: center;
}

/* ───────────────────────────────────────────
   LEFT — IMAGE COLUMN
─────────────────────────────────────────── */
.ov-img-col {
  position: relative;
}

/* Floating gold badge behind image */
.img-accent-block {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.img-accent-block::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .25);
}

/* Image frame */
.overview-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.overview-img picture,
.overview-img img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.overview-img:hover img {
  transform: scale(1.04);
}

/* Gold border frame that peeks from behind */
.img-frame-border {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1.5px solid #75113a;
  z-index: 0.2;
  pointer-events: none;
  transition: all .5s var(--ease);
}

.ov-img-col:hover .img-frame-border {
  bottom: -12px;
  right: -12px;
  border-color: #75113a;
}

/* Floating stat card */
.img-stat-card {
  position: absolute;
  bottom: 36px;
  right: -40px;
  background: var(--ink);
  padding: 22px 28px;
  z-index: 3;
  min-width: 190px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.img-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}

.isc-num {
  font-family: var(--ff-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}

.isc-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: 5px;
}

/* Artistic impression tag */
.ai-tag {
  position: absolute;
  bottom: -30px;
  left: 0;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--stone);
}

/* ───────────────────────────────────────────
   RIGHT — CONTENT COLUMN
─────────────────────────────────────────── */
.ov-content-col {
  padding-top: 14px;
}

/* Main heading */
.main-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.main-title .title-accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

/* Title underline ornament */
.title-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.title-ornament .to-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.title-ornament .to-dia {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.title-ornament .to-line2 {
  width: 16px;
  height: 1px;
  background: rgba(201, 162, 39, .4);
}

/* Divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, transparent 100%);
  margin: 30px 0;
}

/* Features block */
.features-block {
  background: var(--white);
  border: 1px solid var(--cream2);
  padding: 36px 36px 30px;
  position: relative;
  overflow: hidden;
}

.features-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-lt), transparent);
}

/* Corner ornament */
.features-block::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  border-top: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  pointer-events: none;
}

.features-title {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .3px;
  line-height: 1.35;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cream2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.features-title .ft-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.features-title .ft-icon svg {
  fill: #fff;
  width: 16px;
  height: 16px;
}

/* Features list */
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px 11px 0;
  border-bottom: 1px solid rgba(237, 231, 220, .7);
  font-size: 13px;
  font-weight: 400;
  color: #000;
  line-height: 1.45;
  transition: color .25s, background .25s;
  cursor: default;
  position: relative;
}

.features-list li:nth-child(odd) {
  padding-right: 16px;
}

.features-list li:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid rgba(237, 231, 220, .7);
}

.features-list li:nth-last-child(1),
.features-list li:nth-last-child(2) {
  border-bottom: none;
}

.features-list li:hover {
  color: var(--ink);
  background: rgba(201, 162, 39, .04);
}

/* Check bullet */
.features-list li .fl-bullet {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all .25s;
}

.features-list li .fl-bullet svg {
  width: 9px;
  height: 9px;
  fill: var(--gold);
}

/* .features-list li:hover .fl-bullet {
  background: var(--gold);
  border-color: #000;
  color: #fff;
} */
.features-list li:hover .fl-bullet svg {
  fill: #fff;
}

/* CTA below features */
.features-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cream2);
}

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: background .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.btn-primary-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, .15), transparent);
  transition: left .5s;
}

.btn-primary-gold:hover::before {
  left: 100%;
}

.btn-primary-gold:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, .3);
}

.btn-primary-gold svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
  text-decoration: none;
  transition: color .25s, gap .25s;
}
.error {
    color: red !important;
}
.btn-ghost-link:hover {
  color: var(--gold);
  gap: 12px;
}

.btn-ghost-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

/* ───────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
─────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.revealed {
  opacity: 1 !important;
  /* transform: none !important;  */
}

/* Stagger helpers */
.d1 {
  transition-delay: .1s !important;
}

.d2 {
  transition-delay: .2s !important;
}

.d3 {
  transition-delay: .3s !important;
}

.d4 {
  transition-delay: .4s !important;
}

.d5 {
  transition-delay: .5s !important;
}

.d6 {
  transition-delay: .6s !important;
}

/* ───────────────────────────────────────────
   FEATURE ITEM ENTRANCE
─────────────────────────────────────────── */
.features-list li {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease),
    color .25s, background .25s;
}

.features-list.items-in li {
  opacity: 1;
  transform: none;
}

.features-list li:nth-child(1) {
  transition-delay: .05s;
}

.features-list li:nth-child(2) {
  transition-delay: .10s;
}

.features-list li:nth-child(3) {
  transition-delay: .15s;
}

.features-list li:nth-child(4) {
  transition-delay: .20s;
}

.features-list li:nth-child(5) {
  transition-delay: .25s;
}

.features-list li:nth-child(6) {
  transition-delay: .30s;
}

.features-list li:nth-child(7) {
  transition-delay: .35s;
}

.features-list li:nth-child(8) {
  transition-delay: .40s;
}

.features-list li:nth-child(9) {
  transition-delay: .45s;
}

/* ───────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .overview-grid {
    grid-template-columns: 360px 1fr;
    gap: 0 50px;
  }

  .img-stat-card {
    right: -20px;
  }
}

@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 49px 0;
  }

  .ov-img-col {
    max-width: 480px;
  }

  .img-stat-card {
    right: 20px;
  }

  .img-frame-border {
    right: -14px;
    bottom: -14px;
  }

  .main-title {
    font-size: clamp(32px, 7vw, 48px);
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .features-list li:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .features-list li:nth-last-child(1) {
    border-bottom: none;
  }

  .features-list li:nth-last-child(2) {
    border-bottom: 1px solid rgba(237, 231, 220, .7);
  }
}

@media (max-width: 600px) {
  #section-overview {
    padding: 25px 0 30px;
  }

  .container {
    padding: 0 20px;
  }

  .img-accent-block {
    width: 120px;
    height: 120px;
    top: -16px;
    left: -16px;
    display: none !important;
  }

  .overview-img picture,
  .overview-img img {
    height: 400px;
  }

  .features-block {
    padding: 24px 20px 20px;
  }

  .features-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .img-stat-card {
    bottom: 24px;
    right: 10px;
    padding: 16px 20px;
    min-width: 150px;
  }

  .isc-num {
    font-size: 32px;
  }
}

/* Location Map */

.premium-location {
  padding: 39px 0;
  overflow: hidden;
  /* background-image: url(../images/theme-bg.webp);
  background-repeat: no-repeat;
  background-size: cover; */
}
.section-floorplans{
      background-image: url(../images/theme-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

/* LEFT IMAGE */

.location-map {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  min-height: 700px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

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

.location-tag {
  position: absolute;
  top: 35px;
  left: 35px;
  z-index: 2;
}

.location-tag h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #ff2d55;
  font-weight: 600;
  margin-bottom: 10px;
}

.location-tag .line {
  width: 160px;
  height: 4px;
  background: #6b7280;
  border-radius: 30px;
}

/* RIGHT CONTENT */

.location-content {
  /* padding-left:60px; */
}

.section-title {
  /* margin-bottom:45px; */
  text-align: center;
}

.section-title h3 {
  font-size: 46px;
  color: #214f75;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 18px;
}

.section-title .underline {
  width: 220px;
  height: 4px;
  background: #ff2d55;
  margin: auto;
  border-radius: 30px;
}

/* ACCORDION */

.premium-accordion .accordion-item {
  border: none;
  margin-bottom: 4px;
  border-radius: 20px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.premium-accordion .accordion-button {
  background: #75113a;
  border: none;
  padding: 5px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  box-shadow: none !important;
}

.premium-accordion .accordion-button:not(.collapsed) {
  background: #75113a;
  color: #fff;
}

.premium-accordion .accordion-button::after {
  filter: invert();
}

.premium-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}

.accordion-icon {
  width: 39px;
  height: 39px;
  /* background: rgba(255, 45, 85, 0.12); */
  color: #ff2d55;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
}

.premium-accordion .accordion-body {
  padding: 13px 30px;
  background: #fff;
}

.connectivity-img {
  border: 1.5px solid #75113a;
}

.location-list {
  padding-left: 18px;
  margin-bottom: 0;
  text-align: start;
}

.location-list li {
  /* margin-bottom:12px; */
  color: #555;
  font-size: 15px;
}

@media(max-width:991px) {

  .location-content {
    padding-left: 0;
    margin-top: 12px;
  }

  .section-title h3 {
    font-size: 34px;
  }

  .location-map {
    min-height: 500px;
  }
}

@media(max-width:576px) {

  .location-tag h2 {
    font-size: 28px;
  }

  .section-title h3 {
    font-size: 28px;
  }

  .premium-accordion .accordion-button {
    font-size: 16px;
    padding: 5px 9px;
  }

  .accordion-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

@media (max-width:767px) {

 
.reveal-left {
    opacity: 0;
    transform: translateX(-11px);
    transition: opacity 1s var(--ease), transform .75s var(--ease);
}
  

  .theme-modal-card {
    max-width: 100% !important;
  }
}
@media (max-width:767px){

  .buttons-floating{
    position: fixed;
    left: 0;
    bottom: env(safe-area-inset-bottom);
    width: 100%;
    display: flex;
    z-index: 99999;
    padding-bottom: env(safe-area-inset-bottom);
  }
.elementssn{
margin-bottom: -21px !important;
}
  .buttons-floating .sticky-btn-enquire{
    position: static;
    flex:1;
    display:flex !important;
    align-items:center;
    justify-content:center;
    gap:5px;
    padding:14px 8px;
    margin:0;
    border-radius:0;
    top:auto !important;
  }

  .buttons-floating .sticky-btn-enquire span{
    font-size:12px;
  }
.elementss{
    text-align: center;
    margin: 0 auto;
}
  .buttons-floating .btn-icon{
    width:20px !important;
  }

  /* body{
    padding-bottom:80px;
  } */
}

