@font-face {
  font-family: "Poppins";
  font-weight: 500;
  font-style: normal;
  src: url(../fonts/Poppins/Poppins-Medium.ttf);
}

@font-face {
  font-family: "Gilda Display";
  font-weight: 500;
  font-style: normal;
  src: url(../fonts/Gilda_Display/GildaDisplay-Regular.ttf);
}

@font-face {
  font-family: "Sansation";
  font-weight: 500;
  font-style: normal;
  src: url(../fonts/Sansation/Sansation-Regular.ttf);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  overflow-x: hidden;
}

.section-pading {
  padding: 50px 0px;
}

/* header css start */

.nav-custom {
  background: rgb(255 255 255) !important;
  backdrop-filter: blur(10px);
  position: fixed;
  z-index: 99999;
  width: 100%;
  padding: 4px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-logo img {
  height: 51px;
  width: auto;
}

.nav-toggler {
  border: none;
  background: #0b4033;
  color: #fff;
  font-size: 1.2rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-toggler:focus {
  box-shadow: none;
  outline: none;
}

.nav-toggler:hover {
  background: rgba(255, 255, 255, 0.25);
}

.nav-links {
  gap: 5px;
  align-items: center;
}

.nav-custom .nav-link {
  color: #0b4033 !important;
  font-family: Poppins, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: capitalize;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-custom .nav-link:hover,
.nav-custom .nav-link.active {
  color: #0b4033 !important;
  background: rgb(255 255 255 / 83%);
}

.nav-custom .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #0b4033;
  border-radius: 2px;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0b4033;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  margin-left: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta-btn i {
  font-size: 0.75rem;
}

.nav-cta-btn:hover {
  background: #fff;
  color: #0b4033;
  box-shadow: 0 4px 15px rgba(74, 144, 217, 0.3);
}

/* header css end */

/* Hide navbar & floating buttons behind FancyBox when lightbox is open */
.fancybox__container {
  z-index: 999999 !important;
}

/* overview section start */

.over-main-text {
  color: #0b4033;
  font-family: "Gilda Display";
  font-size: 3.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 4%;
  /* 2.4px */
  text-underline-offset: 25%;
  /* 15px */
  text-underline-position: from-font;
  text-transform: uppercase;
  padding-top: 50px;
}


.overview-text {
  color: #222;
  font-family: Sansation;
  font-size: 0.833vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
  /* 187.5% */
  text-transform: capitalize;
  padding-top: 35px;
  padding-right: 50px
}

.over-download-button {
  color: #fff;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  border: 2px solid #0b4033;
  background-color: #0b4033;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.over-download-button:hover {
  background-color: #0b4033;
  border-color: #0b4033;
}

/* Overview Form Card */
.ov-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 40px rgba(27, 15, 107, 0.12);
  border-top: 4px solid #0b4033;
}

.ov-form-header {
  text-align: center;
  margin-bottom: 25px;
}

.ov-form-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4033, #0b4033);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.ov-form-icon i {
  color: #fff;
  font-size: 1.3rem;
}

.ov-form-title {
  color: #0b4033;
  font-family: "Gilda Display";
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.ov-form-subtitle {
  color: #888;
  font-family: Sansation, sans-serif;
  font-size: 0.85rem;
  margin: 0;
}

.ov-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ov-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #e0e5ee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  flex-wrap: wrap;
}

.ov-input-group:focus-within {
  border-color: #0b4033;
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.1);
}

.ov-input-icon {
  width: 46px;
  min-width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fb;
  color: #0b4033;
  font-size: 0.9rem;
  border-right: 1px solid #e0e5ee;
}

.ov-input {
  flex: 1;
  border: none !important;
  outline: none;
  padding: 11px 15px !important;
  font-family: Poppins, sans-serif;
  font-size: 0.88rem;
  color: #333;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.ov-input::placeholder {
  color: #aaa;
}

.ov-input-group .invalid-feedback {
  width: 100%;
  padding-left: 48px;
  font-size: 0.75rem;
}

.was-validated .ov-input-group:has(.ov-input:invalid) {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.was-validated .ov-input-group:has(.ov-input:valid) {
  border-color: #198754;
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.1);
}

.was-validated .ov-input:invalid,
.was-validated .ov-input:valid {
  background-image: none !important;
}

.ov-submit-btn {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b4033, #0b4033);
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.ov-submit-btn i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.ov-submit-btn:hover {
  background: linear-gradient(135deg, #150b58, #3a7bc8);
  box-shadow: 0 6px 20px rgba(27, 15, 107, 0.3);
}

.ov-submit-btn:hover i {
  transform: translateX(4px);
}

.ov-form-note {
  text-align: center;
  color: #aaa;
  font-family: Sansation, sans-serif;
  font-size: 0.75rem;
  margin: 5px 0 0;
}

.ov-form-note i {
  margin-right: 4px;
  font-size: 0.65rem;
}


/* overview section end */



/* second section start */
.section-2 {
  background-image: url(../images/banner/1.jpg);
  height: 29.875rem;
  background-position-y: center;
  background-attachment: fixed;
}

/* second section end */

/* project highlights section start  */

.key-features-section {
  background: #fff;
  padding: 60px 0;
}

.project-heading {
  color: #0b4033;
  font-family: "Gilda Display";
  font-size: 3.542vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 4%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
  text-transform: uppercase;
  text-align: center;
  padding: 0 0 50px 0;
}

.kf-grid {
  justify-content: center;
}

.kf-col {
  margin-bottom: 30px;
  display: flex;
}

.kf-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 20px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgb(27 15 107 / 48%);
  border-bottom: 4px solid transparent;
  transition: all 0.4s ease;
}

.kf-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(27, 15, 107, 0.18);
  border-bottom: 4px solid #0b4033;
}

.kf-number {
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: "Gilda Display";
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(27, 15, 107, 0.06);
  line-height: 1;
  transition: all 0.4s ease;
}

.kf-card:hover .kf-number {
  color: rgba(74, 144, 217, 0.15);
}

.kf-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4033, #0b4033);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.kf-card:hover .kf-icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(74, 144, 217, 0.35);
}

.kf-icon-wrap i {
  color: #fff;
  font-size: 1.5rem;
}

.kf-text {
  color: #333;
  text-align: center;
  font-family: Sansation, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
  margin: 0;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* All dots - default */
.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: #2e2e2e;
  border-radius: 50%;
  position: relative;
  opacity: 1;
  margin: 0 15px !important;
}

/* Active dot core */
.swiper-pagination-bullet-active {
  background: #0b4033;
}

/* Ring around active dot */
.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  width: 20px;
  height: 20px;
  border: 2px solid #0b4033;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}

/* project highlights section end  */


/* <!-- configuration section start --> */
.config-section {
  background: linear-gradient(160deg, #0b4033 0%, #0b4033 40%, #597b4c 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.config-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.config-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.config-heading {
  color: #fff;
  font-family: "Gilda Display";
  font-size: 3.542vw;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  padding: 0 0 10px 0;
  position: relative;
}

.config-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #0b4033, #8b5cf6);
  margin: 12px auto 0;
  border-radius: 2px;
}

.config-subtext {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-family: Sansation, sans-serif;
  font-size: 1rem;
  margin-bottom: 50px;
}

.config-grid {
  justify-content: center;
}

.config-col {
  margin-bottom: 24px;
  display: flex;
}

.config-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 18px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.config-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0b4033, #8b5cf6, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.config-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 144, 217, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(74, 144, 217, 0.1);
}

.config-card:hover::before {
  opacity: 1;
}

.config-icon-bar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4033, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(74, 144, 217, 0.25);
}

.config-card:hover .config-icon-bar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 25px rgba(74, 144, 217, 0.45);
}

.config-icon-bar i {
  color: #fff;
  font-size: 1.2rem;
}

.config-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.config-name {
  color: #fff;
  font-family: "Gilda Display";
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 8px;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.config-card:hover .config-name {
  color: #a5c8f0;
}

.config-detail {
  color: rgba(255, 255, 255, 0.55);
  font-family: Sansation, sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.config-card:hover .config-detail {
  color: rgba(255, 255, 255, 0.7);
}

.config-price-btn {
  background: linear-gradient(135deg, rgba(74, 144, 217, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(74, 144, 217, 0.35);
  color: #a5c8f0;
  font-family: Poppins, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.35s ease;
  letter-spacing: 0.3px;
}

.config-price-btn i {
  font-size: 0.65rem;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.config-price-btn:hover {
  background: linear-gradient(135deg, #0b4033, #8b5cf6);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(74, 144, 217, 0.4);
}

.config-price-btn:hover i {
  transform: translateX(4px);
}

.config-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
  height: 100%;
}

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

.gall-text-new {
  color: #0b4033;
  font-family: "Gilda Display";
  font-size: 3.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 4%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
  text-transform: uppercase;
  padding-bottom: 40px;
}

.cust-top-space-loc {
  margin-right: 25%;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background: none;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}


.accordion-button:focus {
  border-color: transparent !important;
  box-shadow: none
}

.cust-top-space {
  margin-right: 100px;
}

.cust-bord {
  border-bottom: 1px #fff solid;
  margin-top: -15px;
}

.config-carpet {
  color: #FFF;
  font-family: Sansation;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.chek-pric {
  color: #FFF;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  border: 2px solid #0b4033;
  background-color: transparent;
  padding: 5px 30px;
}

.bhk-top {
  padding-top: 50px;
  align-items: center;
}

/* <!-- configuration section end --> */


/* <!-- amenities section start --> */

.amenities-section {
  background: #fff;
  padding: 60px 0 40px;
}

.ami-head {
  color: #0b4033;
  text-align: center;
  font-family: "Gilda Display";
  font-size: 3.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 4%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
  text-transform: uppercase;
  padding: 0 0 10px 0;
}

.ami-subtext {
  text-align: center;
  color: #666;
  font-family: Sansation, sans-serif;
  font-size: 1rem;
  margin-bottom: 45px;
}

.ami-grid {
  justify-content: center;
}

.ami-col {
  margin-bottom: 30px;
  display: flex;
}

.ami-card {
  background: #f7f9fc;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  padding: 35px 18px 25px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
}

.ami-card:hover {
  background: #fff;
  border-color: #0b4033;
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(27, 15, 107, 0.12);
}

.ami-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4033, #0b4033);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.4s ease;
}

.ami-card:hover .ami-icon-circle {
  transform: scale(1.12);
  box-shadow: 0 0 25px rgba(74, 144, 217, 0.45);
}

.ami-icon-circle i {
  color: #fff;
  font-size: 1.5rem;
}

.ami-title {
  color: #0b4033;
  font-family: "Gilda Display";
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.ami-desc {
  color: #333;
  font-family: Sansation, sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.ami-card:hover .ami-desc {
  color: #555;
}

/* <!-- amenities section end --> */


/* <!-- gallery section start --> */
.gall-text {
  color: #ffffff;
  font-family: "Gilda Display";
  font-size: 3.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 4%;
  /* 2.4px */
  text-underline-offset: 25%;
  /* 15px */
  text-underline-position: from-font;
  text-transform: uppercase;
  padding-bottom: 40px;
}

.cust-nav-colo {
  color: #0b4033 !important;
  border: 1px solid #0b4033 !important;
  padding: 15px 70px;
}

.gal-sec-outer {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: #0b4033;
  color: #fff !important;
  padding: 15px 70px;
}

.cust-tab {
  border: none;
  gap: 20px;
}

/* gallery swiper start */
.gallery-swiper-container {
  position: relative;
}

.pt-6 {
  padding-top: 6rem;
}

.gallery-swiper-container .gallery-swiper {
  width: 100%;
  height: 100%;
}

.gallery-swiper-container .swiper-slide .gallery-img {
  width: 100%;
  height: 65dvh;
  transition: all 0.5s ease;
  border: 2px #0b4033 solid;
}

.gallery-swiper-container .swiper-slide:not(.swiper-slide-active) .gallery-img img {
  background: linear-gradient(0deg, rgba(186, 157, 117, 0.40) 0%, rgba(186, 157, 117, 0.40) 100%);
  filter: blur(2px);
  transition: all 0.5s ease;
}

.gallery-swiper-container .swiper-slide:has(.swiper-slide-active) .gallery-img {
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.gallery-swiper-container .swiper-slide:has(.swiper-slide-active) .gallery-img::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 71.85%,
      rgba(0, 0, 0, 0.8) 100%);
  transition: all 0.5s ease;
}

.gallery-swiper-container .swiper-slide .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-swiper-container .swiper-button {
  position: absolute;
  top: 50%;
  cursor: pointer;
  transform: translate(0%, -50%);
  z-index: 2;
  width: 70px;
  height: 70px;
  transition: all 0.5s ease;
}

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

.gallery-swiper-container .swiper-button.swiper-button-prev-4,
.gallery-swiper-container .swiper-button.swiper-button-prev-5,
.gallery-swiper-container .swiper-button.swiper-button-prev-6 {
  left: 10%;
  transition: all 0.5s ease;
  background: #0b4033;
  border-radius: 50%;
  padding: 16px;
}

.gallery-swiper-container .swiper-button.swiper-button-next-4,
.gallery-swiper-container .swiper-button.swiper-button-next-5,
.gallery-swiper-container .swiper-button.swiper-button-next-6 {
  right: 10%;
  transition: all 0.5s ease;
  background: #0b4033;
  border-radius: 50%;
  padding: 16px;
}

.gallery-swiper-container .swiper-wrapper {
  margin: 0 0 4rem 0;
}

/* gallery swiper end */


/* <!-- 360 view start --> */

.view-360-text {
  color: #0b4033;
  text-align: center;
  font-family: "Gilda Display";
  font-size: 2.91rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 4%;
  /* 2.4px */
  text-underline-offset: 25%;
  /* 15px */
  text-underline-position: from-font;
  text-transform: uppercase;
  padding: 40px 0px;
}

.image-360 {
  padding-top: 40px;
}

.image-360-wrapper {
  position: relative;
  display: inline-block;
  /* Keep image size intact */
}

.image-360-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.play-img-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0b40337d;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* <!-- 360 view end --> */


/* <!-- about section start --> */

/* about section start */

.about-section {
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(27, 15, 107, 0.04) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.about-top {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.about-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(27, 15, 107, 0.08), rgba(74, 144, 217, 0.1));
  color: #0b4033;
  font-family: Poppins, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  border: 1px solid rgba(74, 144, 217, 0.15);
}

.about-heading {
  color: #0b4033;
  font-family: "Gilda Display";
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.about-heading::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #0b4033, #8b5cf6);
  margin: 14px auto 0;
  border-radius: 2px;
}

.about-text {
  color: #666;
  font-family: Sansation, sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 0;
}

/* Stats row */
.about-stats-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.about-stat-card {
  background: #fff;
  border: 1px solid rgba(27, 15, 107, 0.06);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 15, 107, 0.05);
}

.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b4033, #8b5cf6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(27, 15, 107, 0.12);
  border-color: rgba(74, 144, 217, 0.2);
}

.about-stat-card:hover::before {
  opacity: 1;
}

.about-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4033, #0b4033);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform 0.4s ease;
}

.about-stat-card:hover .about-stat-icon {
  transform: scale(1.1);
}

.about-stat-icon i {
  color: #fff;
  font-size: 1.1rem;
}

.about-stat-number {
  display: block;
  font-family: "Gilda Display";
  font-size: 2rem;
  font-weight: 700;
  color: #0b4033;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  display: block;
  font-family: Sansation, sans-serif;
  font-size: 0.82rem;
  color: #888;
}

/* Highlights row */
.about-highlights-row {
  justify-content: center;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(27, 15, 107, 0.06);
  box-shadow: 0 4px 15px rgba(27, 15, 107, 0.05);
  transition: all 0.35s ease;
  height: 100%;
}

.about-highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(27, 15, 107, 0.1);
  border-color: rgba(74, 144, 217, 0.2);
}

.about-hl-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(27, 15, 107, 0.08), rgba(74, 144, 217, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.about-highlight-item:hover .about-hl-icon {
  background: linear-gradient(135deg, #0b4033, #0b4033);
}

.about-hl-icon i {
  color: #0b4033;
  font-size: 1rem;
  transition: color 0.35s ease;
}

.about-highlight-item:hover .about-hl-icon i {
  color: #fff;
}

.about-hl-title {
  color: #0b4033;
  font-family: "Gilda Display";
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.about-hl-text {
  color: #777;
  font-family: Sansation, sans-serif;
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
}

/* about section end */

/* Modal Form Styles */
.modal-custom {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 15, 107, 0.3);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(27, 15, 107, 0.08);
  color: #0b4033;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: #0b4033;
  color: #fff;
}

.modal-body-custom {
  padding: 40px 35px 35px;
  background: #fff;
  text-align: center;
}

.modal-icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4033, #0b4033);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.modal-icon-circle i {
  color: #fff;
  font-size: 1.4rem;
}

.modal-title-custom {
  color: #0b4033;
  font-family: "Gilda Display";
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-subtitle {
  color: #888;
  font-family: Sansation, sans-serif;
  font-size: 0.85rem;
  margin-bottom: 28px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #e0e5ee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.modal-input-group:focus-within {
  border-color: #0b4033;
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.1);
}

.modal-input-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fb;
  color: #0b4033;
  font-size: 0.9rem;
  border-right: 1px solid #e0e5ee;
}

.modal-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 15px;
  font-family: Poppins, sans-serif;
  font-size: 0.9rem;
  color: #333;
  background: transparent;
}

.modal-input::placeholder {
  color: #aaa;
}

.modal-submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b4033, #0b4033);
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.modal-submit-btn i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.modal-submit-btn:hover {
  background: linear-gradient(135deg, #150b58, #3a7bc8);
  box-shadow: 0 6px 20px rgba(27, 15, 107, 0.3);
}

.modal-submit-btn:hover i {
  transform: translateX(4px);
}

.modal-field {
  position: relative;
}

.modal-input-group {
  flex-wrap: wrap;
}

.modal-input-group .invalid-feedback {
  font-size: 0.75rem;
  padding-left: 50px;
  width: 100%;
}

.was-validated .modal-input.form-control:invalid {
  border: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

.was-validated .modal-input.form-control:valid {
  border: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

.was-validated .modal-input-group:has(.form-control:invalid) {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.was-validated .modal-input-group:has(.form-control:valid) {
  border-color: #198754;
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.1);
}


/* last section */

.getin {
  color: #0b4033;
  text-align: center;
  font-family: "Gilda Display";
  font-size: 3.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.75rem;
  /* 100% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 4%;
  /* 2.4px */
  text-underline-offset: 25%;
  /* 15px */
  text-underline-position: from-font;
  text-transform: uppercase;
  padding-bottom: 35px;
  margin-top: 90px;
}

.form-row {
  align-items: center;
}

.foot-submit-bttn {
  background-color: #0b4033;
  color: #FFF;
  font-family: Poppins;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  padding: 11px 60px;
  border: none;
}

.cust-padd-foot {
  height: 53px;
  padding: 0.5rem 0.75rem;
  border: 1px solid #0b4033;
  border-radius: 0px;
}

.get-in-from {
  padding: 3rem 6rem;
  border: 1px #0b4033 solid;
  position: absolute;
  background: #fff;
}

/* last section */

/* *****Location Section Starts****** */
.overview-container {
  width: 90%;
  margin: auto 0 auto auto;
}

.location {
  position: relative;
  background: #0b4033;
  margin-top: 50px;
}

.accor-tab:not(.collapsed) {
  background-color: #fff !important;
  font-size: 1.2rem !important;
  text-transform: unset !important;
  border: 1px solid #0b4033;
}

.accor-tab {
  font-size: 1.2rem !important;
  text-transform: unset !important;
  border: 1px solid #0b4033;
}

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

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

.acc-location {
  color: #fff
}

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

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

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

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

/* **********Location Section Ends********* */

/* New Location Advantage Section */
.location-section {
  background-color: #fff;
  /* margin-top: 50px; */
  padding: 60px 0;
}

.location-heading {
  color: #0b4033;
  font-family: "Gilda Display";
  font-size: 3.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 4%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 40px;
}

.location-content {
  padding: 20px 0;
}

.location-desc {
  color: #333;
  font-family: Sansation;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  color: #333;
  font-family: Sansation;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 12px 15px;
  margin-bottom: 10px;
  background: #fff;
  border-left: 4px solid #0b4033;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.location-list li i {
  color: #0b4033;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.loc-img {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(27, 15, 107, 0.15);
}

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


/********** footer ***********/
.footer-black {
  background: #0b4033;
  padding-top: 8rem;
}

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

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

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

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

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

.qr-logo {
  width: 90px;
}

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

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

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


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

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

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

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


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

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

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

.cust-top-mar {
  margin-top: -17%;
}

.cust-bbor {
  border: none;
}

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

.foot {
  margin-top: 4%;
}

/* footer ends*** */

.thankyou-title {
  text-align: center;
}

.thankyou-subtitle {
  text-align: center;
}

.thankyou-content {
  margin-top: 15%;
}

.foot-pad {
  padding-top: 3rem !important;
}


/* Style all dots */
.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #0b4033;
  /* default inactive dot color */
  display: block;
  border-radius: 50%;
  margin: 5px;
  position: relative;
  transition: all 0.3s ease;
}

/* Active dot style */
.owl-dots .owl-dot.active span {
  background: #0b4033 !important;
  /* fill color */
}

/* Blue ring around active dot */
.owl-dots .owl-dot.active span::after {
  content: '';
  position: absolute;
  top: -7px;
  left: -7px;
  width: 25px;
  height: 25px;
  border: 1px solid #0b4033;
  border-radius: 50%;
  box-sizing: border-box;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dots .owl-dot {
  margin: 0 8px;
  /* space between dots */
}

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



/* accordion plus start */
.loc-accordion .accordion-button::after {
  background-image: unset;
  content: "+";
  width: 15px;
  height: 20px;
  font-size: 1.5rem;
}

.loc-accordion .accordion-button:not(.collapsed)::after {
  background-image: unset;
  font-size: 1.5rem;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  width: 15px;
  height: 20px;
  content: "-";
}


/* accordion plus end */

/* Pagination dots base style */
/* .swiper-pagination-4 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.swiper-pagination-4 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #aaa;
  opacity: 0.7;
  border-radius: 50%;
  transition: 0.3s;
}

.swiper-pagination-4 .swiper-pagination-bullet-active {
  border: 2px solid #000;
  background-color: white;
  opacity: 1;
} */




/* Floating Side Buttons */
.floating-btn {
  position: fixed;
  bottom: 2%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
}

.floating-btn i {
  font-size: 1rem;
}

.floating-btn span {
  font-size: 0.78rem;
}

.floating-btn-left {
  left: 1%;
  /* width: 50%; */
  background: #0b4033;
  border-radius: 0;
  border: 1px solid #fff;
}

.floating-btn-left:hover {
  background: #3a7bc8;
  box-shadow: 0 -4px 20px rgba(74, 144, 217, 0.4);
}

.floating-btn-right {
  right: 1%;
  /* width: 50%; */
  background: #0b4033;
  border-radius: 0;
  border: 1px solid #fff;
}

.floating-btn-right:hover {
  background: #150b58;
  box-shadow: 0 -4px 20px rgba(27, 15, 107, 0.4);
}

/* Button pulse animation */
.floating-btn-left {
  animation: pulse-blue 2.5s ease-in-out infinite;
}

.floating-btn-right {
  animation: pulse-navy 2.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes pulse-blue {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(74, 144, 217, 0);
  }

  50% {
    box-shadow: 0 0 15px 8px rgba(74, 144, 217, 0.3);
  }
}

@keyframes pulse-navy {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(27, 15, 107, 0);
  }

  50% {
    box-shadow: 0 0 15px 8px rgba(27, 15, 107, 0.3);
  }
}


@media (max-width: 1024px) {
  .overview-text {
    font-size: 14px;
  }

  .getin {
    font-size: 35px;
  }

  .gall-text,
  .gall-text-new {
    font-size: 35px;
  }

  .ami-head {
    font-size: 35px;
  }

  .slide-text {
    font-size: 15px;
  }

  .config-heading {
    font-size: 35px;
  }

  .over-form-heading {
    font-size: 25px;
  }

  .over-main-text {
    font-size: 35px;
  }

  .project-heading {
    font-size: 35px;
  }

  .gall-text {
    padding-bottom: 24px;
    padding-top: 29px;
    font-size: 35px;
  }

  .location-heading {
    font-size: 35px;
  }
}

@media (max-width: 991px) {

  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active {
    padding: 15px 35px
  }

  .cust-nav-colo {
    padding: 15px 35px;
  }
}

@media (max-width: 768px) {
  .floating-btn {
    padding: 10px 10px;
    width: 50%;
  }

  .modal-title-custom {
    font-size: 1.2rem;
  }


  .floating-btn-left {
    left: 0%;
    bottom: 0%;
  }

  .floating-btn-right {
    right: 0%;
    bottom: 0%;
  }

  .floating-btn i {
    font-size: 0.85rem;
  }

  .floating-btn span {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }

  .project-heading {
    font-size: 2rem;
  }

  .kf-icon-wrap {
    width: 55px;
    height: 55px;
  }

  .kf-icon-wrap i {
    font-size: 1.2rem;
  }

  .kf-text {
    font-size: 0.82rem;
  }

  .kf-card {
    padding: 30px 12px 20px;
  }

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

  .gallery-swiper-container .swiper-slide .gallery-img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    border: 2px #0b4033 solid;
  }

  .gallery-swiper-container .swiper-button.swiper-button-next-4,
  .gallery-swiper-container .swiper-button.swiper-button-next-5,
  .gallery-swiper-container .swiper-button.swiper-button-next-6 {
    right: 0%;
    padding: 13px;
  }

  .gallery-swiper-container .swiper-button.swiper-button-prev-4,
  .gallery-swiper-container .swiper-button.swiper-button-prev-5,
  .gallery-swiper-container .swiper-button.swiper-button-prev-6 {
    left: 0%;
    padding: 13px;
  }

  .gallery-swiper-container .swiper-button {
    width: 50px;
    height: 50px;
  }

  .gallery-swiper-container {
    margin-top: 30px;
  }

  .ami-card {
    padding: 25px 12px 20px;
  }

  .ami-icon-circle {
    width: 55px;
    height: 55px;
  }

  .ami-icon-circle i {
    font-size: 1.2rem;
  }

  .ami-title {
    font-size: 0.9rem;
  }

  .ami-desc {
    font-size: 0.78rem;
  }

  .ami-subtext {
    font-size: 0.85rem;
    margin-bottom: 30px;
  }

  .getin {
    font-size: 25px;
    padding-bottom: 15px;
    margin-top: 20px;
  }


  .cust-top-space-loc {
    margin-right: 0%;
    font-size: 25px;
  }

  .gall-text-new {
    padding-bottom: 5px;
    text-align: center;
  }

  .cust-nav-colo {
    padding: 10px 13px;
  }

  .cust-tab {
    justify-content: center;
  }

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

  .cust-top-space {
    margin-right: 0px;
  }

  .project-heading {
    font-size: 25px;
  }

  .config-heading {
    font-size: 25px;
  }

  .config-subtext {
    font-size: 0.85rem;
    margin-bottom: 30px;
  }

  .config-card {
    padding: 20px 12px 18px;
    border-radius: 12px;
  }

  .config-card:hover {
    transform: translateY(-4px);
  }

  .config-icon-bar {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .config-icon-bar i {
    font-size: 0.95rem;
  }

  .config-name {
    font-size: 0.9rem;
  }

  .config-detail {
    font-size: 0.72rem;
    margin-bottom: 10px;
  }

  .config-price-btn {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .gall-text-new {
    font-size: 25px;
  }

  .gal-sec-outer {
    flex-direction: column;
  }

  .overview-text {
    padding-right: 0px;
  }

  .gal-tabs-main {
    margin-top: 25px;
  }


  .nav-cta-btn {
    margin: 10px 0 5px;
    text-align: center;
    justify-content: center;
  }

  .nav-links {
    gap: 0;
    padding: 10px 0;
  }

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

  .nav-logo img {
    height: 50px;
  }

  .about-heading {
    font-size: 1.8rem;
  }

  .about-top {
    margin-bottom: 35px;
  }

  .about-text {
    font-size: 0.85rem;
    line-height: 1.7;
  }

  .about-stats-row {
    gap: 12px;
    margin-bottom: 35px;
  }

  .about-stat-card {
    min-width: 140px;
    padding: 20px 14px;
    border-radius: 12px;
  }

  .about-stat-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }

  .about-stat-icon i {
    font-size: 0.95rem;
  }

  .about-stat-number {
    font-size: 1.5rem;
  }

  .about-stat-label {
    font-size: 0.72rem;
  }

  .about-highlight-item {
    padding: 16px;
  }

  .about-hl-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
  }

  .about-hl-icon i {
    font-size: 0.85rem;
  }

  .about-hl-title {
    font-size: 0.9rem;
  }

  .about-hl-text {
    font-size: 0.75rem;
  }

  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active {
    padding: 10px 20px;
  }

  .ami-head {
    font-size: 27px;
  }

  .gall-text {
    font-size: 27px;
  }

  .bhk-top {
    padding-top: 10px;
  }

  .view-360-text {
    font-size: 25px;
    padding: 20px 0px;
  }

  /* .gal-sec-outer {
    padding: 40px 0px;

  } */

  .about-section {
    padding: 40px 0;
  }

  .overview {
    padding: 2rem 0;
    margin-top: 85px;
  }

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

  .accordion-item {
    margin-top: 1.5rem;
  }

  .loc-img {
    padding-top: 1rem;
  }

  .location-heading {
    font-size: 25px;
  }

  .location-section {
    /* margin-top: 20px; */
    padding: 40px 0;
  }

  .readmore-btn {
    background: none;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 0.85rem;
  }

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

  .get-in-from {
    position: relative;
  }

  .footer-black {
    padding-top: 3rem;
  }

  .get-in-from {
    padding: 2rem 2rem
  }

  .foot-submit-bttn {
    padding: 0.4rem 3rem;
  }

  /* mobile toggle bar */

  .mobile-fixed-button {
    display: block;
    position: fixed;
    width: 100%;
    bottom: 2%;
    left: 50%;
    z-index: 999;
    padding: 2rem 1rem 1rem 1rem;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    fill: rgba(255, 255, 255, 0.84);
    -webkit-filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.05));
  }

  .btn-fixed.primary-pink {
    background: var(--primary);
  }

  .cust-enq-clas {
    background: #0b4033 !important;
    border: none;
    border-radius: 30px;
  }

  .mobile-fixed-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    z-index: -1;
    left: 50%;
    background: url(../images/toggle.svg) no-repeat center center / cover;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    filter: brightness(0) saturate(100%)
  }

  .mobile-fixed-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 85%;
    margin: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
  }

  .btn-middle-content {
    padding: 1rem;
    background-color: transparent;
    position: absolute;
    top: 10px;
    left: 50%;
    border-radius: 100px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .btn-middle {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: none;
    outline: none;
    background-color: #0b4033;
  }

  .cust-dwn-clas {
    background-color: #0b4033 !important;
    border: none;
    border-radius: 30px;
  }

  .mobile-fixed-content .btn-fixed {
    width: 35%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: relative;
    top: -7px;
    font-size: 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 0.85rem;
  }

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

  /* mobile toggle bar */

}

@media (max-width: 520px) {
  .mobile-fixed-content .btn-fixed {
    font-size: 14px;
    padding: 7px 7px;
  }

  .btn-middle {
    width: 80px;
    height: 80px;
  }
}


@media (max-width: 440px) {
  .mobile-fixed-content .btn-fixed {
    font-size: 10px;
  }

  .btn-middle {
    width: 70px;
    height: 70px;
  }
}

/* Banner H1 - SEO friendly, visually positioned over banner */
.banner-h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  font-family: "Gilda Display", serif;
  font-size: 42px;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  width: 90%;
  max-width: 800px;
  margin: 0;
  line-height: 1.3;
}

.nav-back-img {
  position: relative;
  margin: 3.25rem 0 0 0;
}

@media (max-width: 768px) {
  .banner-h1 {
    font-size: 22px;
    width: 95%;
  }

  .section-pading {
    padding: 30px 0px;
  }

  .key-features-section {
    padding: 40px 0;
  }
}