html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    display: block;
    margin: 0;
    padding: 0;
}

*,
:after,
:before {
    box-sizing: border-box;
}

.noto-serif {
    font-family: "Noto Serif", serif !important;
}

.page-container {
    max-width: 88.89%;
    display: block;
    margin: 0 auto;
}
.page-container.powerHouseContainer{
    padding-top: 20px !important;

}

.page-heading {
    font-family: "Noto Serif", serif !important;
    font-weight: 400;
    font-size: 46px;
    line-height: 69px;
}


@media(max-width: 768px) {
    .page-container {
        max-width: 100%;
        padding: 0 16px;
    }
}

.page-btn {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    min-width: 238px;
    padding: 12px 24px;
    min-height: 48px;
    transition: .4s;
    text-decoration: none;
    text-align: center;
}

.bg-black-btn {
    background: #202020;
    color: #FFFFFF;
    border: 1px solid #202020;
}

.bg-black-btn:hover {
    background: #FFFFFF;
    color: #202020;
}

.bg-gold-btn {
    background: #C49A6C;
    color: #FFFFFF;
    font-size: 20px;
}

.bg-gold-btn:hover {
    background: #FFE5C9;
    color: #312727;
}

.outline-gold-btn {
    border-color: #C49A6C !important;
    background-color: transparent;
    color: #C49A6C;
}

.outline-gold-btn:hover {
    background-color: #C49A6C;
    color: #312727;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.text-white {
    color: #FFFFFF;
}

.black-text {
    color: #202020;
}

.flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

.relative {
    position: relative;
}

button {
    font-family: "Manrope", sans-serif !important;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    border: none;
}

.w-full {
    width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

@media (max-width: 1200px) {
    .page-btn {
        font-size: 14px;
        line-height: 20px;
        padding: 10px;
        min-height: 42px;
    }

    .page-heading {
        font-size: 28px;
        line-height: 40px;
    }
}

/* navigation */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    background: #FFFFFF;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    height: 80px;
    z-index: 20;
}

.nav-wrap .nav-inner {
    width: 88.89%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.nav-wrap .nav-inner .left-section {
    gap: 80px;
}

.nav-wrap .nav-inner .logo img {
    width: 138px;
}

.nav-wrap .nav-inner .menu-wrap {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 62px;
    padding: 0;
    margin: 0;
}

.nav-wrap .nav-inner .menu-wrap .menu-item {
    position: relative;
}

.nav-wrap .nav-inner .menu-wrap .menu-item a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: -0.4px;
    color: #202020;
    text-decoration: none;
    transition: 0.3s; 
}

.nav-wrap .nav-inner .menu-wrap .menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #C49A6C;
  transition: width 0.3s ease; 
}

.nav-wrap .nav-inner .menu-wrap .menu-item a:hover {
    color: #C49A6C;
}

.nav-wrap .nav-inner .menu-wrap .menu-item a:hover::after {
  width: 100%;
}

.nav-wrap .nav-inner .page-btn {
    padding: 6px;
    min-height: 40px;
    min-width: 106px;
    font-weight: 500;
}

.nav-wrap .nav-inner .menu-icon {
    display: none !important;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 8px;
    background: transparent;
}

.nav-wrap .nav-inner .menu-icon:hover .bar {
    background-color: #C49A6C;
}

.nav-wrap .nav-inner .menu-icon .bar {
    width: 32px;
    height: 2px;
    background-color: #202020;
    transition: .4s;
}

.enquire-btn {
    text-decoration: none;
    text-align: center;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #FFFFFF;
    color: #FFFFFF;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 1000;
}

.sidebar.active {
    left: 0;
}

.sidebar .logo-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.sidebar .logo-wrap img {
    width: 138px;
}

.sidebar .close-btn {
    position: absolute;
    top: 24px;
    right: 20px;
    background-color: transparent;
    padding: 0;
    font-size: 56px;
    font-weight: 100;
    line-height: 0;
    color: #202020;
    height: 24px;
}

.sidebar .close-btn:hover {
    color: #C49A6C;
}

.sidebar .menu {
    list-style: none;
    padding: 24px;
    margin: 0;
}

.sidebar .menu-item {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: -0.4px;
    font-weight: 500;
    color: #202020;
    padding: 0 0 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sidebar .menu-item a {
    color: #202020;
    text-decoration: none;
}
.sidebar .menu-item .enquire-btn {
    color: #ffffff;
    text-decoration: none;
}

.sidebar .menu-item a:hover {
    color: #C49A6C;
}

.sidebar .menu-item.show {
    opacity: 1;
    transform: translateY(0);
}

.sidebar .enquire-btn {
    display: block;
    padding: 6px;
    min-height: 40px;
    width: 100%;
    font-weight: 500;
    max-width: 400px;
    margin: 16px auto;
}

@media (max-width: 1366px) {
    .nav-wrap .nav-inner .menu-wrap {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 32px;
    }
}

@media (max-width: 1200px) {
    .nav-wrap .nav-inner .left-section {
        gap: 36px;
    }

    .nav-wrap .nav-inner .menu-wrap {
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .nav-wrap .nav-inner .menu-icon {
        display: flex !important;
    }

    .nav-wrap .nav-inner .menu-wrap {
        display: none;
    }

    .nav-wrap .nav-inner .enquire-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-wrap .nav-inner {
        width: 100%;
        padding: 16px;
    }
}

/* top section */
.top-text-wrap {
    margin-top: 194px;
}

.top-of-heading {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: #202020;
}

.top-of-heading .colored {
    color: #C49A6C;
}

.top-text-wrap .text-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.top-text-wrap .top-heading {
    font-family: "Noto Serif", serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 75.8px;
    max-width: 860px;
}

.top-text-wrap .page-btn {
    margin-top: 24px;
}

.top-banner {
    margin-top: 42px;
}


.top-banner img {
    width: 100%;
    height: 735px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1200px) {
    .page-btn {
        font-size: 14px;
        line-height: 20px;
        padding: 10px;
        min-height: 42px;
    }

    .top-text-wrap {
        margin-top: 160px;
    }

    .top-of-heading {
        font-size: 14px;
        line-height: 20px;
    }

    .top-text-wrap .top-heading {
        font-size: 42px;
        line-height: 52px;
    }

    .top-banner {
        margin-top: 40px;
    }

    .top-banner img {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .top-text-wrap {
        margin-top: 120px;
    }
}

/* @media (max-width: 576px) {
    .top-text-wrap .page-btn {
        width: 100%;
    }
} */

/* land or house selling section */
.land-selling-section {
    max-width: 883px;
    display: block;
    margin-left: auto;
    margin-top: 80px;
}

.land-selling-section .top-of-heading {
    margin-bottom: 28px;
    font-size: 20px;
}

.land-selling-section .para {
    font-weight: 500;
    font-size: 26px;
    line-height: 39px;
    margin-bottom: 32px;
    color: #48494B;
}


@media (max-width: 1200px) {
    .land-selling-section {
        max-width: 100%;
        margin-top: 60px;
    }

    .land-selling-section .top-of-heading {
        margin-bottom: 16px;
        color: #202020;
    }

    .land-selling-section .para {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .land-selling-section {
        margin-top: 48px;
    }

    .land-selling-section .para {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    .land-selling-section .page-btn {
        width: 100%;
    }
}

/* map section */
.landing-map {
    margin-top: 50px;
}

.landing-map img {
    width: 100%;
    height: calc(100vh - 170px);
    object-fit: contain;
    background-color: #efebe4;
}

@media (max-width: 1200px) {
    .landing-map {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .landing-map {
        margin-top: 28px;
    }
    .landing-map img {
        width: 100%;
        height: calc(100% - 400px);
        object-fit: contain;
        background-color: #efebe4;
    }
    
}

@media (min-width: 768px) and (max-width: 1180px) {
    
    .landing-map img {
        width: 100%;
        height: calc(100% - 400px);
        object-fit: contain;
        background-color: #efebe4;
    }
    
}


/* Featured projects */
.swiper-scrollbar {
    background: #FFF6ED;
    left: 0 !important;
    bottom: 0 !important;
    width: calc(100%) !important;
    overflow: hidden;
    
    
}

.swiper-scrollbar .swiper-scrollbar-drag {
    background: #C49A6C;
}





.featured-project-section {
    margin-top: 80px;
    background-color: #202020;
    padding: 42px 0;
}

.lifeStyleSlider {
    padding-bottom: 45px;
    margin-top: 48px;
}

.lifeStyleSlider .slide-wrap {
    position: relative;
    height: 511px;
    width: 100%;
}

.lifeStyleSlider .slide-wrap .slide-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.lifeStyleSlider .slide-wrap .slide-img1 {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.lifeStyleSlider .swiper-wrapper {
    padding-left: 5.55%;
}

.lifeStyleSlider .slide-wrap .text-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180.34deg, rgba(0, 0, 0, 0.24) 71.4%, #000000 99.71%);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 40px;
    transition: background-color 0.6s ease;
}

.lifeStyleSlider .animate-text {
    position: absolute;
    left: 40px;
    bottom: 40px;
    max-width: 554px;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

.lifeStyleSlider .animate-text .btn-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.lifeStyleSlider .animate-text .btn-wrap .page-btn {
    font-size: 14px;
    line-height: 24px;
    min-height: 36px;
    padding: 5px 8px;
    min-width: 117px;
    border: 1px solid transparent;
}

.lifeStyleSlider .title {
    font-weight: 700;
    font-size: 26px;
    line-height: 36.4px;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateY(0);
    margin-bottom: 8px;
}

.lifeStyleSlider .title .sm-text {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}

.lifeStyleSlider .para {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
}

.lifeStyleSlider .about-text {
    font-size: 9px;
    line-height: 12px;
    color: #FFFFFF;
    font-weight: 500;
    width: 157px;
    font-style: italic;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateY(0);
}

.lifeStyleSlider .slide-wrap:hover .animate-text {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lifeStyleSlider .slide-wrap:hover .text-wrap {
    background: linear-gradient(180.14deg, rgba(0, 0, 0, 0.24) 29.4%, #000000 99.88%);
}

.lifeStyleSlider .slide-wrap:hover .title--opacity {
    opacity: 0;
    transform: translateY(-10px);
}

.lifeStyleSlider .slide-wrap:hover .about-text {
    opacity: 0;
    transform: translateY(-10px);
}

@media (max-width: 1200px) {
    .featured-project-section {
        margin-top: 60px;
        padding: 45px 0;
    }

    .lifeStyleSlider .slide-wrap .text-wrap {
        padding: 24px;
    }

    .lifeStyleSlider .animate-text {
        max-width: 89%;
        left: 24px;
        bottom: 24px;
    }

    .lifeStyleSlider .title {
        font-size: 22px;
        line-height: 30px;
    }

    .lifeStyleSlider .title .sm-text {
    font-size: 16px;
    line-height: 22px;
}
}

@media (max-width: 768px) {
    .swiper-scrollbar {
        left: 16px !important;
    }

    .featured-project-section {
        margin-top: 48px;
        padding: 32px 0;
    }

    .lifeStyleSlider .slide-wrap {
        height: 480px;
    }

    .lifeStyleSlider .swiper-wrapper {
        padding-left: 16px;
    }

    .lifeStyleSlider {
        padding-bottom: 36px;
        margin-top: 36px;
        padding-right: 34px;
    }

    .lifeStyleSlider .slide-wrap .text-wrap {
        padding: 16px;
    }

    .lifeStyleSlider .animate-text {
        left: 16px;
        bottom: 16px;
    }
}

/* project listing */

.project-listing-section {
    margin-top: 40px;
}

.project-listing-section .page-heading {
    margin-bottom: 40px;
}

.project-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.project-tabs .tab-button {
    padding: 8px 16px;
    border-radius: 4px;
    background: transparent;
    min-height: 40px;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: #202020;
    transition: .4s;
}

.project-tabs .tab-button.active,
.project-tabs .tab-button:hover {
    background-color: #FEF2E2;
}

.project-tab-content {
    position: relative;
}


.project-tab-content .tab-panel {
    opacity: 0;
    transition: opacity 0.4s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: none;
}

.project-tab-content .tab-panel.active {
    display: block;
    opacity: 1;
    position: relative;
}

.projectListingSlider .swiper-slide .slide-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 10px;
}
.mobileSlider{
    display: none;
}

.projectListingSlider .swiper-slide .slide-wrap .content {
    width: calc(50% - 20px);
}

.projectListingSlider .swiper-slide .slide-wrap .content .img {
    width: 100%;
    /* height: 384px; */
    object-fit: contain;
}
.projectListingSlider .swiper-slide .slide-wrap .content .img1 {
    width: 100%;
    height: 384px;
    object-fit: cover;
}

.projectListingSlider .swiper-slide .slide-wrap .content .text {
    font-weight: 700;
    font-size: 26px;
    line-height: 36.4px;
    letter-spacing: -0.4px;
}

.projectListingSlider .swiper-slide .slide-wrap .content .icon {
    width: 36px;
}

.projectListingSlider .swiper-slide .slide-wrap .content .text-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.projectListingSlider .swiper-slide .slide-wrap .content.shift .text-wrap {
    margin-top: 0;
}

@media (max-width: 1200px) {
    .project-listing-section {
        margin-top: 40px;
    }
    
}

@media (max-width: 768px) {
    .project-listing-section {
        margin-top: 32px;
    }

    .project-listing-section .page-heading {
        margin-bottom: 36px;
    }

    .project-tabs {
        gap: 8px;
        margin-bottom: 36px;
    }

    .project-tabs .tab-button {
        padding: 6px 10px;
        min-height: 36px;
        font-weight: 700;
        font-size: 13px;
        line-height: 22px;
    }

    .projectListingSlider .swiper-slide .slide-wrap .content .img {
        height: 280px;
    }
    .desktopSlider{
        display: none;
    }
    .mobileSlider{
        display: block;
    }

    .projectListingSlider .swiper-slide .slide-wrap .content .text {
        font-size: 14px;
        line-height: 20px;
    }

    .projectListingSlider .swiper-slide .slide-wrap .content .icon {
        width: 22px;
        margin-top: 8px;
    }

    .projectListingSlider .swiper-slide .slide-wrap .content .text-wrap {
        display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    }

    .projectListingSlider .swiper-slide .slide-wrap .content.shift .text-wrap {
        margin-bottom: 16px;
    }

}

@media (max-width: 767.98px) {
    .projectListingSlider .swiper-slide .slide-wrap {
        gap: 16px;
    }

    .projectListingSlider .swiper-slide .slide-wrap .content {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .projectListingSlider .swiper-slide .slide-wrap .content.shift .text-wrap {
        order: 1;
    }

    .projectListingSlider .swiper-slide .slide-wrap .content.shift .img {
        order: 0;
    }

    .projectListingSlider .swiper-slide .slide-wrap .content.shift .text-wrap {
        margin-bottom: 0;
        margin-top: 16px;
    }

    .projectListingSlider .swiper-slide .slide-wrap .content .icon {
        width: 24px;
    }
}

/* powerhouse-section */

.powerhouse-section {
    margin-top: 80px;
    padding-bottom: 98px;
    background-color: #efebe4;
}


.powerhouse-section .page-heading {
    position: unset;
    left: 0;
    max-width: 100%;
    z-index: 10;
}
.powerhouseSlider .swiper-scrollbar .swiper-scrollbar-drag {
    background: #C49A6C;
}

.powerhouseSlider .swiper-slide .slide-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.powerhouseSlider .swiper-slide .slide-wrap .left-content {
    width: 37%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 60px;
    /* padding-top: 250px; */
}

.powerhouseSlider .swiper-slide .slide-wrap .left-content .text-block .title {
    font-family: "Noto Serif", serif !important;
    font-weight: 400;
    font-size: 96px;
    line-height: 105.6px;
    color: #202020;
    margin-bottom: 12px;
}

.powerhouseSlider .swiper-slide .slide-wrap .left-content .text-block .text {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: #48494B;
}

.powerhouseSlider .swiper-slide .slide-wrap .right-content {
    width: 61.6%;
}

.powerhouseSlider .swiper-slide .slide-wrap .right-content .img {
    width: 100%;
}
.powerhouseSlider .swiper-slide .slide-wrap {
    align-items: center;
    margin-bottom: 30px;
}
.powerhouse-section .page-heading {
    position: unset;
    max-width: 100%;
    margin-bottom: 35px;
   
}

@media (max-width: 1366px) {
    .powerhouse-section {
        margin-top: 70px;
        padding-bottom: 80px;
    }

    .powerhouse-section .page-heading {
        position: unset;
        max-width: 100%;
        margin-bottom: 35px;
    }

    .powerhouseSlider .swiper-slide .slide-wrap {
        align-items: center;
        margin-bottom: 30px;
    }

    .powerhouseSlider .swiper-slide .slide-wrap .right-content {
        width: 55%;
    }

    .powerhouseSlider .swiper-slide .slide-wrap .left-content {
        width: 45%;
        gap: 32px;
    }

    .powerhouseSlider .swiper-slide .slide-wrap .left-content .text-block .title {
        font-size: 68px;
        line-height: 72px;
        margin-bottom: 8px;
    }

    .powerhouseSlider .swiper-slide .slide-wrap .left-content .text-block .text {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .powerhouse-section {
        margin-top: 80px;
        padding-bottom: 60px;
    }

    .powerhouseSlider .swiper-slide .slide-wrap .left-content {
        gap: 24px;
        /* padding-top: 160px; */
    }

    .powerhouseSlider .swiper-slide .slide-wrap .left-content .text-block .title {
        font-size: 58px;
    }

    .powerhouseSlider .swiper-slide .slide-wrap .left-content .text-block .text {
        font-size: 14px;
    }
}

@media (max-width: 576px){
    .powerhouseSlider .swiper-slide .slide-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .powerhouse-section {
        margin-top: 100px;
        padding-bottom: 24px;
    }

    .powerhouse-section .page-heading {
        left: 16px;
    }

    .powerhouseSlider .swiper-slide .slide-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column-reverse;
    }

    .powerhouseSlider .swiper-slide .slide-wrap .right-content {
        width: 55%;
    }

    .powerhouseSlider .swiper-slide .slide-wrap .left-content {
        width: 45%;
        gap: 32px;
    }

    .powerhouseSlider .swiper-slide .slide-wrap .left-content .text-block .title {
        font-size: 48px;
        line-height: 48px;
    }
}

@media (max-width: 767.98px) {
    .powerhouse-section {
        margin-top: 60px;
    }

    .powerhouse-section .page-heading {
        position: relative;
        max-width: 100%;
        margin-bottom: 35px;
    }

    .powerhouseSlider .swiper-slide .slide-wrap .right-content {
        width: 100%;
        order: 0;
        margin-top: 32px;
    }

    .powerhouseSlider .swiper-slide .slide-wrap .left-content {
        width: 100%;
        gap: 24px;
        order: 1;
        /* padding-top: 32px; */
        text-align: center;
    }
}

/* Enquire today popup */
.enquire-popup {
    position: fixed;
    top: 24px;
    right: -100%;
    height: calc(100vh - 48px);
    background: #C49A6C;
    max-width: 696px;
    width: 100%;
    z-index: 100;
    border-radius: 8px;
    padding: 24px;
    transition: left 0.3s ease;
    pointer-events: none;
    z-index: 150;
    overflow: auto;
}

.enquire-popup.active {
    right: 24px;
    pointer-events: all;
}

.enquire-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.enquire-overlay.active {
    opacity: 1;
    visibility: visible;
}

.enquire-popup .text-wrap {
    position: relative;
    margin-bottom: 32px;
}

.enquire-popup .popup-close {
    position: absolute;
    top: 5px;
    right: 0;
    background: transparent;
}

.enquire-popup .text-wrap .title {
    font-family: "Noto Serif", serif !important;
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    color: #48494B;
    margin-bottom: 12px;
}

.enquire-popup .text-wrap .para {
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.4px;
    color: #48494B;
}

.enquire-popup .form-wrap {
    height: calc(100vh - 230px);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

.enquire-popup .form-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.enquire-popup .form-inner .form-group {
    width: calc(50% - 12px);
}

.enquire-popup .form-inner .form-group .page-input {
    width: 100% !important;
}

.enquire-popup .bottom-section .btn-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.enquire-popup .bottom-section .btn-wrap .page-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 11px !important;
    width: calc(50% - 6px);
    border: 1px solid transparent;
}

.enquire-popup .bottom-section .btn-wrap .page-btn.bg-black-btn {
    border-color: #202020;
}

.enquire-popup .bottom-section .text {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.4px;
    color: #48494B;
    margin-bottom: 24px;
}

.enquire-popup .bottom-section .text a {
    font-weight: 600;
    color: #C49A6C;
}

.page-input {
    font-family: "Manrope", sans-serif !important;
    border: 1px solid #676767 !important;
    height: 56px !important;
    padding: 10px 16px !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    letter-spacing: -0.15px !important;
    color: #202020 !important;
}

.page-input::placeholder {
    color: #979797 !important;
    opacity: 1 !important;
}

.page-input::-ms-input-placeholder {
    color: #979797 !important;
}

@media (max-width: 1200px) {
    .enquire-popup {
        top: 24px;
        min-height: calc(100vh - 48px);
        background: #C49A6C;
        max-width: 650px;
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .enquire-popup {
        overflow: auto;
        top: 24px;
        min-height: auto;
        background: #C49A6C;
        max-width: calc(100% - 48px);
        padding: 24px;
        height: 90vh;
    }

    .enquire-popup .form-wrap {
        display: block;
        height: auto;
    }

    .enquire-popup .bottom-section {
        padding: 24px 0;
    }
}

@media (max-width: 586px) {
    .enquire-popup {
        top: 16px;
        min-height: 100%;
        max-width: calc(100% - 32px);
        padding: 16px;
    }

    .enquire-popup.active {
        right: 16px;
    }

    .enquire-popup .text-wrap {
        position: relative;
        margin-bottom: 24px;
    }

    .enquire-popup .text-wrap .title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .enquire-popup .text-wrap .para {
        font-size: 14px;
    }

    .enquire-popup .form-wrap {
        height: 100%
    }

    .enquire-popup .form-inner {
        gap: 16px;
    }

    .enquire-popup .form-inner .form-group {
        width: 100%;
    }

    .enquire-popup .form-inner .form-group .page-input {
        width: 100% !important;
    }

    .enquire-popup .bottom-section .btn-wrap .page-btn {
        width: 100%;
    }

    .enquire-popup .bottom-section .text {
        font-size: 13px;
        line-height: 21px;
        margin-bottom: 16px;
    }


    .page-input {
        height: 48px !important;
        padding: 8px 12px !important;
        font-size: 14px !important;
    }
}









/* Sticky Enquire Button - Add to existing button */
#enquire-btn {
    position: fixed !important;
    right: 40%;
    top: 79%;
    transform-origin: right center;
    background: #202020 !important;
    color: #FFFFFF !important;
    border: 1px solid #202020 !important;
    /* border-radius: 8px 8px 8px 8px !important; */
    z-index: 15;
    box-shadow: 0 4px 12px rgba(32, 32, 32, 0.15);
    min-width: 290px;
    min-height: 80px;
    font-size: 23px;
    border-right: none !important;
}

#enquire-btn:hover {
    background: #202020 !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(32, 32, 32, 0.25);
}

/* Responsive Design for sticky enquire button */
@media (max-width: 1200px) {
    #enquire-btn {
        /* min-width: 100px;
        min-height: 38px; */
        right: 36%;
    }
}

@media (max-width: 992px) {
    #enquire-btn {
        /* min-width: 90px;
        min-height: 34px; */
        right: 34%;
    }
}

@media (max-width: 768px) {
    #enquire-btn {
        /* min-width: 80px;
        min-height: 30px; */
        right: 29.5%; 
   }
}

@media (max-width: 575px) {
    #enquire-btn {
        min-width: 70px;
        min-height: 24px;
        top: 40%;
    }
}

@media (max-width: 480px) {
    #enquire-btn {
        min-width: 50px;
        min-height: 20px;
    }
}


#Explore-btn {
    position: fixed !important;
    right: 40.5%;
    top: 75%;
    transform-origin: right center;
    background: #202020 !important;
    color: #FFFFFF !important;
    border: 1px solid #202020 !important;
    /* border-radius: 8px 8px 8px 8px !important; */
    z-index: 15;
    box-shadow: 0 4px 12px rgba(32, 32, 32, 0.15);
    min-width: 290px;
    min-height: 80px;
    font-size: 23px;
    border-right: none !important;
}
#Explore-btn:hover {
    background: #202020 !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(32, 32, 32, 0.25);
}


/* Responsive Design for sticky enquire button */
@media (max-width: 1200px) {
    #Explore-btn {
        /* min-width: 100px;
        min-height: 38px; */
        right: 40.5%;
    }
}

@media (max-width: 992px) {
    #Explore-btn {
        /* min-width: 90px;
        min-height: 34px; */
        right: 34%;
    }
}

@media (max-width: 768px) {
    #Explore-btn {
        /* min-width: 80px;
        min-height: 30px; */
        right: 29.5%;
    }
}

@media (max-width: 575px) {
    #Explore-btn {
        min-width: 70px;
        min-height: 24px;
        top: 40%;
    }
}

@media (max-width: 480px) {
    #Explore-btn {
        min-width: 50px;
        min-height: 20px;
    }
}



.projectListingSlider .slide-wrap .content .text-wrap .text {
    color: #202020 !important;
}

.projectListingSlider .slide-wrap .content .text-wrap a {
    text-decoration: none !important;
    color: inherit !important;
}

.projectListingSlider .slide-wrap .content .text-wrap a:hover {
    text-decoration: none !important;
    color: #202020 !important;
}

.projectListingSlider .slide-wrap .content .text-wrap a:visited {
    color: #202020 !important;
}

.projectListingSlider .slide-wrap .content a {
    text-decoration: none !important;
    color: inherit !important;
}

.projectListingSlider .slide-wrap .content a:hover {
    text-decoration: none !important;
}

.projectListingSlider .slide-wrap .content a:visited {
    color: inherit !important;
}
footer.footer-section.custom-footer {
    background: white;
    color: #48494B;
}
footer.footer-section.custom-footer h3, footer.footer-section.custom-footer h4, footer.footer-section.custom-footer a,
footer.footer-section.custom-footer .office-info p, footer.footer-section.custom-footer .city-office p, footer.footer-section.custom-footer .footer-copyright p{
    color: #48494B;
}
footer.footer-section.custom-footer .office-info p, footer.footer-section.custom-footer .city-office p{
    font-size: unset;
}
footer.footer-section.custom-footer h4{
    margin-top: 0;
}
footer.footer-section.custom-footer p{
    line-height: 1.8;
}
footer.footer-section.custom-footer .footer-column img {
    width: 170px;
    margin-bottom: 30px;
}
footer.footer-section.custom-footer .social-icon {
    width: 30px;
    height: 25px;
}
footer.footer-section.custom-footer .page-container {
    border-bottom: 1px solid #dee2e6 !important;
}
footer.footer-section.custom-footer footer-copyright p{
    margin-bottom: 10px;
}
footer.footer-section.custom-footer .footer-content .footer-top {
    gap: 180px;
}
/* Mobile redesign overrides */
@media (max-width: 576px) {
    html,
    body {
        padding: 0 !important;
    }

    .page-container {
        max-width: 100% !important;
        padding: 0 16px !important;
    }

    .nav-wrap {
        height: 64px;
        padding: 8px 0;
    }

    .nav-wrap .nav-inner {
        padding: 0 12px;
        width: 100%;
    }

    /* Smaller hamburger icon */
    /* .nav-wrap .nav-inner .menu-icon {
        gap: 6px;
    }
    .nav-wrap .nav-inner .menu-icon .bar {
        width: 22px;
        height: 2px;
    } */

    /* Hero Enquire button as CTA (normal, not sticky/rotated) */
    #enquire-btn {
        position: static !important;
        transform: none !important;
        background: #FFFFFF !important;
        color: #202020 !important;
        border: 1px solid #FFFFFF !important;
        border-radius: 0px !important;
        display: inline-block !important;
        width: 100% !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        font-size: 16px;
    }
    #Explore-btn {
        position: static !important;
        transform: none !important;
        background: #FFFFFF !important;
        color: #202020 !important;
        border: 1px solid #FFFFFF !important;
        border-radius: 0px !important;
        display: inline-block !important;
        width: 100% !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        font-size: 16px;
    }


    /* Hero */
    .top-text-wrap {
        margin-top: 20px !important;
        transform: translateY(445px);
        margin-bottom: -470px; /* pull following banner up so text overlays */
        z-index: 5;
        position: relative;
        color: #FFFFFF;
    }

    .top-of-heading {
        font-size: 20px;
        line-height: 24px;
        color: #ffffff;
    }

    .top-text-wrap .top-heading {
        font-size: 28px;
        line-height: 36px;
        max-width: 100%;
        color: #FFFFFF;
    }

    .top-text-wrap .page-btn {
        width: 100%;
        min-height: 44px;
    }

    /* .top-text-wrap .text-wrap {
        background: linear-gradient(180deg, rgba(0,0,0,0.36) 0%, rgba(0,0,0,0.72) 100%);
        padding: 12px 12px 16px;
        border-radius: 6px;
        backdrop-filter: blur(2px);
    } */

    .top-banner {
        margin-top: 320px !important;
        position: relative;
    }

    .top-banner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 28%) 60%, rgb(0 0 0 / 92%) 100%);
        pointer-events: none;
    }

    .top-banner img {
        height: 642px !important;
        object-position: center;
    }

    /* Intro copy */
    .land-selling-section {
        margin-top: 28px !important;
    }

    .land-selling-section .para {
        font-size: 18px !important;
        line-height: 25.2px !important;
        margin-bottom: 12px !important;
    }

    .land-selling-section .page-btn {
        width: 100% !important;
    }

    /* Map */
    .landing-map {
        margin-top: 28px !important;
    }

    /* Featured projects section */
    .featured-project-section {
        margin-top: 32px !important;
        padding: 36px 0 !important;
    }



    .lifeStyleSlider .slide-wrap {
        height: 400px !important;
    }
    
    /* .lifeStyleSlider .swiper-wrapper {
        justify-content: center !important;
        
    } */
    .lifeStyleSlider .swiper-scrollbar {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        width: 96px !important;
        height: 3px !important;
        background: #EDEDED !important;
        border-radius: 999px !important;
    }
    .lifeStyleSlider .swiper-scrollbar .swiper-scrollbar-drag {
        background: #C49A6C !important;
        border-radius: 999px !important;
    }
    .bannerSwiper .swiper-scrollbar {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        width: 96px !important;
        height: 3px !important;
        background: #EDEDED !important;
        border-radius: 999px !important;
    }
    .bannerSwiper .swiper-scrollbar .swiper-scrollbar-drag {
        background: #C49A6C !important;
        border-radius: 999px !important;
    }

    .powerhouseSlider .swiper-scrollbar {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        width: 96px !important;
        height: 3px !important;
        background: #EDEDED !important;
        border-radius: 999px !important;
    }
    .powerhouseSlider .swiper-scrollbar .swiper-scrollbar-drag {
        background: #C49A6C !important;
        border-radius: 999px !important;
    }
    .projectListingSlider .swiper-scrollbar {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        width: 96px !important;
        height: 3px !important;
        background: #EDEDED !important;
        border-radius: 999px !important;
        margin-top: 16px;
    }
    .projectListingSlider .swiper-scrollbar .swiper-scrollbar-drag {
        background: #C49A6C !important;
        border-radius: 999px !important;
    }


    
    .lifeStyleSlider .animate-text {
        transform: none !important;
        left: 16px !important;
        bottom: 16px !important;
        max-width: calc(100% - 32px);
    }
    .lifeStyleSlider .slide-wrap .text-wrap {
        padding: 16px !important;
        background: linear-gradient(180deg, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.8) 100%) !important;
    }
    .lifeStyleSlider .title {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    .lifeStyleSlider .title .sm-text {
    font-size: 14px;
    line-height: 20px;
}
    .lifeStyleSlider .animate-text .btn-wrap .page-btn {
        min-width: 124px !important;
        min-height: 36px !important;
    }

    

    /* Project listings */
    .project-listing-section {
        margin-top: 28px !important;
    }

    .project-tabs {
        gap: 8px;
        margin-bottom: 16px;
    }

    .project-tabs .tab-button {
        min-height: 36px;
        padding: 6px 12px;
        font-size: 13px;
    }

    /* .projectListingSlider .swiper-slide .slide-wrap .content .img {
        height: 220px !important;
        border-radius: 4px;
    } */
    
    /* .projectListingSlider .swiper-slide {
        width: 100% !important;
    } */
    /* .projectListingSlider .swiper-wrapper {
        justify-content: center !important;
    } */
    /* .projectListingSlider .swiper-slide .slide-wrap .content {
        width: 100% !important;
    }
    .projectListingSlider .swiper-slide .slide-wrap .content.shift {
        display: none !important;
    } */
    /* .projectListingSlider .swiper-slide .slide-wrap .content .text {
        font-size: 18px !important;
        line-height: 26px !important;
    } */
    /* .projectListingSlider .swiper-slide .slide-wrap {
        gap: 24px !important;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
    } */

    /* Powerhouse */
    .powerhouse-section {
        margin-top: 40px !important;
        padding-bottom: 24px !important;
    }

    .powerhouse-section .page-heading {
        /* position: static !important; */
        max-width: 100% !important;
        
    }

    .powerhouseSlider .swiper-slide .slide-wrap .left-content {
        display: flex;
        padding-top: 30px !important;
        align-items: center;
        text-align: center;
        gap: 16px !important;
        flex-wrap: wrap;
        flex-direction: row;
        order: 1;
        justify-content: center;
    }
    .powerhouseSlider .swiper-slide .slide-wrap .right-content {
        order: 2;
    }
    .powerhouseSlider .swiper-slide .slide-wrap .left-content .left-content-text{
        display: flex;
        padding-top: 0 !important;
        align-items: center;
        text-align: center;
        gap: 16px !important;
    }
    .powerhouseSlider .swiper-slide .slide-wrap .left-content .text-block .title {
        font-size: 36px !important;
        line-height: 40px !important;
        color: #B57042;
    }
    .project-tab-content{
        min-height: auto;
        
    }
    
    
    .powerhouseSlider .swiper-slide .slide-wrap .left-content .text-block .text {
        font-size: 13px !important;
        line-height: 19px !important;
    }

    /* About/Community/Support */
    .about-section {
        padding: 20px 0 !important;
    }

    .about-text h2 {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .trust-section,
    .communities-content,
    .support-section {
        gap: 10px !important;
    }

    .trust-image img,
    .communities-image img,
    .support-image img {
        width: 100% !important;
        height: auto !important;
        min-height: 220px;
    }

    .trust-content,
    .communities-text,
    .support-content {
        margin: 0 !important;
        padding: 0 !important;
    }

    .trust-content h3,
    .communities-text h3,
    .support-content h3 {
        font-size: 18px !important;
        line-height: 22px !important;
        margin-bottom: 12px !important;
    }

    .trust-content p,
    .communities-text p,
    .support-content p {
        font-size: 14px !important;
        line-height: 21px !important;
    }

    /* News */
    .news-section {
        padding: 40px 0 !important;
    }

    /* Visit */
    .visit-section .visit-content {
        padding: 40px 0 40px !important;
    }

    .map-container {
        height: 280px !important;
    }

    /* Enquire */
    .enquire-section {
        padding: 48px 0 !important;
    }

    /* Footer */
    .footer-section .footer-content {
        padding: 40px 16px 30px !important;
        gap: 24px !important;
    }

    .footer-submit-btn {
        width: 100% !important;
    }
}
@media(max-width: 1280px){
    footer.footer-section.custom-footer .footer-content .footer-top {
        gap: 180px;
    }
}
@media(max-width: 767px){
    footer.footer-section.custom-footer .footer-content .footer-top {
        display: inline-block;
        text-align: center;
    }
    footer.footer-section.custom-footer .footer-column{
        margin-bottom: 20px;
    }
    footer.footer-section.custom-footer p, footer.footer-section.custom-footer .office-info p, footer.footer-section.custom-footer .city-office p {
        font-size:15px;
    }
    footer.footer-section.custom-footer .social-icons {
        display: inline-block;
        margin-top: 0;
    }
}