/* ===================================
   Ogg Font Face
   =================================== */
@font-face {
  font-family: 'Ogg';
  src: url('Ogg-Roman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ogg';
  src: url('Ogg-Roman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===================================
   CSS Variables
   =================================== */
:root {
  --primary-green: #304b34;
  --dark-green: #1a2e1f;
  --accent-gold: #dfd6c4;
  --light-beige: #f7f2eb;
  --white: #ffffff;
  --black: #000000;
  --text-dark: #262626;
  --text-light: #666666;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Lato', sans-serif;
  
  --transition: all 0.4s ease;
}

/* ===================================
   Global Styles
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 17%);
  z-index: 2;
}

.header-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding:20px 50px;
  z-index: 10;
}

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding:10px 50px;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header-nav.scrolled {
  background-color: rgba(48, 75, 52, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 50px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

header.header-nav.scrolled .menu-toggle img {
    filter: grayscale(1);
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

header.header-nav.scrolled img {
    filter:none;
    transform: scale(0.8);
}

header.header-nav img {
    transition: var(--transition);	
}

.header-nav.scrolled span.menu-text {
    color: #fff;
}

.menu-toggle:hover {
  opacity: 0.8;
}

.menu-icon {
  width: 24px;
  height: 20px;
}

.menu-text {
  font-family: var(--font-sans);
  font-size: 1em;
  font-weight: 400;
  color:var(--white);
  letter-spacing: 1.28px;
}

.logo-text {
    font-family: var(--font-sans);
    font-size:1.125em;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text span {
    padding: 0 28px;
}

.logo-text span:nth-child(2) {
    border-left:1px solid #fff;
}


header.header-nav.scrolled .logo-text span:nth-child(2) {
    border-left:1px solid rgba(255, 255, 255, 0.2);
}

.btn-book-experience {
  background-color: var(--primary-green);
  color: var(--white);
  padding:10px 20px;
  font-family: var(--font-sans);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 1.12px;
  outline: 0 !important;
  border-radius: 0;
  border: 1px solid #766b4c !important;
  transition: var(--transition);
}

.btn-book-experience:focus {
    border: 1px solid #766b4c !important;
}

button.btn-book-experience:focus {
     border: 0 !important; 
    box-shadow: none !important;
}

.btn-book-experience:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #766b4c !important;
}

header.header-nav.scrolled .btn-book-experience {
    border: 1px solid #766b4c !important;
}

.thankyou-section .btn-book-experience {
    border: 1px solid #766b4c !important;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    bottom: 280px;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: 3.6em;
  font-weight: 400;
  line-height: 62.1px;
  margin-bottom: 10px;
  color: var(--white);
}

.hero-subheading {
  font-family: var(--font-sans);
  font-size:1.125em;
  font-weight:400;
  letter-spacing: 8.46px;
  color: var(--white);
}

.floating-buttons {
    position: fixed;
    right: 0;
    bottom:30px;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* background: #FEF5E8; */
    width: 75px;
    height: 122px;
    justify-content: center;
    align-items: center;
}

.floating-buttons b:nth-child(2) {
    margin-bottom: 17px;
}

.floating-buttons b {
    font-weight: normal;
    font-size: 0.875em;
	margin-top:5px;
}

.float-btn a {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* ===================================
   Sliding Menu Overlay
   =================================== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-green);
  z-index: 9999;
  transition: left 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

.menu-overlay.active {
  left: 0;
}

.menu-content {
  display: flex;
  height: 100%;
  width: 100%;
}

.menu-left {
  flex: 0 0 68%;
  padding:60px 80px 60px 155px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.menu-overlay.active .menu-left::before {
    background:url(../images/menu-bg-top.webp) no-repeat right top;
    content: '';
    position: fixed;
    width: 368px;
    height: 154px;
    right: 0;
    top: 0;
}

.menu-overlay.active .menu-left::after {
    background: url(../images/menu-bg-bottom.webp) no-repeat right bottom;
    content: '';
    position: fixed;
    width:381px;
    height:406px;
    right: 0;
    Bottom: 0;
}


.menu-close {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 1.28px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 12px;
}

.menu-close:hover {
  opacity: 0.7;
}

.close-icon {
  font-size: 1.2em;
  font-weight: 300;
}

.close-text {
  text-transform: uppercase;
}

.menu-navigation {
    display: flex;
    flex-direction: column;
    gap: 0px;
    flex: 1;
    justify-content: start;
    padding-top: 30px;
}

.menu-link {
    font-family: var(--font-serif);
    font-size: 1.63em;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
    display: inline-block;
    width: 320px;
    border-bottom: 1px solid #3E5842;
    padding:15px 0;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.4s ease;
}

.menu-link:hover {
  color: var(--accent-gold);
  transform: translateX(10px);
}

.menu-link:hover::before {
  width: 100%;
}

.menu-decorative-lines {
  position: absolute;
  bottom: 80px;
  left: 80px;
  width: 200px;
  height: 200px;
  opacity: 0.3;
}

.menu-decorative-lines::before,
.menu-decorative-lines::after {
  content: '';
  position: absolute;
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
}

.menu-decorative-lines::before {
  width: 150px;
  height: 150px;
  top: 0;
  left: 0;
}

.menu-decorative-lines::after {
  width: 100px;
  height: 100px;
  top: 25px;
  left: 25px;
}

.menu-right {
  flex:0 0 32%;
  position: relative;
  overflow: hidden;
}

.menu-image {
  object-fit: cover;
  object-position: center;
}

/* Menu Animation */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.menu-overlay.active .menu-left {
  animation: slideInLeft 0.6s cubic-bezier(0.77, 0, 0.175, 1) both;
  
}

.menu-overlay.active .menu-navigation .menu-link {
  animation: slideInLeft 0.6s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.menu-overlay.active .menu-navigation .menu-link:nth-child(1) {
  animation-delay: 0.3s;
}

.menu-overlay.active .menu-navigation .menu-link:nth-child(2) {
  animation-delay: 0.35s;
}

.menu-overlay.active .menu-navigation .menu-link:nth-child(3) {
  animation-delay: 0.4s;
}

.menu-overlay.active .menu-navigation .menu-link:nth-child(4) {
  animation-delay: 0.45s;
}

.menu-overlay.active .menu-navigation .menu-link:nth-child(5) {
  animation-delay: 0.5s;
}

.menu-overlay.active .menu-navigation .menu-link:nth-child(6) {
  animation-delay: 0.55s;
}

.menu-overlay.active .menu-navigation .menu-link:nth-child(7) {
  animation-delay: 0.6s;
}

/* ===================================
   Luxury Section
   =================================== */
.luxury-section {
  background-color: var(--primary-green);
  padding: 100px 0;
  color: var(--white);
  position:relative;
}

.luxury-section::before {
    background: url(../images/bg3.webp) no-repeat left top;
    content: '';
    position: absolute;
    width:155px;
    height:182px;
    left: 0;
    bottom: 0;
}

.luxury-section::after {
    background: url(../images/bg2.webp) no-repeat right top;
    content: '';
    position: absolute;
    width:249px;
    height:504px;
    right: 0;
    top: 0;
}


.luxury-left {
  padding:50px 0 50px 40px;
}

.luxury-number {
    font-family: var(--font-sans);
    font-size: 16.94em;
    font-weight: 300;
    line-height: 244.5px;
    letter-spacing: -6.79px;
    color: var(--white);
    margin-bottom: 10px;
}

.luxury-number::after {
  content: '+';
}

.luxury-subtitle {
  font-family: var(--font-sans);
  font-size:1.3em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 30.6px;
	margin-bottom: 0;
}

.luxury-right {
  padding: 50px;
}

.luxury-heading {
  font-family: var(--font-serif);
  font-size: 3.54em;
  font-weight: 400;
  line-height: 62.1px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.luxury-description {
  font-family: var(--font-sans);
  font-size:1.125em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 28px;
}

.feature-stats {
  margin-top: 80px;
  padding: 0 50px;
}

.icon-area {
    margin-right: 15px;
}

.stat-item {
    text-align: center;
    padding: 30px 0px 30px 0;
    display: flex;
    align-items: center;
}

.text-area {
    text-align: left;
}

.stat-icon {
  margin-left:0px;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 3.125em;
  font-weight: 300;
  line-height: 40px;
  color: var(--white);
  display: inline-block;
}

.stat-percent {
    font-family: var(--font-sans);
    font-size: 3.125em;
    font-weight: 300;
    color: var(--white);
    line-height: 55px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 1em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 14px;
  margin-top:0px;
}

/* ===================================
   Planned Section
   =================================== */
.planned-section {
  background-color: var(--white);
  padding:130px 50px;
}

.planned-section .section-header {
    margin-bottom: 35px;
}

.section-header {
  margin-bottom: 45px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3.54em;
  font-weight: 400;
  line-height: 68.1px;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.section-description {
  font-family: var(--font-sans);
  font-size:1.125em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 26px;
  color: var(--black);
}

.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 130px;
  margin-bottom: 60px;
  position: relative;
}

.tab-navigation::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 675px;
  height: 1px;
  background-color: #ddd;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1.44em;
  font-weight: 300;
  letter-spacing: 0.16px;
  color: var(--text-dark);
  padding: 10px 0px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.tab-btn img {
  filter: brightness(0);
  transition: var(--transition);
}

.tab-btn.active {
  color: #ae7d54;
}

.tab-btn.active img {
    filter: none;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ae7d54;
}


.tab-btn:hover img {
  transform: scale(1.1);
}

.planned-tab-content {
    position: relative;
    min-height: 250px;
}

.planned-content-panel {
  display: none;
  opacity: 0;
  animation: fadeInContent 0.5s ease forwards;
}

.planned-content-panel.active {
  display: block;
}



.features-grid .col-lg-3 {
    padding:0 55px;
    border-right: 1px solid #eee;
}

.features-grid .col-lg-2 {
    padding: 0 26px;
    border-right: 1px solid #eee !important;
}

.features-grid .col-lg-3.last, .features-grid .col-lg-2 {
    border: 0;
}



@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-grid {
  margin-top: 60px;
}

.feature-card {
  text-align: left;
  padding:0px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.feature-title {
    font-family: var(--font-sans);
    font-size:1.5em;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 26px;
    color: var(--primary-green);
    margin-bottom: 15px;
    padding-right:0px;
}

.feature-description {
  font-family: var(--font-sans);
  font-size:1.125em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 26px;
  color: var(--black);
  margin-bottom: 0;
}

.btn-master-plan {
  background-color: var(--primary-green);
  color: var(--white);
  padding:11px 40px;
  font-family: var(--font-sans);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 1.12px;
  transition: var(--transition);
}

.btn-master-plan:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Amenities Section
   =================================== */
.amenities-section {
    background: url(../images/bg4.webp) no-repeat left top;
    padding: 130px 0 130px 0;
    position: relative;
    color: var(--white);
    height: 700px;
}

.amenities-section::before {
    background: url(../images/bg5.webp) no-repeat left bottom;
    content: '';
    position: absolute;
    width: 521px;
    height: 102px;
    bottom: 0;
    left: 0;
}

.amenities-section::after {
    background: url(../images/bg6.webp) no-repeat right top;
    content: '';
    position: absolute;
    width: 170px;
    height: 328px;
    right: 0;
    top: 0;
}

.amenities-left {
  padding:0px 20px 0px 50px;
}

.amenities-heading {
  font-family: var(--font-serif);
  font-size:3.3em;
  font-weight: 400;
  line-height: 62.1px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.amenities-description {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 26px;
  margin-bottom:15px;
}

.vertical-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vertical-tab {
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.66px;
  line-height: 48px;
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.vertical-tab:nth-child(3) {
    border: 0;
}

.vertical-tab.active span {
    position: relative;
    background: url(../images/active-arrow.svg) no-repeat right 16px;
    width: 100%;
    float: left;
}


.vertical-tab:hover {
  opacity: 0.8;
}

.amenities-slider-container {
  position: relative;
  padding:25px 50px 0 0;
}

.amenities-swiper-slider {
  display: none;
  position: relative;
}

.amenities-swiper-slider.active {
  display: block;
}

.amenities-swiper {
  width: 100%;
  padding: 20px 0;
}

.amenities-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.amenities-swiper .swiper-slide {
  width: 100%;
  height: auto;
}

.amenity-slide img {
    width: 100% !important;
    cursor: default;
}
.amenity-slide {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.slide-title {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.63px;
  color: var(--white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  padding: 0;
}

.slider-arrow-bottom {
  background-color: transparent;
  color: var(--white);
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.slider-arrow-bottom:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.slider-arrow-bottom svg {
  width: 24px;
  height: 24px;
}

.slider-pagination {
  flex: 1;
  max-width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.swiper-pagination-custom {
  height: 100%;
  background-color: var(--white);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* ===================================
   Connected Section
   =================================== */
.connected-section {
  background-color: var(--white);
  padding: 130px 0;
  position:relative;
}

.connected-section::after {
    background: url(../images/bg6.webp) no-repeat right top;
    content: '';
    position: absolute;
    width: 170px;
    height: 328px;
    right: 0;
    top: 0;
}


.location-items .row{
    gap: 37px;
}

.location-items {
  margin-top: 60px;
}

.location-item {
  text-align: center;
  transition: var(--transition);
}

.location-circle {
  width: 245px;
  height: 245px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.location-circle img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: grayscale(100%);
  transition: var(--transition);
}

.location-item:hover .location-circle {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.location-item:hover .location-circle img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.location-label {
    font-family: var(--font-sans);
    font-size: 1.125em;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 23px;
    color: var(--primary-green);
}

/* ===================================
   Moments Section
   =================================== */
.moments-section {
  background-color: var(--light-beige);
  padding:0;
  overflow: hidden;
}

.moments-section .row.align-items-center {
    padding: 0 50px;
}

.scroll-images {
  height: 600px;
  overflow: hidden;
  position: relative;
}

.scroll-wrapper {
  display: flex;
  flex-direction: column;
  gap:70px;
}

.scroll-wrapper:hover {
  animation-play-state: paused !important;
}

/* Scroll Up Animation (Bottom to Top) */
.scroll-up {
  animation: scrollUp 25s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Scroll Down Animation (Top to Bottom) */
.scroll-down {
  animation: scrollDown 25s linear infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.scroll-wrapper.left-wrapper {
    align-items: end;
}

.scroll-img {
    width: 380px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.scroll-wrapper span {
    position: relative;
    cursor: pointer;
}

.scroll-wrapper.left-wrapper span::before {
    background: url(../images/lightbox-icon.svg) no-repeat center center;
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    right: 44%;
    top: 44%;
    z-index: 999;
}

.scroll-wrapper.right-wrapper span::before {
    background: url(../images/lightbox-icon.svg) no-repeat center center;
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    right: 45%;
    top: 48%;
    z-index: 999;
}

.scroll-img:hover::before,
.scroll-img:hover::after {
  opacity: 1;
}

.scroll-img:hover {
  transform: scale(1.05);
}

.moments-content {
  padding: 50px;
}

/* ===================================
   Landmarks Section
   =================================== */
.landmarks-section {
  background-color: var(--primary-green);
  position: relative;
}


.landmarks-section::after {
    background: url(../images/bg6.webp) no-repeat left top;
    content: '';
    position: absolute;
    width: 170px;
    height: 328px;
    right: 0;
    top: 0;
}

.landmark-image {
    position: relative;
    height: 100%;
    height: 820px;
    overflow: hidden;
    background: url(../images/bg7.webp) no-repeat left center;
    background-size: cover;
    width: 100%;
}

.landmark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: sticky;
  top: 0;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.landmark-content {
  padding: 100px 80px;
  position: relative;
}

.landmark-content::after {
	background: url(../images/bg6.webp) no-repeat right top;
    content: '';
    position: absolute;
    width: 170px;
    height: 328px;
    right: 0;
    top: 0;}

.decorative-lines {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 100px;
  height: 100px;
  border-top: 2px solid var(--accent-gold);
  border-right: 2px solid var(--accent-gold);
  border-radius: 0 50px 0 0;
}

.landmark-heading {
  font-family: var(--font-serif);
  font-size: 3.54em;
  font-weight: 400;
  line-height: 62.1px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.landmark-description {
  font-family: var(--font-sans);
  font-size:1.125em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 26px;
  color: var(--white);
  margin-bottom:0px;
}

.landmark-accordion {
  display: flex;
  flex-direction: column;
  gap:0px;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-item:nth-child(3) {
    border-bottom: 0;
}

.accordion-header {
  width: 100%;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.38em;
  font-weight: 300;
  letter-spacing: 0.66px;
  line-height: 48px;
  text-align: left;
  padding:9px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-icon {
  transition: var(--transition);
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content.active {
  max-height: 300px;
  padding-bottom: 20px;
}

.accordion-content ul {
  list-style: none;
  padding: 0;
}

.accordion-content li {
  font-family: var(--font-sans);
  font-size: 1em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  padding:0;
  padding-left:0px;
  position: relative;
}





/* ===================================
   Location Section
   =================================== */
.location-section {
    background-color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.location-content {
  padding:50px 0 0 60px;
}

.landmarks-section::after {
    background: url(../images/bg8.webp) no-repeat left top;
    content: '';
    position: absolute;
    width:208px;
    height:343px;
    left: 0;
    Bottom: 0;
}


.location-heading {
  font-family: var(--font-serif);
  font-size: 3.54em;
  font-weight: 400;
  line-height: 62.1px;
  color: var(--primary-green);
  margin-bottom: 30px;
}

.location-description {
  font-family: var(--font-sans);
  font-size:1.125em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 26px;
  color: var(--black);
}

.location-map {
  padding:0px;
  text-align: center;
}


.location-map img {
    max-width: 100%;
    transition: var(--transition);
    margin-right: -24px;
}

/* ===================================
   Trust Section
   =================================== */
.trust-section {
  background-color: var(--primary-green);
  padding: 100px 0;
  color: var(--white);
}

.trust-section p.section-description {
    color: var(--white);
}

.trust-stats {
    margin-top: 60px;
    padding: 0 45px;
}

.trust-item {
  text-align: center;
  padding: 30px;
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-10px);
}

.trust-item:hover .trust-icon-wrapper {
  transform: scale(1.1);
  border-color: var(--accent-gold);
}

.trust-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.trust-icon {
  filter: brightness(0) invert(1);
}

.trust-number {
  font-family: var(--font-sans);
  font-size: 3.125em;
  font-weight: 300;
  line-height: 40px;
  color: var(--white);
  margin-bottom:0px;
}

.trust-label {
  font-family: var(--font-sans);
  font-size:1.125em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 26px;
  margin-bottom: 0;
}

.trust-stats .stat-item {
    padding: 0;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background-color: var(--light-beige);
  padding:60px 0 30px;
}


.footer-content .rera-no {
    width: 19% !important;
    flex: 1 0 19%;
}

/* .rera-no b { font-family: var(--font-serif);
  font-size: 1.63em;
  font-weight: 400;
  line-height: 48px;
  color: var(--primary-green);
  margin-bottom: 15px;}
 */
.footer-content {
    margin-bottom: 40px;
    padding: 0 50px;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.63em;
  font-weight: 400;
  line-height: 48px;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.footer-text {
  font-family: var(--font-sans);
  font-size:1.125em;
  font-weight: 300;
  line-height: 25.6px;
  color: var(--black);
}

.footer-text a {
  color: var(--black);
}

.footer-text a:hover {
  color: var(--primary-green);
}

.social-icons {
    display: flex;
    gap: 0;
    margin-top: 15px;
    margin-left: -2px;
}

.social-icon {
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding-right: 17px;
}

.social-icon:hover {
  transform: scale(1.2);
}



.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 40px 0 30px;
}

.footer-bottom {
  text-align: center;
}

.copyright-text {
  font-family: var(--font-sans);
  font-size: 0.875em;
  font-weight: 300;
  line-height: 16px;
  color: var(--black);
  margin-bottom:0;
}

.copyright-text a {
    text-decoration: underline;
}

.web-design-link {
  text-decoration: underline;
}

.web-design-link:hover {
  color: var(--primary-green);
}

/* ===================================
   Lightbox
   =================================== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: var(--white);
  font-size: 3.125em;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent-gold);
  transform: scale(1.2);
}

/* ===================================
   Animation Classes
   =================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.btn-book-experience.mob-btn { display:none}

.landmark-image img {display:none}

div#site-development-slider, div#site-development-slider2 {
    padding: 0 50px;
}

div#site-development-slider .feature-card {
    text-align: center;
    padding: 0px;
    
}

div#site-development-slider .swiper-button-prev-custom, div#site-development-slider .swiper-button-next-custom, div#site-development-slider2 .swiper-button-prev-custom, div#site-development-slider2 .swiper-button-next-custom {
    background-color: #fff;
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid #304b34;
}


div#site-development-slider .slider-arrow-bottom img, div#site-development-slider2 .slider-arrow-bottom img {
    width: 24px;
	margin: 0;
    height: 24px;
}

#site-development-slider .swiper-slide, #site-development-slider2 .swiper-slide {
    position: relative;
}

.swiper-slide.swiper-slide-active::after {
    display: none;
}

#site-development-slider .swiper-slide::after, #site-development-slider2 .swiper-slide::after {
    top: 0;
    content: '';
    position: absolute;
    width: 1px;
    background: #eee;
    height: 151px;
    left:0px;
}

#site-development-slider2 .swiper-slide::after {
    top: 0;
    height: 230px;
}

#site-development-slider2 .feature-card {
    text-align: center;
	padding: 0 50px;
    width: 100%;
}

#site-development-slider2 .slider-controls {
    display: none;
}
#utility-slider .slider-controls {display:none}	

.popimg {
    float: left;
    width: 50%;
    height: 586px !important;
    overflow: hidden;
}
button.btn-close {
    background: none;
    opacity: 1;
}

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

.popform {
    width: 50%;
    float: left;
    padding: 30px;
}
.modal-content {
    position: relative;
    display: flex;
    background: var(--primary-green);
    border: 0;
    border-radius: 0;
}
.modal-content2{
    position: relative;
    display: flex;
    flex-direction: row;	
}

.modal-content::after {
    background: url(../images/bg6.webp) no-repeat right top;
    content: '';
    position: absolute;
    width: 170px;
    height: 328px;
    right: 0;
    top: 0;
}

 .form {
    z-index: 10;
    width: 100%;
    background-color: transparent;
    flex: none;
    margin-bottom: 0;
    padding: 0;
    position: relative;
  }
  .form-block {
    width: 100%;
    grid-row-gap: 0em;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    display: inherit;
  }
  .form-submit-button {
	  background-color:var(--dark-green);
	  letter-spacing: 1px;
	  text-transform: uppercase;
	  background-position: 85%;
	  background-repeat: no-repeat;
	  background-size: 1.1em;
	  border: 1px solid transparent;
	  border-radius: 0;
	  margin-top: 1em;
	  margin-right: auto;
	  padding:8px 20px;
	  font-size: 17px;
	  font-weight: 600;
	  transition: background-color 0.2s;
	  opacity: 1;
	  color:#fff;
	border: 1px solid #766b4c !important;
	  transition: all .2s ease-out;
	}
  .form-submit-button:hover {
    background-color:none !important; color:#fff;border:1px solid #fff;
  }
  .form-submit-button:focus {
    background-color:#none !important; color:#fff;border:1px solid #fff;
  }
  .form-field {
    z-index: 5;
    min-height:50px;
    border-style: solid;
    border-width: 1px;
    border-color: transparent transparent #ffffff47;
    color: var(--dark-blue);
    background-color: transparent;
    margin-bottom: 0;
    padding: 0.5em 0;
    font-size: 15px;
    line-height: 1.1em;
    transition: min-height 0.6s cubic-bezier(0.075, 0.82, 0.165, 1),
      background-color 0.2s, border-color 0.5s;
    position: relative;
    top: -1px;
  }
  .form-field:hover {
    z-index: 10;
  }
  .form-field:focus {
    z-index: 10;
  }

  .form-field::-ms-input-placeholder {
    color: #fff;
  }
  .form-field::placeholder {
   color: #fff;
  }
  .form-field.is-text-area {
    min-height: 6em;
    margin-bottom: 1.2em;
    padding-top: 1.3em;
  }
  .form-field.is-select {
    min-height: 5.5em;
    color: rgba(3, 25, 44, 0.7);
    font-size: 1em;
  }
  .form-field.is-select:focus {
    min-height: 6.5em;
  }

.form.w-form .form-block .form-field {
    width: 100% !important;
    float: left !important;
    height: auto !important;
    position: static !important;
    display: inherit !important;
    margin-right: 0;
    margin-bottom:20px;
    outline: 0;
    color: #fff;
	font-family: var(--font-sans);
    border-radius: 0 !important;
    border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
.form.w-form .form-block .form-field#Contact-Form-date { background: url(../images/cal-icon.png) no-repeat right 16px; } 
h2.contact-title-1 {
    color: #fff;
}
.form.w-form .form-block textarea.form-field.is-text-area.w-input {
    width:100% !important;
}

.modal-header {
    position: absolute;
    right: 0;
    z-index: 999;
}

div#Security {
    float: left;
    width: 100%;
    margin-top: 11px;
}


.thankyou-section {
    background: #324b35;
    height: 18vh;
    border-bottom: 1px solid #47604a;
}

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

.landmark-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    width: 49%;
    list-style: none;
    float: left;
}

.landmark-list .icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landmark-list .text {
  flex: 1;
}

.amenity-slide.amenity-slide-hover {
  text-align: center;
}

.amenity-slide-hover .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.amenity-slide-hover .image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay */
.amenity-slide-hover .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: all 0.4s ease;
  text-align: center;
}

.amenity-slide-hover .overlay p {
    color: #fff;
    transform: translateY(20px);
    transition: 0.4s ease;
    font-size: 16px;
    line-height: 21px;
	font-family: var(--font-sans);
	font-weight: 300;
}

/* Hover Effects */
.amenity-slide-hover .image-wrapper:hover img {
  transform: scale(1.08);
}

.amenity-slide-hover .image-wrapper:hover .overlay {
  opacity: 1;
}

.amenity-slide-hover .image-wrapper:hover .overlay p {
  transform: translateY(0);
}


.floar-plan{background-color: var(--dark-green); color: var(--white); padding: 15px 20px; font-family: var(--font-sans); font-size: 1em; font-weight: 700; letter-spacing: 1.12px; border-radius: 0; transition: var(--transition); width: 285px; display: block; margin: 0 auto; text-transform: uppercase;}

.back-to-top {
      position: fixed;
  bottom: 10px;
  right: 0px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 999;
}


.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

a.float-btn.whatsapp-btn {
    width: 45px;
}

.rera-no {
    margin-bottom: 20px;
    font-weight: 300;
	font-size:0.875em;
}

.privacy-content h2 {
    font-family: var(--font-serif);
    font-size: 2em;
    font-weight: 400;
    line-height: 65px;
    color: var(--accent-gold);
    margin-bottom: 0;
    float: left;
    width: 100%;
}
.privacy-content p {
      font-family: var(--font-sans);
    font-size: 1.125em;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 28px;
}

.privacy-content p a{
    text-decoration:underline;
}

.privacy-content ul { 
	margin:0;
	padding:0;
}


.privacy-content li {
    font-family: var(--font-sans);
    font-size: 1.125em;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 28px;
    list-style: none;
    border-bottom: 1px solid #69816d;
    padding-bottom: 20px;
    margin-top: 20px;
}

.privacy-content li:last-child {
    border: 0;
    padding-bottom: 0;
}

.privacy-content {
    padding-top: 0;
    padding-Bottom: 0;
}

.privacy-content .mb-20 {
    margin-bottom: 20px;
}

/* ===================================
   Responsive Design
   =================================== */
   
   
   
    
@media (max-width:1539px) {  
.menu-link {
    font-size: 1.2em;
	padding: 13px 0;
}
.hero-content {bottom:200px;top:auto}
.amenities-heading { font-size:2.9em; line-height: 54px; }  
.location-circle { width: 100%; height: 232px; }
.thankyou-section {
    height:117px;
}	
.planned-tab-content {
    position: relative;
    min-height: 270px;
}
}   
   
@media (max-width:1440px) {
.hero-content {bottom:200px;top:auto}	
.amenities-heading { font-size: 2.7em; margin-bottom: 20px; }
.luxury-number {font-size: 16em;}
.luxury-subtitle {font-size: 1.26em}
.features-grid .col-lg-3 { padding: 0 45px; }
.location-circle { height:215px; }	
.planned-tab-content {
    position: relative;
    min-height:300px;
}
#site-development-slider2 .swiper-slide::after {
    top: 0;
    height: 300px;
}
}	

@media (max-width:1360px) {
.menu-navigation {padding-top:0}	
.amenities-heading { font-size: 2.8em; line-height: 44px; }
.location-circle { width: 100%; height: 200px; }
.footer-text { width: 100%; float: left; word-break: break-word; }
} 
   
@media (max-width:1280px) {
.luxury-number {font-size: 13em;}
.amenities-heading, .section-title, .landmark-heading, .location-heading, .luxury-heading { font-size:2.3em; line-height: 45px; }
.footer-text { font-size: 1.0em; }
.location-circle { height: 190px; }
.trust-label { font-size: 1em; }
.hero-content { bottom: 170px; top: auto; }
}    
   
   
@media (max-width: 1200px) {
.location-circle { height: 175px; }	
.slide-title {
    bottom: 11px;
    font-size: 14px !important;
}	
.slide-title br {display:none}
.landmark-content {
    padding: 100px 30px;
}

.footer-content {
    padding: 0 0;
}	
.trust-section p.section-description {
    color: var(--white);
    padding:0 50px;
}	
.trust-section p.section-description br {display:none}
.location-circle {
    height: 168px;
}	
  .hero-heading {
    font-size: 3em;
    line-height: 52px;
  }
  
  .luxury-number {
    font-size: 12.5em;
    line-height: 180px;
  }
  
  .section-title {
    font-size: 3em;
    line-height: 56px;
  }
  
  .tab-navigation {
    gap: 60px;
  }
}

@media (max-width:1024px) {
.landmarks-section {
    padding: 0 !important;
    background-color: var(--primary-green);
    position: relative;
}	
.location-circle {
        height: 146px;
    }	
.slide-title {
        bottom: 11px;
        font-size: 16px !important;
    }	
#utility-slider .slider-controls {
    display: flex;
}	
.header-nav.scrolled {padding-left:30px;padding-right:30px;}	
.popimg {display:none}	
.popform {
    width: 100%;
    float: left;
    padding: 30px;
}
#site-development-slider2 .slider-controls {
    display: flex;
}	
section {padding: 40px 0 !important;overflow: hidden;}	
.luxury-right {
    padding: 0 50px;
}	
.footer-content .rera-no {
    width: 19% !important;
    flex: 1 0 11%;
}
.footer-heading {
    font-size: 1.3em;
}	
.menu-left {
    flex: 0 0 100%;
}
.header-nav {padding:30px;}
.menu-right {
    display: none;
}
.btn-book-experience {padding: 15px 11px;}
.luxury-number {
        font-size: 11em;
        line-height: 180px;
}
.location-circle {
        height: 146px;
}	
.amenities-heading, .section-title, .landmark-heading, .location-heading, .luxury-heading {
        font-size: 2em;
        line-height: 45px;
    }
.location-content {
    padding: 24px 0 0 60px;
}	
}
@media (max-width: 992px) {
.amenities-left {
    padding: 0px 20px 0px 20px;
}

.vertical-tabs {
        display: flex;
        flex-direction: row;
        width: 100%;
		padding: 0;
        justify-content: center;
        gap: 16px;
		border-Bottom:0 !important
    }	
.moments-section .col-lg-3 {
    width: 50%;
    margin: 0 auto;
}		
.amenities-slider-container {
    position: relative;
    padding: 25px 0px 0 0;
}	
.amenities-section {
        height: auto;
        background-size: auto 100% !important;
    }
.landmark-image {
        min-height: auto !important;
        height: unset;
    }
  .landmark-image img {
        display: block !important;
        width: 100% !important;
        object-fit: unset;
        height: auto !important;
    }	
.vertical-tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}
button.vertical-tab.active span {
        border-bottom: 1px solid var(--accent-gold) !important;
        padding-bottom: 10px;
        background: none;
    }	
button.vertical-tab span {
        display: block;
        line-height: 21px;
        font-size: 0.8em;
        padding-bottom: 10px;
        border-bottom: 1px solid transparent !important;
    }	
.landmark-content::after {display:none}	
.hero-section.thankyou-section {
    height: 14vh;
}	
.menu-close {margin-bottom: 10px;}	
.moments-section .row.align-items-center {
    padding: 0 10px !important;
}	
.planned-section .container-fluid {
    padding: 0 10px !important;
}	
.luxury-right, .feature-stats {
    padding: 0px;
}		
.landmarks-section {
    background-color: var(--primary-green);
    position: relative;
    padding: 0 !important;
}
.landmark-image img {
    display: block !important;
}	
.location-items .row .col-lg-2.col-md-4.col-6.mb-4 {
    width: 28.3%;
}	

.luxury-left {
    padding: 0px 0 50px 0px;
}
.header-nav .col-md-6.text-center {
width: 47%;}

.amenities-section::after, .luxury-section::after, .connected-section::after {background-size: 60%;}	
.hero-section {
    height: 70vh;
}	
  .hero-heading {
    font-size: 2.5em;
    line-height: 44px;
  }
  
  .luxury-number {
    font-size: 9.375em;
    line-height: 140px;
  }
  
  .section-title {
    font-size: 2.5em;
    line-height: 48px;
  }
  
  .tab-navigation {
    gap: 60px;
  }
  
  .tab-btn {
    font-size: 1.25em;
  }
  
  .location-circle {
    width: 200px;
    height: 200px;
  }
  
.scroll-images, .static-images {
        height: 400px;
        width: 380px;
    }
  .location-content {
        padding:0px;
	}
.location-map img {

    margin-right: 0;
}	
  .landmark-content {
    padding: 60px 40px;
  }
}

@media (max-width: 800px) {
button.vertical-tab span {
        display: block;
        line-height: 27px;
        font-size: 0.8em;
        padding-bottom: 10px;
        border-bottom: 1px solid transparent !important;
    }	
.moments-section {
    background-color: var(--light-beige);
    padding: 0 !important;
    overflow: hidden;
}	
.menu-overlay.active .menu-left::before {
    background-size:40%;
}	
.menu-overlay.active .menu-left::after {
    background-size: 40%;
	    height: 186px;
}
.menu-navigation {
    justify-content: flex-start;
}	
  .menu-left {
    flex: 0 0 100%;
    padding: 40px 30px;
  }

  .menu-right {
    display: none;
  }

  .menu-navigation {
    gap:0px;
  }

  .menu-link {
    font-size: 1.2em;
	padding:10px 0;
  }
  

  .menu-decorative-lines {
    bottom: 40px;
    left: 30px;
    width: 150px;
    height: 150px;
  }
.amenities-left {
    padding: 0px;
}
.amenities-section {
        height: 100%;
        background-size: auto 100%;
}
.amenities-slider-container {
    position: relative;
    padding: 25px 20px 0 20px;
}
.vertical-tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}
.vertical-tab {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 0;
        padding: 0 9px;
        text-align: center;
    }
button.vertical-tab.active span {
        border-bottom: 1px solid var(--accent-gold) !important;
        padding-bottom: 10px;
        background: none;
    }
.moments-section .col-lg-3 {
    width: 50%;
    margin: 0 auto;
}	
.vertical-tab.active {background:none}
.amenities-section {height:auto;}
  .menu-decorative-lines::before {
    width: 100px;
    height: 100px;
  }

  .menu-decorative-lines::after {
    width: 60px;
    height: 60px;
  }
.features-grid .col-lg-3 {
        padding: 34px 45px;
    }
  .tab-navigation {
    gap: 20px;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }
header.header-nav.scrolled {
    padding: 10px 20px;
}
.luxury-left {
    padding: 0px 0px 50px 0px;
}
  .header-nav {
    padding: 20px;
  }
  
  .logo-text {
    font-size: 0.875em;
  }
  
  .btn-book-experience {
    padding:9px 20px;
    font-size: 0.875em;
  }
  
  .hero-heading {
    font-size: 2em;
    line-height: 36px;
  }
  
  .hero-subheading {
    font-size: 0.875em;
    letter-spacing: 4px;
  }
  
  .floating-buttons {
    right:0px;
  }
  
  
  .luxury-section,
  .planned-section,
  .amenities-section,
  .connected-section,
  .moments-section,
  .location-section,
  .trust-section {
    padding: 60px 0;
  }
  
  .luxury-number {
    font-size: 6.25em;
    line-height: 90px;
  }
  
  .luxury-heading,
  .amenities-heading,
  .landmark-heading,
  .location-heading {
    font-size: 2em;
    line-height: 38px;
  }
  

  .section-description,
  .luxury-description,
  .amenities-description,
  .landmark-description,
  .location-description {
    font-size: 1em;
  }
  
  .feature-stats,
  .features-grid,
  .location-items,
  .trust-stats {
    margin-top: 40px;
  }
  
  .location-circle {
    width: 150px;
    height: 150px;
  }
  
.landmark-image {
        min-height: auto;
        background: none !important;
    }
  .moments-content {
    padding: 20px;
  }
  
.landmark-image {
        min-height: auto !important;
        height: unset;
    }
  .landmark-image img {
        display: block !important;
        width: 100% !important;
        object-fit: unset;
        height: auto !important;
    }
  .landmark-content {
    padding: 40px 20px;
  }
  
  .decorative-lines {
    display: none;
  }
  
  .footer {
    padding:60px 0 70px;
  }
  
  .footer-heading {
    font-size: 1.38em;
	    line-height: 5px;
  }
  
  .footer-text {
    font-size: 1em;
  }
}

@media (max-width: 576px) {
.privacy-content h2 {
    font-size: 1.8em;
}	
.header-nav {
        padding: 19px 0;
    }	
.rera-no {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 1em;
}
.back-to-top {
    bottom: 60px;
    right: -10px;
}	
.floating-buttons a.float-btn.whatsapp-btn img{width: 70px;}	
.floating-buttons {
        right: 0px;
        flex-direction: row;
        width: 40%;
        text-align: center;
        height: auto;
        bottom: 0;
        transform: unset;
    }
.floating-buttons a.float-btn.call-btn, .floating-buttons a.float-btn.whatsapp-btn {
        text-align: center;
        width: 100%;
        height: 56px;
        display: flex;
        justify-content: center;
        align-items: center;
		overflow:hidden;
    }
	
.floating-buttons a.float-btn.call-btn {background:var(--primary-green);border-left: 1px solid #eee;}	
a.float-btn.whatsapp-btn {
        background: #57af54;
}
.modal-content::after {
    background-size: auto 100%;
    height: 150px;
}	
.location-section {padding-bottom:0 !important}	
.hero-section {
        height: 100vh;
    }	
.hero-section.thankyou-section {
        height:103px;
    }	
.moments-section .col-lg-3 {
        width: 100%;
        margin: 0 auto;
    }	
.header-nav .col-md-3 {
        /* width: 53%; */
    }	
.float-btn:hover {
    transform: scale(1);
}	
.menu-overlay.active .menu-left::before {
        background-size: 100%;
        width: 50%;
        height: 86px;
    }
.book-btn {display:none}
.btn-book-experience.mob-btn {
        display: block;
        bottom: 0;
        width: 60%;
        text-align: center;
        position: fixed;
        z-index: 999;
    }
.btn-book-experience {
        padding: 0;
        font-size: 1em;
        border: 0 !important;
        height: 56px;
    }
.btn-book-experience:hover {border:0 !important}	
.landmark-list li {
    width: 100%;
}	
.section-description br {
    display: none;
}
.btn-book-experience:hover {transform:unset;}
.section-title {
        font-size: 2em;
        line-height: 38px;
    }
.landmarks-section::after {display:none}	
.amenities-section::before {
        background: url(../images/bg5.webp) no-repeat left bottom;
        width: 100%;
        height: 102px;
        background-size: 79%;
    }
.landmark-image {
        min-height: auto;
        height: auto;
    }	
#utility-slider .slider-controls {display:flex}	
#site-development-slider2 .feature-card, #site-development-slider .feature-card {
        text-align: center !important;
        padding: 0px 10px !important;
        width: 100% !important;
    }	
#site-development-slider2 .swiper-slide::after {display:none}	
div#site-development-slider, div#site-development-slider2 {
    padding: 0;
}	

.icon-area {
    margin-right: 15px;
    height: 71px;
}
.location-items .row .col-lg-2.col-md-4.col-6.mb-4:nth-child(5) p.location-label {
    margin-bottom: 0;
}

.location-items .row .col-lg-2.col-md-4.col-6.mb-4:nth-child(5) p.location-label br {
    display: none !important;
}	
.footer-content {
        padding: 0 0;
        margin-bottom: 0;
    }	
.features-grid .col-lg-3:nth-child(1) {
    padding-top: 0;
}	
.footer-text br {
    display: none;
}
.tab-navigation::after {width:100%}	
.trust-section p.section-description {
        color: var(--white);
        padding: 0;
    }	
.trust-section {
    padding-bottom: 0 !important;
}	
.footer-divider {
    margin: 20px 0 30px;
}	
.trust-section .trust-stats .col-lg-3.col-md-6.mb-4 {
        margin-bottom: 45px !important;
    }
.tab-btn {
        font-size: 1.125em;
        text-align: left;
    }
.trust-section h3.trust-number {
    margin: 9px 0;
}	
.features-grid .col-lg-3 {
        padding: 30px 0 30px 0;
        border-right: 0;
        border-bottom: 1px solid #eee;
    }
button.vertical-tab span {
        display: block;
        line-height: 21px;
        font-size: 0.8em;
        padding-bottom: 10px;
        border-bottom: 1px solid transparent !important;
    }
.vertical-tab {
        padding: 0 18px;
    }	
button.vertical-tab.active span {
	border-bottom: 1px solid var(--accent-gold) !important;
	padding-bottom: 10px;
}	
.amenities-section::after, .luxury-section::after, .connected-section::after {
        background-size: 40%;height: 158px;
    }	
.feature-stats .col-lg-3.col-md-6.mb-4, .trust-stats .col-lg-3.col-md-6.mb-4 {
        width: 50%;
        margin-bottom: 0 !important;
    }
.trust-stats {
    margin-top: 60px;
    padding: 0 30px;
}	
.stat-item {
    text-align: center;
    padding: 30px 0px 0px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-content: center;
}	
.stat-item .text-area {
    text-align: center;
}
.header-nav .col-md-3 {
        width:30%;
    }
header.header-nav.scrolled {
        padding: 10px 0px;
    }
	
.header-nav .col-md-6.text-center {
        width:70%;
    }
header.header-nav.scrolled .logo-text span {
    padding: 0;
}	
.logo-text span {
    padding: 0 12px;
}	
.logo-text span:nth-child(2) {
    padding-right: 0;
}
  .hero-heading {
    font-size: 1.75em;
    line-height: 32px;
  }
  
  .luxury-number {
    font-size: 5em;
    line-height: 73px;
  }
  

.tab-btn {
        font-size: 1.125em;
        line-height: 21px;
    }
  
.feature-title {
        font-size: 1em;
        line-height: 19px;
    }
 .location-items .row {
    gap: 0;
}
.scroll-images, .static-images {
        height: 400px;
        width: 100%;
    }
.location-items .row .col-lg-2.col-md-4.col-6.mb-4 {
        width: 50%;
    } 
.amenity-slide {
        min-width: 180px;
        height: auto;
        width: 78%;
        margin: 0 auto;
    }
  .location-circle {
    width: 120px;
    height: 120px;
  }
  
  .location-label {
    font-size: 1em;
  }
}
