/* =========================
   Custom Font
========================= */

@font-face {
    font-family: 'KiyanaDisplay';
    src: url('../fonts/KiyanaDisplay-UltraLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
   font-family: "Montserrat", sans-serif;
   margin: 0;
   padding: 0;
   cursor: none;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1340px;
}


/* custom cursor  */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgb(88 88 91);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99999;
    transition: width .25s,height .25s,border-color .25s,background .25s;
    backdrop-filter: blur(4px);
}

.custom-cursor span{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:600;
    color:#fff;
    letter-spacing:1px;
}

.custom-cursor.hover{
    width:70px;
    height:70px;
    border-color:#C8A86B;
    background:rgba(200,168,107,.15);
}

.custom-cursor.video{
    width:90px;
    height:90px;
    background:rgba(0,0,0,.35);
}




/* Header */
.custom-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1100;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.custom-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    background: rgb(244 230 218);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    animation: slideDown 0.4s ease forwards;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.custom-header.scrolled .menu-toggle svg rect {
    fill: #5f5e61;
}



/* Logo */
.logo img {
   height: 28px;
   /* adjust as needed */
   width: auto;
}
.menu-toggle {
   font-size: 22px;
   color: #6e6e6e;
   cursor: pointer;
}
/* Hamburger */
.menu-toggle {
   cursor: pointer;
   z-index: 1100;
}
/* Fullscreen Menu */

/*.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: rgb(241 222 205 / 97%);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: 0.5s ease;
    z-index: 9999;
}*/

.fullscreen-menu {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Glass Effect */
    background: rgba(241, 222, 205, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    /* Glass Border */
    border: 1px solid rgba(255, 255, 255, 0.2);

    /* Soft Shadow */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

    transform: translateY(-100%);
    transition: transform 0.6s ease;
    z-index: 9999;
}



.fullscreen-menu.active {
   transform: translateY(0);
}
.menu-content ul {
   list-style: none;
   padding: 0;
   margin: 0;
   text-align: center;
}
.menu-content ul li {
   margin: 20px 0;
}
.menu-content ul li a {
   text-decoration: none;
   font-size: 24px;
   font-weight: 500;
   color: #6b4b42;
   letter-spacing: 2px;
   transition: 0.3s;
}
.menu-content ul li a:hover {
   color: #c0847c;
}
/* Close Button */
.menu-close {
   position: absolute;
   top: 30px;
   right: 40px;
   font-size: 40px;
   cursor: pointer;
   color: #6b4b42;
}



/* Hero Section */
.hero-section {
   position: relative;
   height: 100vh;
   background: url("../images/hero/hero-banner-new.webp") no-repeat center
      center/cover;
   display: flex;
   align-items: center;
}
.hero-overlay {
   position: absolute;
   inset: 0;
   /*background: rgba(255, 255, 255, 0.2);
    */
}
.hero-content {
   position: relative;
   z-index: 2;
   color: #6b4b42;
}

.hero-section .banner-content {
    margin-bottom: 3em;
}
img.Hero-QR-code {
    width: 300px;
    position: absolute;
    bottom: 30px;
    z-index: 99;
    right: 30px;
}





/* =========================
   About Section
========================= */

.about-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background: rgba(241, 222, 205, 1);
    z-index: 11;
}

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

/* Right Half Image */
.about-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url('../images/about/about-thumb.jpg') no-repeat center center/cover;
}

/* Floating Glass Card */
/*.about-card {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin-left: 0;
    margin-top: 0;
    padding: 12% 8% 12% 15%;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.26);
}*/

.about-card {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 120px;
    padding-right: 8%;
    padding-left: calc((100vw - 1340px) / 2 + 0px);
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.26);
}


img.leaf-top {
    position: absolute;
    top: -140px;
    left: calc((90vw - 1320px) / 2 + 20px);
}

img.leaf-bottom {
    position: absolute;
    bottom: -96px;
    right: 5%
}

.about-card:after {
    content: "";
    position: absolute;
    right: -70px;
    top: -1px;
    bottom: -1px;
    border-radius: 0 50px 50px 0;
    background: rgb(244 230 218 / 50%);
    backdrop-filter: blur(10px);
    width: 90px;
    border: 1px solid rgba(255, 255, 255, 1);
    border-left: 0;
}

/* Typography */
.about-title, .section-title {
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #6b4b42;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'KiyanaDisplay';
}

.about-subtitle {
    font-size: 18px;
    letter-spacing: 2px;
    color: #7a6a60;
    margin-bottom: 25px;
}

.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: #4e4e4e;
    margin-bottom: 15px;
}

p.about-subtitle.free-pd {
    margin-top: 32px;
    text-transform: uppercase;
}

a.btn-schedule-now {
    text-decoration: none;
    background: rgba(241, 222, 205, 1);
    box-shadow: -6px 3px 10px rgb(0 0 0 / 4%);
    color: #73544b;
    padding: 10px 20px;
    margin-top: 0px;
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #fff;

    transition: all 0.4s ease;
}

a.btn-schedule-now:hover {
    background: transparent;
    border-color: #73544b;
    transform: translateY(-3px);
    box-shadow: -6px 6px 15px rgb(0 0 0 / 10%);
}



#quick-overview {
    height: 80vh;
    background-image: url(../images/quick-overview-bg.webp);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}
/*#quick-overview:before {
    content: "";
    background-image: url(../images/quick-overview/vector-2.png);
    position: absolute;
    width: 51%;
    height: 470px;
    top: -210px;
    z-index: 9;
    background-repeat: no-repeat;
    background-size: contain;
    left: -10px;
}
#quick-overview:after {
    content: "";
    background-image: url(../images/quick-overview/vector-1.png);
    position: absolute;
    width: 51%;
    height: 470px;
    bottom: -165px;
    z-index: 9;
    background-repeat: no-repeat;
    background-size: contain;
    right: -210px;
}*/

#quick-overview:before, #quick-overview:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 520px;
    left: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

#quick-overview:before {
    top: -220px;
    background-image: url(../images/quick-overview/vector-2.png);
    background-position: top left;
}

#quick-overview:after {
    bottom: -210px;
    background-image: url(../images/quick-overview/vector-1.png);
    background-position: bottom right;
}



#quick-overview ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0px;
    width: 85%;
    margin: 0 auto;
}

#quick-overview ul li.overview-item {
    text-align: center;
}
#quick-overview ul li.overview-item img.overview-icon {
    height: 50px;
    object-fit: contain;
    margin-bottom: 20px;
}
#quick-overview ul li.overview-item h6 {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(175, 129, 116, 1);
}

#quick-overview ul li.overview-item p {
    font-family: Montserrat;
    font-size: 15px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(175, 129, 116, 1);
}

#quick-overview ul li.overview-item {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    padding: 20px 15px;
    border-radius: 14px;
}

#quick-overview ul li.overview-item:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* Fade-up + micro zoom */
[data-aos="fade-up-zoom"] {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    transition-property: transform, opacity;
}

[data-aos="fade-up-zoom"].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}




/* ===============================
   Walkthrough Video Slider
================================= */

#walkthrough-video-slider {
    width: 100%;
    padding: 50px 0;
    overflow: visible;
}

#walkthrough-video-slider .swiper-slide {
    transition: all 0.4s ease;
    transform: scale(0.9);
    opacity: 0.5;
}

#walkthrough-video-slider .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

#walkthrough-video-slider .video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

#walkthrough-video-slider .video-thumbnail img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

#walkthrough-video-slider .video-thumbnail a { text-decoration: none; }

#walkthrough-video-slider .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

#walkthrough-video-slider .play-btn i {
    font-size: 28px;
    color: #000;
    margin-left: 4px;
}

#walkthrough-video-slider .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

#walkthrough-video-slider .swiper-button-prev,
#walkthrough-video-slider .swiper-button-next {
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

#walkthrough-video-slider .swiper-button-prev::after,
#walkthrough-video-slider .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

/* Tablet */
@media (max-width: 991px) {
    #walkthrough-video-slider .video-thumbnail img {
        height: 420px;
    }

    #walkthrough-video-slider .play-btn {
        width: 70px;
        height: 70px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    #walkthrough-video-slider {
        padding: 0;
    }

    #walkthrough-video-slider .video-thumbnail img {
        height: 280px;
    }

    #walkthrough-video-slider .play-btn {
        width: 60px;
        height: 60px;
    }

    #walkthrough-video-slider .play-btn i {
        font-size: 22px;
    }

    #walkthrough-video-slider .swiper-button-prev,
    #walkthrough-video-slider .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    #walkthrough-video-slider .swiper-button-prev::after,
    #walkthrough-video-slider .swiper-button-next::after {
        font-size: 14px;
    }
}











/* Ekaanta Life */
section#ekaanta-life ul {
    padding-left: 22px;
}

section#ekaanta-life ul li {
    padding-bottom: 20px;
    font-size: 16px;
    color: rgb(175, 129, 116);
}
section#ekaanta-life ul li b {
    font-weight: 600;
}

section#ekaanta-life .about-card::after {
    left: -70px;
    border-radius: unset;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    border-right: 0;
    border-left: 1px solid #fff;
    top: -1px;
    bottom: -1px;
}
section#ekaanta-life .about-image {
    background: url('../images/ekaanta-life-thumb.jpg') no-repeat center center/cover;
}
img.leaf-top.right {
    right: 10%;
    left: auto;
    top: -110px;
    width: 130px;
}
img.leaf-bottom.left {
    bottom: -111px;
    right: auto;
}
section#ekaanta-life .about-card {
    padding-right: 9%;
    padding-left: 12%;
}



/* Amenities */
section#amenities .about-image {
    background: url('../images/amenities-thumb.jpg') no-repeat center center/cover;
}
section#amenities .about-card {
    padding-top: 15%;
    padding-bottom: 15%;
}

/* =========================
   Amenities Section
========================= */

.amenities-section {
    background: #f1decd;
    padding: 10em 0;
    position: relative;
    overflow: hidden;
}

section#amenities-2 img.leaf-top {
    z-index: 0;
    top: 30px;
    left: 50px;
    width: 160px;
}
section#amenities-2 img.leaf-bottom {
    bottom: 49px;
    right: 2%;
    width: 180px;
}


.amenity-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.amenity-content {
    background: #f4e6da;
    padding: 40px 15px;
    border-radius: 45px 0px 0 0;
    min-height: 310px;
    max-height: 310px;
}
.two .amenity-content {
    border-radius: 0 0 45px 0;
}
.three .amenity-content {
    border-radius: 0 45px 0 0;
}
.four .amenity-content {
    border-radius: 0 0 45px 0;
}

.amenity-icon img {
    height: 55px;
    margin-bottom: 15px;
}

.amenity-content h5 {
    font-size: 26px;
    letter-spacing: 2px;
    color: #7b5c50;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'KiyanaDisplay';
}

.amenity-content ul.list-unstyled {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    justify-content: flex-start;
}

.one .amenity-content ul.list-unstyled,
.two .amenity-content ul.list-unstyled,
.three .amenity-content ul.list-unstyled,
.four .amenity-content ul.list-unstyled {
    margin: 0 auto;
}

.one .amenity-content ul.list-unstyled { width: 75%; }
.two .amenity-content ul.list-unstyled { width: 90%; }

.four .amenity-content ul.list-unstyled,
.three .amenity-content ul.list-unstyled {
    width: 76%;
}

.amenity-content li {
    font-size: 16px;
    padding-right: 20px;
    text-align: center;
    position: relative;
    margin-bottom: 5px;
}

.amenity-content li:after {
    content: "";
    position: absolute;
    border-right: 1px solid #a98174;
    top: 3px;
    bottom: 3px;
    right: 8px;
}

.amenity-content li:last-child:after { opacity: 0; }
.one .amenity-content li:nth-child(2):after {opacity: 0;}
.two .amenity-content li:nth-child(3):after,
.two .amenity-content li:nth-child(4):after {opacity: 0;}

.three .amenity-content li:nth-child(2):after,
.three .amenity-content li:nth-child(4):after {opacity: 0;}

.four .amenity-content li:nth-child(2):after,
.four .amenity-content li:nth-child(3):after {opacity: 0;}


.amenity-image img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 0 0 45px 0px;
}
.two .amenity-image img {
    border-radius: 45px 0 0 0 !IMPORTANT;
}
.three .amenity-image img {
    border-radius: 0 0 0 45px;
}
.four .amenity-image img {
    border-radius: 45px 0 0 0;
}


.amenity-image {
    overflow: hidden;
    border-radius: 0px;
    height: 310px;
}

.amenity-image img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity-box:hover .amenity-image img {
    transform: scale(1.08);
}
.amenity-box,
.amenity-image img {
    will-change: transform;
}



section#CTA {
    background-image: url(../images/quick-overview-bg.webp);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    height: 30vh;
}
section#CTA .container {
    display: flex;
    align-items: center;
    flex-direction: column;
}
a.btn-cta {
    display: inline-block;
    text-decoration: none;
    background-color: #f1decd;
    padding: 15px 25px;
    color: #212529;
    font-weight: 500;
    box-shadow: -6px 3px 10px rgb(0 0 0 / 4%);
    font-size: 18px;
    margin-top: 15px;
    border: 2px solid #fff;

    transition: all 1s ease;
}

a.btn-cta:hover {
    background-color: transparent;
    border-color: #705249;
    transform: translateY(-3px);
    box-shadow: -6px 6px 15px rgb(0 0 0 / 10%);
}


/* Gallery */
section#gallery {
    position: relative;
}
section#gallery:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    height: 50px;
    z-index: 99;
    background: rgb(244 230 218 / 50%);
    backdrop-filter: blur(10px);
}

section#gallery:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 50px;
    z-index: 99;
    background: rgb(244 230 218 / 50%);
    backdrop-filter: blur(10px);
}

.gallerySwiper {
    position: relative;
}

.gallerySwiper .swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-radius: 0;
}

.gallerySwiper .swiper-slide p {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 99;
    width: fit-content;
    margin: 0 auto 16px;
    padding: 5px 18px;
    color: #fff;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'KiyanaDisplay';
}


/* Custom Arrow Styling */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-button-prev { left: 60px; }
.swiper-button-next { right: 60px; }

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 34px;
}


iframe#location-map {
    height: 90vh;
    display: block;
}
.map-wrapper {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.6s ease;
}

/* Hover effect */
.map-wrapper:hover iframe {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.map-wrapper:hover {
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}




section#connectivity .about-image {
    background: url('../images/connectivity-thumb.jpg') no-repeat center center/cover;
}
section#connectivity .about-card::after {
    left: -70px;
    border-radius: unset;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    border-right: 0;
    border-left: 1px solid #fff;
    top: -1px;
    bottom: -1px;
}
section#connectivity .about-card {
    padding-right: 9%;
    padding-left: 12%;
}
section#connectivity-list {
    background: rgba(241, 222, 205, 1);
    padding: 4em 0;
    min-height: 550px;
}


/* =========================
   Key Distances Section
========================= */

.key-distances-section {
    background: #e8d5c4;
}

/*.section-title {
    font-family: 'KiyanaDisplay', sans-serif;
    font-size: 36px;
    letter-spacing: 3px;
    color: #6b4b42;
}*/

/* Layout */
.distance-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.distance-item {
    flex: 1;
    min-width: 200px;
}

/* Header */
.distance-head {
    text-align: center;
    cursor: pointer;
}

.distance-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background-image: url(../images/connectivity-icon-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.distance-icon img {
    height: 35px;
}

.distance-item:last-child .distance-icon img {
    height: 25px;
}
.distance-head h6 {
    letter-spacing: 1px;
    color: #6b4b42;
    margin-bottom: 5px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}

.plus {
    font-size: 18px;
    transition: 0.3s ease;
}

/* Accordion List */
.distance-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    text-align: center;
}

.distance-list ul {
    list-style: none;
    padding: 15px 0 0;
    margin: 0;
}

.distance-list li {
    padding: 5px 0;
    font-size: 13px;
    color: #6b4b42;
}

/* Active */
.distance-item.active .distance-list {
    max-height: 500px;
}
.distance-item:hover .distance-list {
    max-height: 500px;
}


section#about-prasun .about-image {
    background: url('../images/about-prasun-thumb.jpg') no-repeat center center/cover;
}


/* =========================
   Counter Section
========================= */

/* =========================
   Counter Section
========================= */

.counter-footer-wrapper {
    background-image: url(../images/quick-overview-bg.webp);
    background-size: cover;
    background-position: center;
}

.counter-section {
    
    height: 60vh;
    display: flex;
    align-items: center;
}

/* Wrapper controls spacing */
.counter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Counter Box */
.counter-box {
    border: 1px solid #8b5e4d;
    border-radius: 15px 15px 0 0;
    padding: 25px 35px;
    width: 23%;
    height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 0;
    position: relative;
}

/* Number */
.counter-box h2 {
    font-family: 'KiyanaDisplay', sans-serif;
    font-size: 7rem;
    color: #7b4b3a;
    line-height: 94px;
    margin: 0;
}

/* Plus */
.counter-box sup {
    font-size: 6rem;
    position: relative;
    top: -30px;
}

/* Label */
.counter-box p {
    font-size: 12px;
    letter-spacing: 2px;
    color: #7b4b3a;
    padding: 0 8px;
    margin: 0;
    position: absolute;
    bottom: -8px;
}



footer.footer-section {
    padding-bottom: 5em;
    font-size: 16px;
}

footer.footer-section hr {
    opacity: 1;
    border-top: 1px solid rgba(98, 45, 37, 1);
    padding-bottom: 7em;
}



h4.footer-title {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-transform: uppercase;
    color: rgba(98, 45, 37, 1);
    margin-bottom: 25px;
}


/* Footer Logos Right Side */

.footer-logos-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    max-height: 50px;
    width: auto;
}

/* Vertical separator */
.logo-separator {
    width: 1px;
    height: 40px;
    background-color: #7b4b3a;
}


.footer-disclaimer {
    width: 73%;
    margin-top: 30px;
}
.footer-disclaimer p {
    font-size: 10px;
    font-weight: 500;
}

figure.footer-qr-code {
    width: 400px;
    margin-left: auto;
    position: relative;
    top: 8em;
}

figure.footer-qr-code img {
    width: 100%;
}

footer b, footer strong {
    font-weight: 600;
}

.social-icons a {
    color: #622d25;
    margin-right: 10px;
}

footer a { color: #622d25; }





@media(max-width: 1600px) {
    .one .amenity-content ul.list-unstyled {
        width: 84%;
    }
    
    .two .amenity-content li:nth-child(2):after {opacity: 0;}

    .three .amenity-content li:nth-child(1):after,
    .three .amenity-content li:nth-child(3):after {opacity: 0;}


    .three .amenity-content li:nth-child(2):after, .three .amenity-content li:nth-child(4):after { opacity: 1; }

    .four .amenity-content li:nth-child(4):after {opacity: 0;}


    section#ekaanta-life .about-card {
    padding-left: 8%;
    padding-top: 50px;
    padding-bottom: 50px;
    }

    #quick-overview {
        height: 90vh;
    }


    .about-card {
        padding-top: 80px;
        padding-bottom: 80px;
    }
} 

@media(max-width: 1440px) {
    #quick-overview ul {
        width: 94%;
    }
}


@media(max-width: 1280px) {
    #quick-overview ul {
        gap: 0;
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

/* Mobile */
@media (max-width: 992px) {
    .distance-wrapper {
        flex-direction: column;
    }

    .counter-wrapper {
        gap: 60px;
    }

    .counter-box h2 {
        font-size: 6rem;
        line-height: 70px;
    }

    .counter-box sup {
        font-size: 4rem;
        top: -30px;
    }
    
    .hero-section {
        background: url(https://prasunspaces.com/prasun-spaces/assets/images/hero-banner-new-m.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    
    #quick-overview {
        height: fit-content;
        padding: 4em 0;
    }
    #quick-overview ul {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    #quick-overview ul li.overview-item {
        width: 32%;
    }
    
    #quick-overview:after { display: none; }
    
    .about-card {
        padding: 70px 30px;
    }
    
    section#ekaanta-life .about-card::after {
        left: 0;
        opacity: 0;
    }
    
    section#ekaanta-life .about-card {
        padding-right: 0;
        padding-left: 30px;
    }
    
    section#ekaanta-life ul { margin-bottom: 0; }


    section#ekaanta-life ul li:last-child {
        padding-bottom: 0;
    }
    
    .about-image {
        position: relative;
        width: 100%;
        height: 57vh;
        background-position: bottom;
    }
}

/* Mobile */
@media (max-width: 767px) {
    
    
    ul#mobile_contact_nav {
    position: fixed;
    bottom: 0;
    display: flex !important;
    justify-content: space-between;
    width: 100%;
    z-index: 99999;
    text-align: center;
    margin: 0;
}

ul#mobile_contact_nav li {
    width: 49%;
    background-color: #af8174;
    padding: 9px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul#mobile_contact_nav li.call {
    width: 130px;
}
ul#mobile_contact_nav li.contact-form {
    width: 220px !IMPORTANT;
}

    
    ul#mobile_contact_nav li a {
        text-decoration: none;
        color: #fff;
        display: block;
    }


    .amenity-image, .amenity-box {
        background-color: #f4e6da;
    }
    
    .amenity-icon img {
    height: 40px;
}

.amenity-content h5 {
    margin-bottom: 20px;
}
   
    
    .logo img {
        height: 16px;
    }

.menu-toggle {
    font-size: unset;
}
.menu-toggle svg {
    height: 18px;
}
.menu-toggle rect {
    width: 30px;
}


.img-desktop {
    display: none;
}
.img-mobile.d-none {
    display: block !important;
}

.hero-section {
    position: relative;
    height: 93vh;
    background: url("../images/hero/hero-banner-new-1-m.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    background-position: left;
}

.hero-section .banner-content {
    flex-direction: column;
    text-align: right;
    width: fit-content;
    margin-left: auto;
    position: relative;
    top: -90px;
    right: 0;
    margin-bottom: 0;
}

.hero-section .banner-content figure.me-5 {
    margin-right: 0 !IMPORTANT;
}
.hero-section .banner-content figure {
    text-align: left
}

img.hero-vector-1 {
    width: 130px;
}
img.mb-2.hero-vector-2 {
    width: 140px;
}
img.hero-vector-3 {
    width: 160px;
    display: block;
}
.hero-section .banner-content h5 {
    font-size: 14px;
}



.about-section {
    height: fit-content;
}
.about-image {
    position: relative;
    width: 100%;
    height: 400px;
}

.about-card {
    padding: 20px !IMPORTANT;
    border: 0;
}

.about-card:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0px;
    top: auto;
    bottom: -28px;
    border-radius: 0 0 35px 35px;
    background: rgb(244 230 218 / 50%);
    backdrop-filter: blur(10px);
    width: 100%;
    border: 0;
    height: 40px;
}

section#ekaanta-life .about-card::after,
section#connectivity .about-card::after {
    left: 0;
    border: 0;
    top: auto;
    bottom: -26px;
    border-radius: 0 0 35px 35px;
}

.about-title, .section-title {
    font-size: 34px;
    margin-bottom: 15px;
}

#quick-overview {
    padding: 3em 0;
    height: auto;
}

#quick-overview ul {
    display: flex;
    justify-content: center;
}


#quick-overview ul li.overview-item {
    width: 100%;
}


.distance-list {
    max-height: unset;
    overflow: unset;
}

section#ekaanta-life .about-card,
section#amenities .about-card {
    padding: 25px;
    border: 0;
}

img.leaf-top.right, 
img.leaf-bottom.left,
img.leaf-top,
img.leaf-bottom {
    display: none;
}

section#ekaanta-life ul {
    margin: 0;
}
section#ekaanta-life ul li:last-child { margin-bottom: 0; }


section#amenities-2 {
    padding: 3em 0;
}
section#amenities-2 .row.g-4 {
    --bs-gutter-y: 0;
}


span.plus {
    display: none;
}

.amenity-content li {
    width: 100%;
}

.three .amenity-content li:nth-child(4):after, 
.three .amenity-content li:nth-child(8):after {
    opacity: 1;
}

.three .amenity-content li:nth-child(2):after, 
.three .amenity-content li:nth-child(4):after {
    opacity: 0;
}


.one .amenity-content ul.list-unstyled {
    width: 100%;
}

.two .amenity-content li:nth-child(4):after {
    opacity: 0;
}
.three .amenity-content li:nth-child(3):after {
    opacity: 1;
}

.four .amenity-content li:nth-child(2):after {
    opacity: 0;
}

.amenity-content li:after { opacity: 0 !important; }


.swiper-button-prev {
    left: 20px;
}
.swiper-button-next {
    right: 20px;
}


.counter-box.text-center {
    width: 60%;
}

    .counter-section {
        height: auto;
        padding: 60px 0;
    }

    .counter-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .counter-box h2 {
        font-size: 4rem;
        line-height: 60px;
    }

    .counter-box sup {
        font-size: 3rem;
        top: -20px;
    }
    
    footer.footer-section {
        padding-bottom: 6em;
    }

    footer.footer-section hr {
        padding-bottom: 3em;
    }
    
    .footer-logos-wrapper {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 26px;
    }
    
    .logo-separator {
        display: none;
    }
    
    figure.footer-qr-code {
        width: 200px;
        margin-left: 0;
        position: relative;
        top: 25px;
    }
    
    .footer-disclaimer {
        width: 100%;
        margin-top: 25px;
    }
    
     footer.footer-section br {
        display: none;
    }
    
    #quick-overview ul li.overview-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    
    .about-card:after {
        height: 60px;
        opacity: 1;
    }
    
    
/*    #quick-overview ul li.overview-item h6 {
        font-size: 16px;
    }*/
    #quick-overview ul li.overview-item p {
        font-size: 14px;
        line-height: 20px;
    }
    #quick-overview ul li.overview-item img.overview-icon {
        height: 40px;
    }
    
    .amenity-content {
        min-height: unset;
        max-height: unset;
    }
    
    .gallerySwiper .swiper-slide img {
        height: 500px
    }
    
    section#gallery:before, section#gallery:after {
        height: 30px;
    }
    
    .counter-box p {
        font-size: 13px;
        padding: 0 30px;
    }

    .gallerySwiper .swiper-slide img.eleven {
        object-position: -418px center;
    }

    .gallerySwiper .swiper-slide p {
    bottom: 15px;
    left: 15px;
    font-size: 14px;
}

    
    a.btn-schedule-now {
        margin-bottom: 20px;
    }
    section#CTA h2.section-title {
        padding: 0px 50px;
        text-align: center;
    }

    a.btn-cta {
        font-size: 16px;
    }

    .footer-logo {
        max-height: 40px;
    }

    .custom-cursor {
        display: none;
    }
}