body {
    margin: 0px;
    font-family: sans-serif;
    /* overflow: hidden; */
    --colorprimary: #b49053;
    --colorsecondary: #b49053;
}

.body.noscroll {
    overflow: hidden;
}

p {
    margin: 0px;
}

.section {
    padding: 1rem 5rem;
}

.overview {
    margin-top: 1rem;
    scroll-margin-top: 80px;
}

.sectionHeading {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 2rem 0;
}
.sectionHeading strong {
    color: var(--colorprimary);
}

.overviewPara {
    padding: 0rem;
    line-height: 1.8rem;
}

.clampText {
    margin: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
    text-align: justify;
    letter-spacing: 1px;
}

.readMoreBtn {
    color: var(--colorprimary);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: normal;
}

.highlight {
    background: transparent;
}

.highlightsection {
    display: flex;
    gap: 2%;
    justify-content: center;

}

.highlightSections {
    background-color: #f5f5f5;
}

.highlightImage {
    width: 40%;
    position: relative;
    padding-top: 5%;
}

.highlightpoints {
    padding: 1rem;
    width: 50%;
    background-color: #f0f0f0;
    z-index: 1000;
}

.highlightpoints ul li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 0.8rem;
    list-style-type: none;
}

li span {
    background-color: white;
    padding: 5px 7px;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--colorprimary);
}

.highlightBtn {
    color: white;
    background-color: var(--colorprimary);
    border: 0px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 0 10px;
    margin-left: 10%;
    font-size: 1rem;
}

.highlightImg1 {
    position: absolute;
    width: 100%;
    right: 0px;
    border-radius: 0 50px;
    /* height: auto; */
}

@media (max-width:768px) {
    .section {
        padding: 0rem;
    }

    .sectionHeading {
        padding: 1rem 1rem;
        margin: 0;
    }

    .overviewPara {
        padding: 0 1rem 1rem;
    }

    .highlight {
        background-color: #f0f0f0;
    }

    .highlightsection {
        display: block;
    }

    .highlightImage {
        display: none;
        /* width: 100%;
            position: relative;
            padding-top: 5%; */
    }

    .highlight-Imagewrapper {
        padding: 0rem 2rem;
    }

    .highlightImg1 {
        display: none;
        /* position: relative;
            bottom: 0;
            width: 100%;
            right: 0px;
            border-radius: 0 50px; */
        /* height: auto; */
    }

    .highlightpoints {
        width: 100%;
        margin: 0rem;
        padding: 0 0 2rem;
    }

    .highlightpoints ul {
        padding: 1rem;
        margin: 0;
    }

    .highlightpoints ul li {
        padding: 0.8rem 0rem;
    }

}

/* Price plan css */
#price {
    scroll-margin-top: 80px;
}

.section {
    padding: 1rem 5rem;
}

.priceSectionHeading {
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: 0rem 5rem 2rem;
    margin-top: 2rem;
}
.priceSectionHeading strong {
    color: var(--colorprimary);
}

.priceSectionWrapper {
    padding: 1rem 5rem;
    letter-spacing: normal;
}

.priceRow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10%;
}

.priceCard {
    background-image: #fff;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 0 10px;
    flex: 0 0 20%;
    margin-bottom: 1.5rem;
    box-shadow: 1px 4px 4px #e0e0e0;
    border: 1px solid #ededed;
    border-radius: 0px 25px;
}

.priceSize {
    font-size: 1rem;
    padding: 0.5rem 0rem;
}

.priceAmount {
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0.5rem 0 0.8rem;
}

.priceBtn {
    color: white;
    background-color: var(--colorprimary);
    border: 0px;
    padding: 0.8rem 0.5rem;
    border-radius: 0 10px;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width:768px) {
    .section {
        padding: 0rem;
    }

    .priceSectionHeading {
        padding: 1rem;
    }

    .priceSectionWrapper {
        padding: 1rem;
        letter-spacing: normal;
    }

    .priceRow {
        justify-content: space-around;
        gap: 0%;
    }

    .priceCard {
        margin-bottom: 1rem;
        flex: 0 0 40%;
        padding: 1rem 0.5rem;
    }

    .priceAmount {
        font-size: 1.4rem;
        font-weight: 700;
    }

    .priceBtn {
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* Header CSS */
header {
    background-color: white;
    box-shadow: 1px 2px 2px gray;
    position: fixed;
    top: 0px;
    width: 100vw;
    background-color: white;
    z-index: 2000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 5rem;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    gap: 10%;
}

.phone_url {
    border: 1px solid black;
    border-radius: 50px;
    color: black;
    display: flex;
    align-items: center;
    height: 40px;
    text-decoration: none;
}

.phone_url p {
    padding: 0px 10px;
}

.hamburger {
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.sidebar {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: -1px 1px 2px gray;
    padding: 2rem 2rem;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}

.openSidebar {
    transform: translateX(0%);
}

.sidebar-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    background-color: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

ul.nav-item-list {
    margin: 0;
}

.nav-item-list {
    line-height: 2.5rem;
    padding: 1rem;
    list-style-type: none;
}

.nav-item-list li {
    /* padding: 0.5rem 0; */
    border-bottom: 1px solid black;
}

.nav-item-list li:last-child {
    border-bottom: 0px;
}

.nav-item-list li a:hover {
    background-color: var(--colorprimary);
    padding: 0.5rem 1rem;
    color: white;
}

.nav-item-list a {
    text-decoration: none;
    color: black;
    width: 90%;
    display: block;
    padding: 0.5rem 0;
}

@media (max-width:768px) {

    .phone_url,
    .whatsapp_url {
        display: none;
    }

    nav {
        padding: 0.2rem 0.5rem;
    }
}

/* banner CSS */

.bannercontainer-heading {
    display: none;
}

.desktopbanner {
    display: block;
    position: relative;
    top: 3rem;
}

.bannerCard::after {
    background-image: linear-gradient(to right, rgb(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgb(0, 0, 0, 0), rgb(0, 0, 0, 0));
    inset: 0;
    content: "";
    position: absolute;
}

.bannerImage {
    width: 100%;
    height: 30rem;
}

.bannerDetails {
    position: absolute;
    top: 0rem;
    padding: 0 5rem;
}

.bannerHeading {
    color: white;
    font-size: 2.5rem;
    padding: 1rem 0rem;
    font-weight: 800;
}

.bannerLocation {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0.5rem 0 0;
}

.bannersubHeading {
    color: white;
    padding: 1rem 0rem;
}

.banneroffer-container {
    position: relative;
    left: 0%;
}

@media (max-width:480px) {
    .banneroffer-container {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width:481px) and (max-width:768px) {
    .banneroffer-container {
        width: fit-content;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

.bannerMove {
    position: relative;
    background-color: white;
    width: fit-content;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    border-radius: 0px 10px;
    /* z-index: 1; */
}

.bannerOffer {
    background-color: var(--colorprimary);
    color: white;
    list-style-position: inside;
    width: fit-content;
    padding: 1rem 1.5rem 1rem;
    margin-top: 0rem;
    line-height: 1.5rem;
    border-radius: 0px 25px;
    /* z-index: -1; */
}

.bannerOffer span {
    display: none;
}

.bannerPriceHeading {
    color: white;
    margin: 0.8rem 0rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.bannerPrice {
    color: var(--colorprimary);
    font-weight: 600;
    font-size: 2rem;
    text-align: left;
}

.bannerEnquireBtn {
    display: none;
}

.bannerForm {
    background-color: white;
    padding: 1.5rem;
    margin: 0rem 20rem 0rem;
    /* display: flex;
    justify-content: space-between; */
    z-index: 0;
    position: relative;
    border-radius: 0 30px;
    box-shadow: 1px 4px 4px #f0f0f0;
}

.bannerform-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

@media screen and (min-width:768px) and (max-width:1024px) {

    .bannerForm {
        margin: 0rem 10rem 0rem;
    }

    .bannerform-number {
        width: 60%;
        border-radius: 0px 10px 10px 0px;
        padding: 0.5rem 0.2rem;
    }

    .country-code {
        width: 30%;
    }

    .bannerSubmitBtn {
        font-size: 0.9rem;
    }

}

.formContent {
    display: none;
}

.input-wrapper {
    width: 37%;
    height: 3rem;
}

.submitbuttonWrapper {
    width: 30%;
}

.bannerform-name,
.bannerSubmitBtn,
.country-code,
.bannerform-number {
    height: 3rem;
    box-sizing: border-box;
    text-align: center;
}

.bannerform-name {
    width: 90%;
    border-radius: 10px;
    padding: 0.5rem 0.5rem;
}

.country-code {
    /* width: 20%; */
    border-radius: 10px 0px 0px 10px;
    color: #9a9a9a;
    text-align: center;
    border: 2px solid #ddd;
    background-color: #f5f5f5;
}

@media (min-width:1025px) {
    .bannerform-number {
        width: 65%;
        border-radius: 0px 10px 10px 0px;
        padding: 0.5rem 0.5rem;
    }

    .country-code {
        width: 25%;
        border: 2px solid #ddd;
    }
}

.bannerSubmitBtn {
    background-color: var(--colorprimary);
    border: 0px;
    color: white;
    width: 100%;
    border-radius: 0 10px;
    font-weight: 600;
    font-size: 1rem;
}

.bannerform-name,
.bannerform-number {
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    color: black;
}

input::placeholder {
    color: #9a9a9a;
}

.bannerform-check {
    display: flex;
    justify-content: center;
    gap: 2%;
    align-items: center;
}

.bannerFormConsentText {
    color: #555;
    display: block;
    font-size: 0.6rem;
}

.bannerform-mobilecheck {
    display: none;
}

@media (max-width: 768px) {

    .bannerImage {
        height: auto;
    }

    .bannerCard::after {
        background-image: none
    }

    .bannercontainer-heading {
        display: block;
        background-color: var(--colorprimary);
        text-align: center;
        padding: 1rem 1rem;
        color: white;
        border-radius: 0px 10px;
    }

    .bannerDetails {
        position: static;
        padding: 1rem;
    }

    .bannerHeading {
        text-align: center;
        color: black;
        font-weight: 800;
        padding: 0 0 1rem;
        font-size: 2rem;
    }

    .bannersubHeading {
        color: black;
    }

    .bannerMove {
        display: block;
        border: 1px solid var(--colorprimary);
    }

    .bannerLocation {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        color: #555;
    }

    .bannerOffer {
        margin: 0 auto 1rem;
        border-radius: 0 25px;
        /* background-color: #d7fcec;
        color: var(--colorprimary);
        /* list-style-type: none; */
        /* padding: 1rem; 
        line-height: 2rem;
        font-weight: 600;
        border: 1px solid var(--colorprimary);
        
        width: auto;
        margin: 0.1rem 0 1rem; */
    }

    /* .bannerOffer li {
    display: flex;
    justify-content: flex-start;
    gap: 2%;
    margin-bottom: 0.5rem;
} */

    .bannerOffer li span {
        display: block;
        padding: 0rem 0.5rem;
        color: white;
        background-color: var(--colorprimary);
        border-radius: 50px;
        margin-right: 10px;
        height: fit-content;
    }

    .bannerPriceHeading {
        color: black;
        margin: 0.5rem 0;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .bannerPrice {
        text-align: center;
    }

    .bannerEnquireBtn {
        display: block;
        color: white;
        background-color: var(--colorprimary);
        border: 0px;
        padding: 1rem 2.5rem;
        margin: 0px auto;
        font-weight: 600;
        border-radius: 0 10px;
        margin-top: 1.5rem;
        font-size: 1rem;
    }

    .bannerForm {
        display: block;
        background-color: black;
        padding: 1.5rem;
        border-radius: 0px;
        box-shadow: 1px 4px 4px gray;
        margin: 4rem 0px 0px;
    }

    .bannerform-container {
        display: block;
    }

    .formContent {
        display: block;
        color: white;
        margin-bottom: 2rem;
        text-align: justify;
    }

    .formHeading {
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0.5rem 0;
        letter-spacing: 1px;
    }

    .input-wrapper {
        width: 100%;
        height: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .submitbuttonWrapper {
        width: 100%;
        text-align: center;
    }

    .bannerform-name,
    .bannerSubmitBtn,
    .country-code,
    .bannerform-number {
        height: 2.5rem;
        box-sizing: border-box;
    }

    .bannerform-name {
        width: 100%;
        border-radius: 5px;
        padding: 0.5rem 2rem;
        text-align: left;
    }

    .country-code {
        width: 30%;
        border-radius: 5px 0px 0px 5px;
        color: #6d6767;
        text-align: center;
    }

    .bannerform-number {
        width: 70%;
        border-radius: 0px 5px 5px 0px;
        padding: 0.5rem 2rem;
        text-align: left;
    }

    .bannerSubmitBtn {
        margin-top: 1rem;
        background-color: var(--colorprimary);
        border: 0px;
        border-radius: 0px 10px;
        color: white;
        width: fit-content;
        padding: 0.5rem 2rem;
        font-size: 1rem;
    }

    .bannerform-name,
    .bannerform-number {
        background-color: rgb(240 240 240);
        border: 1px solid gray;
        color: black;
    }

    input::placeholder {
        color: #6d6767;
    }

    .bannerform-name:focus,
    .bannerform-number:focus,
    .country-code:focus {
        border: 2px solid var(--colorprimary);
        outline: var(--colorprimary);
    }

    .bannerform-mobilecheck {
        display: flex;
        justify-content: flex-start;
        align-items: baseline;
        gap: 2%;
    }

    .bannerFormConsentTextMobile {
        color: #fff;
        display: block;
        font-size: 0.7rem;
    }

    .bannerform-check {
        display: none;
    }

}

/* Extra Banner CSS */
.banner {
    display: flex;
    transition: transform 0.3s ease-in-out;
    flex-wrap: nowrap;
    box-sizing: border-box;
}

.bannerImage {
    width: 100%;
}

.bannerTrack {
    width: 100%;
    overflow: hidden;
}

.bannerCard {
    width: 100%;
    flex: 0 0 100%;
    position: relative;
}

/* Floor Plan CSS */
#floorplan {
    scroll-margin-top: 80px;
}

.floorsection {
    padding: 0.1rem 5rem 2rem;
    margin-top: 2rem;
}

.floorsectionHeading {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 2rem 0;
}
.floorsectionHeading strong {
    color: var(--colorprimary);
}

.floorplan-Wrapper {
    display: flex;
    justify-content: space-around;
    gap: 2%;
}

.downloadBrochureBtn {
    width: auto;
    color: #fff;
    background-color: var(--colorprimary);
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--colorprimary);
    cursor: pointer;
    border-radius: 0 10px;
    font-weight: 600;
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
}

.floorCard {
    border: 1px solid var(--colorprimary);
    border-radius: 0 30px;
    background-color: white;
}

.floorcardImg {
    position: relative;
    cursor: pointer;
}

.floorcardHeading {
    padding: 0.8rem 1.5rem;
    margin: 0px;
    text-align: center;
    font-weight: 600;
    color: var(--colorprimary);
    background-color: #eff6e2;
    width: auto;
    border-radius: 0px 30px 0 0;
}

.floor-item {
    text-align: center;
}

.floorcardImg img {
    border-radius: 0 0 0 30px;
}

.floorCard img:hover {
    filter: grayscale(1);
}

.floor_nextBtn {
    position: absolute;
    right: 0px;
}

.floor-arrows {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* display: flex;
            justify-content: space-between; */
    width: 100%;
    pointer-events: none;
}

@media (max-width:768px) {
    .floorsection {
        padding: 1rem 0rem;
        background-image: none;
    }

    .floorsectionHeading {
        padding: 1rem;
        margin: 0;
    }

    .floorplan-Wrapper {
        display: flex;
        flex-wrap: nowrap;
        transition: transform 0.3s ease-in-out;
        width: auto;
        gap: 0;
    }

    .floorCard {
        padding: 1rem;
        border: 0;
    }

    .floor-item {
        text-align: center;
        flex: 0 0 100%;
        height: 30rem;
        /* border: 1px solid black; */
    }

    .floorcardHeading {
        width: fit-content;
        border-radius: 0 10px;
    }

    .floorcardImg img {
        border-radius: 0px 30px;
        height: 20rem;
    }

    .downloadBrochureBtn {
        background-color: var(--colorprimary);
        color: white;
        font-size: 1.1rem;
        border-radius: 0 10px;
        font-size: 1rem;
        width: auto;
        padding: 1rem 2rem;
        margin: 0.2rem 0 1rem 0;
    }

    .floorplan-caurosel-container {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .floor-arrows {
        display: block;
    }
}

/* Gallry CSS */
#gallery {
    scroll-margin-top: 80px;
}

.gallery {
    padding: 1rem 5rem 1rem;
    background-color: #f5f5f5;
}

.galleryCaurosel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.gallerySlide {
    width: 100%;
    display: flex;
    gap: 5%;
    flex-wrap: nowrap;
    transition: transform 0.3s ease-in-out;
}

.galleryCard {
    flex: 0 0 30%;
    box-sizing: border-box;
    padding: 1rem;
    overflow: hidden;

}

.galleryCard img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
}

.galleryCard img:hover {
    transform: scale(1.1);
}

.overlay {
    position: fixed;
    top: 3rem;
    padding: 5rem 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    display: none;
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.gallery-popupWrapper {
    display: block;
    /* align-items: center;
            justify-content: space-between; */
    padding: 0rem;
    position: relative;
}

.popup-imageholder {
    width: 100%;
    height: 100%;
    text-align: center;
}

.arrowBtn,
.gallery-popup-close {
    padding: 1rem;
    border: 0px;
    /* border: 1px solid white; */
    color: white;
    font-size: 2rem;
    pointer-events: auto;
}

.arrowBtn {
    background-color: rgba(0, 0, 0, 0.7);
}

.car_nextBtn {
    position: absolute;
    right: 0px;
}

.gallery-popup-close {
    position: absolute;
    top: 1rem;
    right: 5rem;
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0px;
    /* pointer-events: none; */
}

.gallery-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* display: flex;
            justify-content: space-between; */
    width: 100%;
    pointer-events: none;
}

.gallery-popupimage {
    width: 700px;
    height: 400px;
}

.galleryDownloadBtn {
    padding: 0.8rem 2rem;
    text-align: center;
    background-color: var(--colorprimary);
    color: white;
    border: 0px;
    border-radius: 0 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width:768px) {
    .gallery {
        padding: 0.5rem 0rem;
    }

    .gallery-popupWrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0rem;
    }

    .gallery-popup-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .arrowBtn,
    .gallery-popup-close {
        padding: 0.8rem;
        /* border-radius: 50%; */
        border: 0px;
        /* border: 1px solid white; */
        /* background-color: rgba(255,255,255,0.3); */
        color: white;
    }

    .popup-imageholder {
        width: 100%;
        height: 100%;
        text-align: center;
    }

    .galleryCard {
        flex: 0 0 100%;
        box-sizing: border-box;
        padding: 1rem;
        overflow: hidden;
    }

    .gallery-popupimage {
        width: 300px;
        height: 300px;
    }

}

@media (max-width:600px) {
    .carousel-arrows {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0px;
        /* pointer-events: none; */
    }
}

/* location section Css */
/* .section {
            padding: 1rem 5rem;
        }
        .sectionHeading {
            font-size: 1.5rem;
            text-transform: uppercase;
        } */
#location {
    scroll-margin-top: 80px;
}

.locationWrapper {
    display: flex;
    gap: 2%;
}

.map-frame {
    width: 40%;
}

.accordion-wrapper {
    width: 60%;
}

.accordionBtn-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid gray;
}

.accordionBtn {
    background-color: transparent;
    padding: 0.8rem 1rem;
    border: 0px;
    cursor: pointer;
    border-radius: 0 10px;
    font-size: 0.9rem;
}

.accordion-active {
    background-color: var(--colorprimary);
    color: white;
    font-weight: 600;
}

.mobile-accordionBtn {
    display: none;
}

.accordion-content {
    line-height: 2rem;
    list-style-position: outside;
    display: none;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0px 0px 0px 10px;
    background-color: #f5f5f5;
    padding: 0.8rem;
    margin-top: 1rem;
}

.contentactive {
    display: block;
    transform: translateY(0%);
    border: 1px solid var(--colorprimary);
    border-radius: 0px 10px;
}

.accordion-content ul li span {
    color: var(--colorprimary);
    background-color: transparent;
}

.locationEnquire {
    margin-top: 2rem;
    text-align: center;
}

.locationEnquireBtn {
    padding: 0.8rem 2rem;
    text-align: center;
    background-color: var(--colorprimary);
    color: white;
    border: 0px;
    border-radius: 0 10px;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width:900px) {

    .locationWrapper {
        display: block;
        padding: 0 1rem 1rem;
    }

    .map-frame {
        width: 100%;
    }

    .map-frame iframe {
        height: 300px;
    }

    .accordionBtn-wrapper {
        display: none;
    }

    .accordion-wrapper {
        width: 100%;
        margin-top: 1rem;
    }

    .mobile-accordionBtn {
        display: block;
        width: 100%;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: white;
        background-color: var(--colorprimary);
        border: 0px;
        border-radius: 0px 10px;
    }

    .accordion-arrow {
        font-size: 1rem;
        font-weight: 600;
        transition: transform 0.3s ease;
        transform: rotate(0deg);
    }

    .accordion-active {
        color: white;
        background-color: var(--colorprimary);
        border: 1px solid var(--colorprimary);
        border-radius: 0px 10px 0px 0px;
    }

    .accordion-arrow.accordion-arrow-active {
        transform: rotate(90deg);
    }

    .contentactive {
        margin-top: 0rem;
        border-radius: 0 0 0 10px;
    }

    .accordion-contentWrapper {
        margin-bottom: 0.2rem;
    }

    .accordion-content ul {
        margin: 0rem;
    }
}

/* About CSS */
.about {
    padding: 1rem 5rem;
    background-color: #f5f5f5;
    line-height: 1.5rem;
}

.aboutSectionHeading {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 2rem 0;
}
.aboutSectionHeading strong {
    color: var(--colorprimary);
}

.aboutlogo {
    text-align: center;
    margin-top: 1rem;
}

.aboutpara {
    text-align: justify;
}

.aboutEnquireBtn {
    color: white;
    background-color: var(--colorprimary);
    padding: 0.8rem 2rem;
    border: 0px;
    border-radius: 0 10px;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width:768px) {
    .about {
        padding: 2rem 1rem 1rem;
    }
}

/* Footer css */
.footer-container {
    background-color: var(--colorprimary);
    color: white;
    padding: 2rem 5rem;
    text-align: justify;
    line-height: 1.5rem;
    letter-spacing: normal;
}

.footer-qr-section {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-qr-image {
    width: 100px;
    height: 100px;
}

.footer-rera-number {
    margin: 0px;
    font-size: 0.9rem;
}

.footer-rera-info {
    font-size: 0.9rem;
    line-height: 1.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.footer-rera-item {
    display: flex;
    gap: 0.5rem;
}

.footer-disclaimer-text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-links-container {
    font-size: 0.9rem;
    text-align: center;
}

.footer-link,
.footer-rera-link {
    color: white;
}

@media (max-width:768px) {
    .footer-container {
        padding: 2rem 1rem 5rem;
    }
}

/* Video css */
#virtualsite {
    scroll-margin-top: 80px;
}

.video-imageHolder {
    width: 100%;
    height: 300px;
    margin: 1rem 0 0;
}

.videoImg {
    width: 100%;
    height: 300px;
    object-fit: fill;
}

.video-playImg {
    width: 100px;
    height: 100px;
}

.video-playImg:hover {
    transform: scale(1.2);
}

.video-wrapper {
    position: relative;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    cursor: pointer;
}

.playBtn {
    color: black;
    background-color: white;
    padding: 0.8rem 2rem;
    border: 0px;
    border-radius: 0 10px;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 1rem;
}
#virtual-tour-heading {
    padding: 0 5rem 1rem;
    color: var(--colorprimary);
}

@media (max-width:768px) {
    .video-imageHolder {
        margin: 0px;
    }
    #virtual-tour-heading {
        padding: 0 1rem 1rem;
    }
}

/* Amenities CSS */
#amenities {
    scroll-margin-top: 80px;
}

.amenities {
    padding: 1rem 5rem 1rem;
    background-color: #f5f5f5;
}

.amenitiesCaurosel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.amenitiesSlide {
    width: 100%;
    display: flex;
    gap: 5%;
    flex-wrap: nowrap;
    transition: transform 0.3s ease-in-out;
}

.amenitiesCard {
    flex: 0 0 30%;
    box-sizing: border-box;
    padding: 1rem;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
}

.amenitiesCard img {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px;
}

.amenities-description {
    color: var(--colorprimary);
    background-color: rgb(255, 255, 255, 0.9);
    z-index: 1000;
    position: absolute;
    bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0 10px;
    font-weight: 600;
    text-wrap: nowrap;
}

.amenitiesCard:hover {
    /* transition: transform 3s ease-in-out; */
    transform: scale(1.1);
}

.amenitiesindicator {
    position: absolute;
    top: 1.5rem;
    right: 6rem;
}

.amenities-overlay {
    position: fixed;
    top: 3rem;
    padding: 5rem 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    display: none;
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.amenities-popupWrapper {
    display: block;
    /* align-items: center;
            justify-content: space-between; */
    padding: 0rem;
    position: relative;
}

.amenities-popup-imageholder {
    width: 100%;
    height: 100%;
    text-align: center;
}

.amenities-popup-close {
    padding: 1rem;
    border: 0px;
    /* border: 1px solid white; */
    color: white;
    font-size: 2rem;
    pointer-events: auto;
}

.amenities_nextBtn {
    position: absolute;
    right: 0px;
}

.amenities-popup-close {
    position: absolute;
    top: 1rem;
    right: 5rem;
    background-color: rgba(0, 0, 0, 0.7);
}

.amenities-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* display: flex;
            justify-content: space-between; */
    width: 100%;
    pointer-events: none;
}

.amenities-popupimage {
    width: 700px;
    height: 400px;
}

.amenitiesDownloadBtn {
    padding: 0.8rem 2rem;
    text-align: center;
    background-color: var(--colorprimary);
    color: white;
    border: 0px;
    border-radius: 0 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width:768px) {
    .amenities {
        padding: 1rem 0rem;
    }

    .amenities-popupWrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0rem;
    }

    .amenities-popup-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .amenities-popup-close {
        padding: 0.8rem;
        /* border-radius: 50%; */
        border: 0px;
        /* border: 1px solid white; */
        /* background-color: rgba(255,255,255,0.3); */
        color: white;
    }

    .amenities-popup-imageholder {
        width: 100%;
        height: 100%;
        text-align: center;
    }

    .amenitiesCard {
        flex: 0 0 100%;
        box-sizing: border-box;
        padding: 1rem;
        overflow: hidden;
    }

    .amenities-popupimage {
        width: 300px;
        height: 300px;
    }

}

/* popup-form */
#popupform {
    display: none;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    height: 100%;
    z-index: 2000;
}

.popup-form-container {
    z-index: 3000;
    position: fixed;
    top: 50%;
    text-align: center;
    background-color: white;
    width: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0px 20px;
    padding: 1rem;
    /* box-shadow: 5px 5px 15px rgb(255, 255, 255, 0.5); */
}

.popup-form-heading {
    color: var(--colorprimary);
    padding: 0;
}

.popupform-formholder {
    padding: 0 0.5rem;
    /* width: 100%; */
}

.popup-name-container {
    padding: 1rem 0rem;
    box-sizing: border-box;
}

.popup-form-name {
    padding: 1rem 2rem;
    border: 0px;
    background-color: #f5f5f5;
    box-sizing: border-box;
    width: 100%;
    border-radius: 7px;
}

.popup-number-container {
    display: flex;
    gap: 2%;
    justify-content: center;
    padding: 1rem 0rem;
    box-sizing: border-box;
}

.popup-country-code {
    padding: 1rem 0.5rem;
    width: 30%;
    border: 0px;
    background: #f5f5f5;
    border-radius: 7px;
}

.popup-form-number {
    padding: 1rem 2rem;
    width: 70%;
    border: 0;
    background: #f5f5f5;
    border-radius: 7px;
}

.popup-submitBtn {
    color: white;
    background-color: var(--colorprimary);
    border: 0px;
    margin: 1rem 0 2rem;
    padding: 1rem 2rem;
    border-radius: 0 10px;
}

.popup-form-name:focus,
.popup-country-code:focus,
.popup-form-number:focus {
    outline: var(--colorprimary) solid 1px;
    /* border: var(--colorprimary); */
}

.popup-overlay-close {
    background-color: white;
    color: var(--colorprimary);
    font-size: 1.5rem;
    border: 1px solid var(--colorprimary);
    cursor: pointer;
    position: absolute;
    top: 10%;
    right: 5%;
}

.popup-form-check {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 2%;
}

.firstFormConsentText {
    color: #555;
    display: block;
    font-size: 0.7rem;
}

@media (max-width:768px) {
    .popup-form-container {
        width: 80%;
        text-align: left;
    }

    .popup-country-code {
        padding: 1rem 0.5rem;
        width: 40%;
        border: 0px;
        background: #f5f5f5;
    }

    .popup-form-number {
        padding: 1rem 2rem;
        width: 60%;
        border: 0;
        background: #f5f5f5;
    }

    .popup-form-heading {
        color: var(--colorprimary);
        padding: 0 1rem;
    }

    .popup-submitBtn-container {
        text-align: center;
    }
}

/* IVR code */
#IVR_Mobile {
    display: none;
}

@media (max-width:768px) {
    #IVR_Mobile {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100vw;
        color: white;
        background-color: white;
        box-shadow: 0px -1px 5px #cfcfcf;
    }

    .ivr-container {
        display: flex;
        justify-content: center;
        gap: 2%;
        padding: 0.5rem 1rem;
    }

    /* .ivr-container button {
                /* flex: 0 0 50%; */
    /* box-sizing: border-box;
                width: auto;
            } */
    .ivr-phone-container {
        width: 50%;
        box-sizing: border-box;
    }

    .ivr-phone-container a {
        width: 100%;
        padding: 0.5rem 0rem;
        border: 0px;
        border-radius: 10px;
        background-color: #f1f1f1;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }

    .ivr-phone-container a button {

        color: black;
        font-size: 1rem;
        font-weight: 600;
        background: transparent;
        border: 0;
        padding: 0.5rem;
    }

    .fa-call {
        --icon-url: url('/assests/images/icons/callDark.svg');
    }

    .fa-whatsapp {
        --icon-url: url('/assests/images/icons/whatsapp2.svg');

    }

    .fa-icon {
        width: 1.5rem;
        height: 1.5rem;
        --webkit-mask: var(--icon-url);
        mask: var(--icon-url) no-repeat center/contain;
        background-color: black;
    }
}

/* in general code */

/* @keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
} */

@keyframes popout {

    0%,
    75%,
    100% {
        transform: scale(1);
    }

    37.5% {
        transform: scale(1.12);
    }
}

.btn-animated {
    background: linear-gradient(270deg, var(--colorprimary), var(--colorsecondary), var(--colorprimary));
    background-size: 400% 400%;
    animation: popout 2s ease infinite;
    cursor: pointer;
}

label {
    display: none;
}

/* fadde effect */
.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlightImage {
    transform: translateX(100%);
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.highlightImage.show {
    transform: translateX(0);
    opacity: 1;
}

/* PDF */
/* Desktop Horizontal Button (Right Bottom) */
.pdf-download-btn-desktop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 0;
    cursor: pointer;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    animation: desktopFloat 4s ease-in-out infinite;
}

@keyframes desktopFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

.pdf-download-btn-desktop:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: #ff4444;
    animation-play-state: paused;
}

.pdf-download-btn-desktop:active {
    transform: translateY(-2px) scale(0.98);
}

/* Desktop Text Section */
.desktop-text {
    padding: 15px 25px;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
}

.desktop-title {
    display: block;
    font-size: 18px;
    margin-bottom: 2px;
    animation: textShimmer 3s ease-in-out infinite;
}

.desktop-subtitle {
    display: block;
    font-size: 14px;
    color: #666;
}

@keyframes textShimmer {

    0%,
    100% {
        color: #333;
    }

    50% {
        color: #ff4444;
    }
}

/* Desktop PDF Icon */
.desktop-pdf-icon {
    background: #ff4444;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    position: relative;
    overflow: hidden;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        background: #ff4444;
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
    }

    50% {
        background: #ff6666;
        box-shadow: 0 0 0 8px rgba(255, 68, 68, 0);
    }
}

.desktop-pdf-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: desktopShine 2.5s ease-in-out infinite;
}

@keyframes desktopShine {
    0% {
        transform: rotate(45deg) translate(-100%, -100%);
    }

    50% {
        transform: rotate(45deg) translate(100%, 100%);
    }

    100% {
        transform: rotate(45deg) translate(-100%, -100%);
    }
}

.desktop-pdf-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
    z-index: 2;
    position: relative;
}

/* Mobile Vertical Button (Left Center) */
.pdf-download-btn-mobile {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 0;
    cursor: pointer;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    animation: mobileFloat 3.5s ease-in-out infinite;
}

@keyframes mobileFloat {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(10px);
    }
}

.pdf-download-btn-mobile:hover {
    transform: translateY(-50%) scale(1.08) rotate(-2deg);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: #ff4444;
    animation-play-state: paused;
}

.pdf-download-btn-mobile:active {
    transform: translateY(-50%) scale(0.95);
}

/* Mobile PDF Icon */
.mobile-pdf-icon {
    background: #ff4444;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    animation: mobileIconSpin 4s linear infinite;
}

@keyframes mobileIconSpin {
    0% {
        transform: rotate(0deg);
        background: #ff4444;
    }

    25% {
        background: #ff6666;
    }

    50% {
        transform: rotate(180deg);
        background: #ff4444;
    }

    75% {
        background: #ff6666;
    }

    100% {
        transform: rotate(360deg);
        background: #ff4444;
    }
}

.mobile-pdf-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: mobileRipple 2s ease-out infinite;
}

@keyframes mobileRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

.mobile-pdf-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
    z-index: 2;
    position: relative;
    animation: iconBounce 1.5s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Mobile Text Section */
.mobile-text {
    padding: 20px 12px;
    color: #333;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.mobile-title {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    animation: mobileTextGlow 2.5s ease-in-out infinite alternate;
}

.mobile-subtitle {
    display: block;
    font-size: 12px;
    color: #666;
}

@keyframes mobileTextGlow {
    0% {
        color: #333;
        text-shadow: none;
    }

    100% {
        color: #ff4444;
        text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
    }
}

/* Adobe PDF Logo SVG */
.adobe-pdf-logo {
    animation: logoBreath 3s ease-in-out infinite;
}

@keyframes logoBreath {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Sparkle Effects */
.sparkle-effect {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    opacity: 0;
}

.desktop-sparkle-1 {
    top: 10px;
    right: 80px;
    animation-delay: 0s;
}

.desktop-sparkle-2 {
    bottom: 10px;
    right: 120px;
    animation-delay: 0.7s;
}

.desktop-sparkle-3 {
    top: 30px;
    right: 140px;
    animation-delay: 1.4s;
}

.mobile-sparkle-1 {
    top: 15px;
    left: 60px;
    animation-delay: 0.3s;
}

.mobile-sparkle-2 {
    bottom: 80px;
    right: 15px;
    animation-delay: 1s;
}

.mobile-sparkle-3 {
    top: 80px;
    right: 60px;
    animation-delay: 1.7s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Responsive Design */
@media (min-width: 769px) {
    .pdf-download-btn-desktop {
        display: flex;
    }

    .pdf-download-btn-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .pdf-download-btn-desktop {
        display: none;
    }

    .pdf-download-btn-mobile {
        display: flex;
        right: 2%;
        left: auto;
    }
}

@media (max-width: 480px) {
    .pdf-download-btn-mobile {
        right: 15px;
        left: auto;
    }

    .mobile-pdf-icon {
        width: 45px;
        height: 45px;
    }

    .mobile-pdf-icon svg {
        width: 22px;
        height: 22px;
    }

    .mobile-text {
        padding: 18px 10px;
    }

    .mobile-title {
        font-size: 13px;
    }

    .mobile-subtitle {
        font-size: 11px;
    }
}

/* Click ripple effect */
.click-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 68, 68, 0.3);
    transform: scale(0);
    animation: clickRippleAnim 0.6s ease-out;
    pointer-events: none;
}

@keyframes clickRippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}