* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body::-webkit-scrollbar {
    display: none;
}

@font-face {
    font-family: 'bozon-reg';
    src: url('assets/font/bozon-reg.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Austin';
    src: url('assets/font/austin-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    color: #121212;
    line-height: 150%;
    overflow-x: hidden;
    font-size: 15px;
     overflow-x: hidden !important;
    font-family: 'bozon-reg', 'Austin', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.container {
    width: 1280px;
    max-width: 85%;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

.marginTopBottom {
    padding-top: 42px;
    /* padding-bottom: 30px; */
}

.heading h1 {
    font-size: 46px;
    text-align: left;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 120%;
    font-family: 'Austin';
}

.dHide {
    display: none !important;
}

.mHide {
    display: block !important;
}

/* AOS Animation Fix - Prevent elements from being hidden initially */
[data-aos] {
    pointer-events: auto;
}

[data-aos].aos-animate {
    pointer-events: auto;
}


/* banner */
.hero_banner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero_banner_content {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 00px;
    z-index: 9;
    padding: 200px 0px 50px 0px;
    color: #ffffff;
    /* background: #000; */
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 48%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%); */
}

.banneroverlay img {
    width: 200px;
}

.banneroverlay {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.banneroverlay h2 {
    font-size: 40px;
    font-weight: 500;
    font-family: 'Austin';
    text-align: right;
}

/*--------------------
 header css starts 
 ---------------------*/
.main-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0px;
    padding-top: 20px;
    font-family: 'Segoe UI', sans-serif;
    z-index: 999;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

/* Logo Styling */
.logo {
    display: flex;
    flex-direction: column;
}

.logo img {
    width: 55%;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

.tagline {
    font-size: 10px;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Nav & Icons Styling */
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* Hamburger Menu (hidden on desktop, shown on mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding-left: 10px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: white;
}

/* Side Nav Container */
.side-nav {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background-color: white;
    z-index: 99999;
    transform: translateX(0);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.side-nav.active {
    right: 0;
}

.side-nav .main-menu {
    width: 100%;
    margin: 0;
    padding: 40px 20px;
    flex-grow: 1;
    padding-top: 80px;
    flex-direction: column;
    gap: 0;
}

.side-nav .menu-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #666;
    font-size: 16px;
    letter-spacing: normal;
    display: block;
}

/* Background Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Menu Content Styling */
.main-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex-grow: 0;
}

.menu-item {
    padding: 0;
    border-bottom: none;
    font-weight: 600;
    color: #000;
    display: inline-block;
    justify-content: flex-start;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.menu-item:hover {
    opacity: 0.7;
}

/* Close Button */
.closeBtn {
    position: absolute;
    top: 20px;
    right: 5px;
    font-size: 36px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.close-btn {
    font-size: 30px;
    background: none;
    border: none;
    float: right;
    padding: 20px;
    cursor: pointer;
}


/*----------------------
 m3mForestiaWest_container css starts 
------------------------ */
#about {
    padding-top: 60px !important;
}

.m3mForestiaWest_container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.m3mForestiaWestSliderMain,
.m3mForestiaWest_content {
    width: 45%;
}

.m3mForestiaWest_content h2 {
    font-size: 17px;
    margin-top: 10px;
}

.m3mForestiaWest_content p {
    margin-top: 15px;
    /* font-size: 17px; */
}

.m3mForestiaWest_iconFlex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 30px;
}

.m3mForestiaWest_iconFlexItem {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 45%;
    justify-content: flex-start;
    line-height: 120%;
}

.m3mForestiaWest_iconFlexItem img {
    width: 40px;
}


/* slider csss */

/* Container for the dots */
.slick-dots {
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 20px 0;
    gap: 10px;
    bottom: 20px !important;
}

/* Base style for all dots (inactive) */
.slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    background: #fff;
    /* White inactive dots */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* The Active "Pill" Style */
.slick-dots li.slick-active button {
    width: 45px;
    height: 15px;
    /* Becomes a long pill */
    border-radius: 10px;
    background: #6bc400;
    /* Matching the vibrant green buttons */
}

/* Artistic Impression Text Overlay */
.artistic-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    font-size: 10px;
    opacity: 0.7;
    letter-spacing: 1px;
}

.slick-dots li button:before {
    color: #fff !important;
    font-size: 15px !important;
    opacity: 1 !important;
    margin-left: 10px;

}

.slick-dots li.slick-active button:before {
    color: transparent !important
}


/* Glimpses of Masterpiece */

#glimpses {
    background-color: #ececec;
}

.glimpesOfMasterPieceSlide {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.glimpesOfMasterPieceSlide img {
    position: absolute;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0 */
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    transform-origin: center center;
}

.glimpesOfMasterPieceSlide:hover img {
    transform: scale(1.2);
    cursor: e-resize;
}

.imageOverlay {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.74) 0%, rgba(255, 255, 255, 0) 73%, rgba(255, 255, 255, 0) 100%);
    color: #fff;
    padding: 100px 0px 40px 60px;
}

.singleAndHalfImageSlider {
    width: 95%;
    margin: 0 auto;
    margin-top: 30px;
}

.singleAndHalfImageSlider .slick-slide {
    /* create horizontal gap between slides */
    margin-right: 20px !important;
    padding: 0 !important;
}

.singleAndHalfImageSlider .slick-track {
    /* compensate for slide margins so track aligns correctly */
    margin: 0 -20px !important;
    margin-left: -33.333% !important;
    /* keep half-slide on right */
}

/* Slide progress bar (appears at bottom of each slide) */
.glimpesOfMasterPieceSlide .slide-progress {
    position: absolute;
    left: 0;
    bottom: 5px;
    height: 4px;
    width: 0%;
    background: #fff;
    z-index: 4;
    pointer-events: none;
}

/* Premier Offerings Section */
.premier-offerings {
    background: #ececec;
}

/* Project Offerings Section */

/* Featured offering two-column layout */
.offering-feature {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    /* padding: 40px 0; */
}

.offering-feature .feature-text {
    width: 40%;
}

.offeringsslidercontainer .offeringsslidercontainer
{
    width: 60%;
}

.offering-feature .feature-text h2 {
    font-family: 'Austin';
    font-size: 36px;
    margin-bottom: 18px;
    line-height: 110%;
}

.offering-feature .feature-text .lead {
    font-weight: 600;
    margin-bottom: 10px;
}

.offering-feature .feature-text .description {
    color: #444;
    margin-top: 12px;
    line-height: 1.5;
}

.offering-feature .feature-image {
    width: 50%;
    position: relative;
    background-color: #fff;
}

.offering-feature .feature-image h4 {
    padding:10px;
    text-align:center;
}


.offering-feature .feature-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: blur(5px);
    transition: filter 0.5s ease;
}

.offering-feature .feature-image img.unblur {
    filter: blur(0);
}

.enquireBtnGreen {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 22px;
}

.enquireBtnGreen button {
    width: 180px;
    background: red;
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
}

/* .offringslide .slick-track {
  display: flex !important;
} */


.offeringsslidercontainer,
.feature-image {
  margin: 0;
  padding: 0;
}

.offeringsslidercontainer .slick-slide {
  height: auto;
}



.offringslide {
  overflow: hidden;
  width:50%

}

.view-plan-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.project-offerings {
    background: #ececec;
    padding-bottom: 30px
}

.offerings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.offerings-header .heading {
    margin: 0;
}

.offerings-header .heading h1 {
    text-align: left;
    margin: 0;
}

.offerings-tabs {
    display: flex;
    gap: 10px;
    height: 45px;
    align-items: center;
}

.tab-btn {
    padding: 9px 24px;
    background: #e8e8e8;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.tab-btn:hover {
    background: #d8d8d8;
}

.tab-btn.active {
    background: #6bc400;
    color: #ffffff;
}

.offerings-slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.offering-slide {
    padding: 10px 10px;
    border: #898989ab solid 1px;
}

.offering-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.offering-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.offering-label {
    position: absolute;
    width: 100%;
    background: #000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 48%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
    bottom: 0px;
    left: 0px;
    padding: 60px 0px 20px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.slider-arrows {
    position: absolute;
    bottom: -50px;
    transform: translateY(50%);
    width: 8%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.arrow-btn {
    pointer-events: all;
    background: #d8d8d8;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.arrow-btn:hover {
    background: #c0c0c0;
    color: #333;
}

.arrow-btn svg {
    width: 20px;
    height: 20px;
}

/* Glimpses and Miracle Garden Slider Arrows */
.offering-slider-arrows,
.glimpses-slider-arrows,
.miracle-slider-arrows {
    position: relative;
    display: flex;
    gap: 0px;
    margin-top: 20px;
    padding-bottom: 20px;
    width: fit-content;
}

.offering-slider-arrows {
    margin-left: 0;
}

.offering-arrow-btn,
.glimpses-arrow-btn,
.miracle-arrow-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offering-arrow-btn img,
.glimpses-arrow-btn img,
.miracle-arrow-btn img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.project-prev-arrow,
.miracle-prev-arrow,
.glimpses-prev-arrow,
.premier-prev-arrow {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.project-prev-arrow:hover img,
.premier-prev-arrow:hover img,
.glimpses-prev-arrow:hover img,
.miracle-prev-arrow:hover img {
    content: url('assets/images/sliderarrowOnhover.png');
}

.project-next-arrow:hover img,
.premier-next-arrow:hover img,
.glimpses-next-arrow:hover img,
.miracle-next-arrow:hover img {
    content: url('assets/images/sliderarrowOnhover.png');
}

.offerings-slider {
    margin: 0 auto;
}

.offering-label {
    font-size: 14px;
    /* padding: 40px 0px 15px 15px;
        bottom: 0;
        left: 0; */
}

.arrow-btn {
    width: 38px;
    height: 38px;
}

/* connectivity  */

.connectivity {
    padding-bottom: 30px;
}

.connectivityMap {
    margin-top: 30px;
    text-align: center;
}

/* Connectivity features row */
.connectivity-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 0;
    border: 1px solid #e6e6e6;
}

.connectivity-features .feature {
    padding: 30px 20px;
    border-right: 1px solid #e6e6e6;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.connectivity-features .feature:last-child {
    border-right: none;
}

@media (max-width: 900px) {
    .connectivity-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .connectivity-features .feature {
        text-align: center;
        padding: 18px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .connectivity-features {
        grid-template-columns: 1fr;
    }

    .connectivity-features .feature {
        text-align: center;
        padding: 14px 16px;
    }
}

.footer {
    padding: 25px 0;
    background-color: #e1e1e1;
}

/* Enquire modal styles */
.enquire-modal {
    display: none;
}

.enquire-modal.active {
    display: block;
}

.enquire-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
}

.enquire-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 360px;
    max-width: calc(100% - 40px);
    border-radius: 8px;
    padding: 24px;
    z-index: 10001;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.enquire-dialog h2 {
    margin: 0 0 12px 0;
    font-size: 20px;
}

.enquire-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.enquire-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enquire-form label {
    font-size: 13px;
    color: #222;
}

.enquire-form input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.enquire-submit {
    margin-top: 6px;
    background: black;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.enquire-submit:active {
    transform: translateY(1px);
}

/* Sticky right-side Enquire button */
.sticky-enquire {
    position: fixed;
    right: 22px;
    top: 40%;
    transform: rotate(-90deg) translateX(50%);
    transform-origin: right center;
    background: red;
    color: #fff;
    border: none;
    padding: 22px 10px 22px 10px;
    border-radius: 15px 15px 0px 0px;
    z-index: 10002;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 15px;
    width: 190px;
}

/* Immersive Tour css*/

.immersiveVideo {
    margin-top: 40px;
}

.dummyVideoThumb {
    opacity: 0.7;
}

.playBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Immersive Slider Styles */
.immersive-slider-wrapper {
    width: 100%;
}

.immersive-slider {
    width: 100%;
    position: relative;
}

.immersive-slide {
    width: 100%;
    display: none;
}

.immersive-slide[data-category="immersiveTour3"] {
    display: block;
}

.immersiveVideoImg {
    position: relative;
    width: 100%;
}

.immersiveVideoImg img {
    width: 100%;
    height: auto;
    display: block;
}

/* project offerings */

.viewImgBtn {
    width: 150px;
    margin: 0 auto;
    background: #58be07;
    color: #fff;
    border: none;
    padding: 10px 10px;
    border-radius: 30px;
    z-index: 10002;
    cursor: pointer;
    margin-top: 30px;
    text-align: center;
}




@media (max-width: 800px) {

    .miracle-slider-arrows {
        margin: 0px auto;
    }

    .dHide {
        display: block !important;
    }

    .mHide {
        display: none !important;
    }

    .container {
        width: 800px;
        max-width: 92%;
        margin: 0 auto;
    }

    .logo img {
        width: 43%;
    }

    .heading h1 {
        font-size: 26px;
    }

    .marginTopBottom {
        padding-top: 30px;
        /* padding-bottom: 20px; */
    }

    #about {
        padding-top: 42px !important;
    }

    .sticky-enquire {
        right: 17px;
        top: 50%;
        padding: 18px 18px;
    }

    .hero_banner {
        height: 100%;
    }

    .banneroverlay {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .banneroverlay h2 {
        font-size: 28px;
    }

    .m3mForestiaWest_container {
        flex-direction: column;
    }

    .m3mForestiaWestSliderMain,
    .m3mForestiaWest_content {
        width: 100%;
        margin: 0 auto;
    }

    .m3mForestiaWest_iconFlex {
        gap: 20px;
    }

    .m3mForestiaWest_iconFlexItem {
        width: 100%;
    }

    .m3mForestiaWest_iconFlex {
        margin-top: 20px;
        flex-direction: column;
    }

    .m3mForestiaWestSliderMain {
        margin-top: 20px;
    }

    .singleAndHalfImageSlider {
        margin-top: 15px;
    }

    .connectivityMap {
        margin-top: 15px;
    }

    .singleAndHalfImageSlider .slick-track {
        /* compensate for slide margins so track aligns correctly */
        margin: 0 -20px !important;
        margin-left: 0% !important;
        /* keep half-slide on right */
    }

    .singleAndHalfImageSlider .slick-slide {
        margin-right: 0 !important;
    }

    .imageOverlay {
        padding: 100px 30px 40px 20px;
        line-height: 120%;
    }

    .imageOverlay p {
        margin-top: 2px;
    }

    .footer {
        padding-top: 20px;
    }

    /* Premier Offerings Mobile Styles */
    .offerings-slider-container {
        width: 95%;
    }

    .offerings-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }

    .offerings-tabs {
        gap: 8px;
        justify-content: flex-start;
    }

    .tab-btn {
        padding: 10px 24px;
        font-size: 11px;
    }

    /* Glimpses and Miracle Garden Slider Arrows Mobile */
    .glimpses-slider-arrows,
    .miracle-slider-arrows {
        margin-top: 20px;
        gap: 10px;
    }

    .glimpses-arrow-btn,
    .miracle-arrow-btn {
        width: 40px;
        height: 40px;
    }

    .enquire-dialog {
        width: 259px;
    }

    /* Show hamburger and hide desktop menu on small screens */
    .hamburger {
        display: flex;
    }

    .hamburger span {
        background-color: #000;
    }

    /* hide desktop main menu if present */
    .nav-links .main-menu {
        display: none;
    }

    /* make side-nav full-width on smaller screens */
    .side-nav {
        right: -100%;
        width: 100%;
        max-width: 100%;
        padding-top: 80px;
    }

    .side-nav.active {
        right: 0;
    }

}


@media (max-width: 800px) {
    .offering-feature {
        flex-direction: column;
        gap: 20px;
    }

    .offering-feature .feature-text,
    .offering-feature .feature-image {
        width: 100%;
        text-align: center;
    }

    .offering-feature .feature-text h2 {
        font-size: 24px;
    }

    .view-plan-btn {
        top: auto;
        bottom: 39%;
        left: 50%;
        transform: translateX(-50%);
    }

    .imageOverlay h3{
        font-size: 12px;
    }

     .imageOverlay p{
        font-size: 11px;
    }

    .nav-item{
        white-space: nowrap;
    }


     .connectivity-features .feature {
    padding-bottom: 16px;  
    margin-bottom: 16px;    
  }

  .connectivity-features .feature:not(:last-child) {
    border-bottom: 2px solid rgba(59, 55, 55, 0.349);
  }


  .offringslide{
    width: 100%
  }


}