    @font-face {
            font-family: 'Axiforma';
            src:url('../fonts/Axiforma-Thin.ttf') format('truetype');
            font-weight: 400; /* Regular */
            font-style: normal;
            font-display: swap; /* Use swap for better performance */
        }

    body{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        font-family: 'Montserrat', sans-serif;
    }
 
    .section-padding{
        padding: 3rem 0;
    }

    .section-heading{
        font-size: 42px;
        font-weight: 300;
         font-family: 'Axiforma';
    }
 
    .section-para{
        font-size: 18px;
        font-family: 'Montserrat', sans-serif;
    }


    .m-banner{
        display: none;
        width: 100%;
    }
    .d-banner{
        display: block;
    }

    .sidebar-buttons{
        position: fixed;
        right: 0;
        top: 50%;
        display: flex;
        flex-direction: column;
        background: #2E3E2F;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        color: #fff;
        padding: 20px;
        z-index: 999;
    }
    .sidebar-buttons a{
        color: #fff;
        text-decoration: none;
        font-size: 30px;
    }

    .sidebar-buttons a:first-child{
        border-bottom: 0.5px solid rgba(255,255,255,0.5);
        padding-bottom: 10px;
        margin-bottom: 10px;
        font-size: 32px;
    }


    /*header css start*/
    .header-section{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            margin-top: 15px;
            z-index: 999;
    }
       /* Global Styles */
        .header-section .navbar-dark {
            background-color: rgba(0,0,0,0.6) !important; /* Black background */
        }

        /* Custom Logo Styling */
        .header-section .sumadhura-logo {
            width: 100px;
            text-align: center;
        }
        .header-section .sumadhura-logo img {
            width: 100%;
            height: auto;
            max-width: 100%;
        }
        .header-section .sumadhura-logo .logo-text {
            font-size: 8px;
            text-transform: uppercase;
            color: #ffffff;
            line-height: 1.2;
            white-space: nowrap;
        }

        .header-section .navbar-collapse{
            justify-content: space-between;
        }

        .header-section .desktop-buttons{

        }

        /* Menu Link Styling */
        .header-section .navbar-nav .nav-link {
            color: #ffffff;
            font-size: 16px;
            font-weight: 400;
            transition: color 0.3s;
            font-family: 'Montserrat', sans-serif;

        }
        .header-section .navbar-nav .nav-link:hover {
            color: #fff;
        }

        /* Button Styling */
        .header-section .btn-enquire {
            background-color: #557948; /* Dark Olive Green */
            color: #ffffff;
            border: 1px solid #557948;
            padding: 12px 18px;
            font-size: 18px;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
        }
        .header-section .btn-download {
            background-color: #526E3E;
            color: #fff;
            border: 1px solid #526E3E;
            padding: 12px 18px;
            font-size: 18px;
            font-weight: 500;
            line-height: 26px;
            margin-left: 10px;
            border-radius: 4px !important;
            font-family: 'Montserrat', sans-serif;
        }

        .header-section .btn-download:hover{
            background: #2d4128;
            color: #fff;
            border-color: #2d4128;
        }



        /* ------------------------------------------- */
        /* Core CSS for Smooth Transition (Sliding Effect) */
        /* ------------------------------------------- */
        .header-section .collapsing {
            /* This is the Bootstrap class applied during the open/close animation. */
            height: 0 !important;
            overflow: hidden !important;
            transition: height 0.35s ease-in-out; /* Animates the height change over 0.35 seconds */
        }
        
        /* ------------------------------------------- */
        /* MOBILE VIEW STYLING (max-width: 991.98px)   */
        /* ------------------------------------------- */
        @media (max-width: 991.98px) {
            /* 1. Initial State: Hide the main nav links (Matching the first image) */
            .header-section .navbar-nav {
                display: none;
            }

            /* 2. Open State FIX: Show the nav links when the menu is active (.show) */
            .header-section .navbar-collapse.show .navbar-nav {
                display: flex !important;
                flex-direction: column;
                padding-top: 15px;
                text-align: center;
            }

            /* 3. Hide the desktop buttons container and download button */
            .header-section .desktop-buttons, .d-button {
                display: none !important;
            }
            /* 4. Show the mobile buttons within the open menu dropdown */
            .header-section .navbar-collapse.show .mobile-menu-buttons {
                display: block !important;
                padding-top: 10px;
            }

            /* 5. Custom styling for the mobile 'Enquire Now' button outside the menu */
            .header-section .navbar-toggler {
                border: none;
            }
            .header-section .mobile-header-buttons {
                display: flex;
                align-items: center;
            }
            .header-section .mobile-header-buttons .btn-enquire {
                background-color: #557948; 
                color: #ffffff;
                border: none; 
                padding: 10px 20px; 
                font-size: 14px;
                margin-right: 15px;
                order: -1;
                font-family: 'Montserrat', sans-serif;
            }
            /* Mobile Link Styling for better visibility in dropdown */
            .header-section .navbar-nav .nav-link {
                padding-left: 0.5rem !important;
                padding-right: 0.5rem !important;
                margin-right: 0;
            }
        }

        /* ------------------------------------------- */
        /* DESKTOP VIEW STYLING (min-width: 992px)     */
        /* ------------------------------------------- */
        @media (min-width: 992px) {
            .header-section .mobile-header-buttons, .mobile-menu-buttons {
                display: none !important; /* Hide all mobile button containers */
            }
            .header-section .navbar-brand {
                margin-right: 40px; /* Space between logo and menu */
            }
            .header-section .desktop-buttons .btn-enquire {
               background-color: #fff;
                color: #2E3E2F;
                border: 1px solid #ffffff;
                border-radius: 4px !important;
                font-size: 18px;
                font-weight: 500;
                line-height: 26px;
                font-family: 'Montserrat', sans-serif;
            }
            .header-section .desktop-buttons .btn-enquire:hover {
                background: #2E3E2F;
                color: #fff;
                border-color: #2E3E2F;
            }
        }

        /* iPad Pro + Mobile */
@media (max-width: 1199.98px) {
    .header-section .desktop-buttons {
        display: none !important;
    }

    .header-section .mobile-header-buttons {
        display: flex !important;
        align-items: center;
    }
}


/*header section end*/

    /*banner-section*/
    .banner-section .banner-video{
        width: 100%;
        height: auto;
    }


    /*contact section css start*/
    .contact-section{
        background: url("../images/contact-bg.png");
        background-size: cover;
    }

    .contact-section .contact-title{
        font-weight: 300;
        color: #2E3E2F;
        margin-bottom: 40px;
    }

    .contact-section .form-control, .contact-section .form-select{
        border: none;
        border-bottom: 1px solid #2E3E2F33;
        border-radius: 0;
        padding-left: 0;
        background: transparent;
    }

    .contact-section .form-control:focus, .contact-section .form-select:focus{
        box-shadow: none;
        border-bottom: 2px solid #2E3E2F33;
    }

    .contact-section .form-control, .contact-section .form-select{
        font-size: 14px;
        font-weight: 400;
        color: #858585;
        padding: 15px 0;
         font-family: 'Montserrat', sans-serif;
    }
    .contact-section .form-control:focus{
        background: transparent;
    }

    .contact-section .btn-submit{
        background: #526E3E;
        color: #fff;
        padding: 12px 35px;
        border-radius: 4px;
        font-size: 18px;
        font-weight: 500;
        margin-top: 25px;
        font-family: 'Montserrat', sans-serif;
    }

    .contact-section .btn-submit:hover{
        background:#fff ;
        color: #526E3E;
        border: 1px solid #526E3E;
    }

    .contact-section .error-msg{
        font-size: 13px;
        color: red;
        margin-top: 2px;
        display: none;
    } 


    /*address section css start*/
    .overview-section {
        background: url('../images/project-bg.png') center/cover no-repeat;
    }


    .overview-section .overview-inner {
        position: relative;
        z-index: 2;
        color: #fff;
    }

    .overview-section .overview-inner h2 {
        color: #fff;
        margin-bottom: 12px;
        text-align: center;
    }

    .overview-section .lead{
        color: #fff;
        opacity: 0.9;
        max-width: 800px;
        margin: auto;
        text-align: center;
    }

    .overview-section .overview-table {
        margin-top: 60px;
        width: 100%;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 6px;
        overflow: hidden;
    }

    .overview-section .row-item {
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .overview-section .row-item:last-child {
        border-bottom: none;
    }

    .overview-section .left-label {
        padding: 35px 40px;
        border-right: 1px solid rgba(255,255,255,0.15);
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }


    .overview-section .left-label p{
        font-size: 18px;
        font-weight: 500;
        color: #D3AA50;
        margin-bottom: 6px;
        line-height: 26px;
         font-family: 'Montserrat', sans-serif;
    }

    .overview-section .right-text {
        padding: 35px 40px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .overview-section .right-text p{
        font-size: 28px;
        font-weight: 300;
        line-height: 36px;
        color: #fff;
        max-width: 400px;
        font-family: 'Montserrat', sans-serif;
        margin-bottom: 0;
    }


/* address asection css end */


/*map css start*/
 
    .neighbourhood-section {
        background: url("../images/map-bg.png") center/cover no-repeat;
    }

    .content-main-wrapper{
        display: flex;
    }

    .map-heading-wrapper{
        display: flex;
        padding-bottom: 2rem;
    }

    .map-heading-wrapper h2{
        color: #fff;
        width: 50%;
    }

    .map-heading-wrapper p{
        color: #fff;
        width: 50%;
    }

    .content-box {
        background: #F0E4CA;
        padding: 50px  40px;
        width: 50%;
    }

    .point-box {
        margin-bottom: 25px;
        padding-bottom: 30px;
        border-bottom: 1px solid #526E3E80;
    }

    .point-box:last-child {
        border-bottom: none;
    }

    .point-time {
        font-weight: 400;
        font-size: 32px;
        color: #2E3E2F;
        font-family: 'Figtree', sans-serif;
    }

    .point-title {
        font-size: 24px;
        color: #000;
        font-weight: 400;
        margin-top: 5px;
        font-family: 'Figtree', sans-serif;
    }

    .map-img-wrapper{
        width: 50%;
        display: flex;
    }

    .map-image {
        width: 100%;
        object-fit: cover;
    }

    .btn-explore {
        background: #526E3E;
        color: #fff;
        padding: 12px 28px;
        border-radius: 4px;
        border: none;
        text-transform: uppercase;
        font-size: 18px;
        font-weight: 500;
        font-family: 'Montserrat', sans-serif;
        text-decoration: none;
    }

    .btn-explore:hover {
        background: #3d5223;
    }


    /*video section css start*/
    .middle-video{
        width: 100%;
        height: auto;
    }


    /*experiance section*/

    .hero-section{
        background: #F2F2F2;
        text-align: center;
    }

    .hero-section .hero-title{
        color: #1E1E1E;
        text-align:center;
        margin-bottom:10px;
    }
    .hero-section .experiance-img-wrapper{
         display: flex;
    }

    .hero-section .hero-sub{
        text-align:center;
        color:#1E1E1E;
        margin-bottom:50px;
    }

   /* .hero-section .form-box{
        padding-left:40px;
    }

    .hero-section .form-control, .hero-section .form-select{
        background: transparent;
        border-radius:0;
        border:0;
        border-bottom:1px solid #2E3E2F33;
        padding-left:0;
        padding-right:0;
        padding-bottom: 20px;
        color: #858585;
    }

    .hero-section .form-control:focus, .hero-section .form-select:focus{
        box-shadow:none;
        border-bottom:1px solid #333;
    }

    .hero-section input:placeholder, .hero-section .form-select option{
        color: #858585;
        font-size: 18px;
    }
*/

    .hero-section .btn-custom{
        background:#526E3E;
        color:#fff;
        padding:12px 25px;
        border-radius:4px;
        border:none;
        font-size:16px;
        font-weight: 500;
        letter-spacing:0.5px;
        margin-top: 2rem;
        text-decoration: none;
    }

    .hero-section .btn-outline-custom{
        border:1px solid #526E3E;
        color:#526E3E;
        padding:12px 25px;
        border-radius:4px;
        background:#fff;
        font-size:16px;
        font-weight: 500;
        letter-spacing:0.5px;
        margin-top: 2rem;
    }

    .hero-section .form-box h4{
        font-size: 28px;
        font-weight: 500;
        color: #2E3E2F;
        line-height: 36px;
        padding-bottom: 10px;
    }

    .hero-section .form-box p{
        font-size: 18px;
        color: #1E1E1E;
        font-weight: 400;
        line-height: 26px;
        padding-bottom: 20px;
    }

    .hero-section .form-control:focus, .hero-section .form-select:focus{
        background: transparent;
        border-color:#858585 ;
        color: #858585;
    }


/* visit section */
    .luxury-section {
        background: #F2F2F2;
        position: relative;
    }

    .luxury-section .left-heading h1 {
        color: #2E3E2F;
        line-height: 56px;
    }

    .luxury-section .bottom-leaf{
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .luxury-section .right-text {
        color: #2E3E2F;
        line-height: 1.8;
    }

    .luxury-section .visit-btn {
        background: #526E3E;
        color: #fff;
        padding: 12px 32px;
        font-size: 18px;
        border-radius: 4px;
        border: none;
        transition: 0.3s;
        margin-top: 0 !important;
        font-family: 'Montserrat', sans-serif;
        text-decoration: none;
    }

    .luxury-section .visit-btn:hover {
        background: #2d4128;
    }

    .luxury-section .leaf-img {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 260px;
        /*opacity: 0.25;*/
    }




    /*footer css start*/
        .footer-section {
        padding: 50px 0;
        background: #000;
        color: #fff;
        border-top: 1px solid #333;
    }
    .footer-section .footer-logo img {
        width: 100%;
        height: auto;
        max-width: 40%;
    }
    .footer-section .footer-left {
        width: 70%;
        text-align: center;
    }
    .footer-section .footer-social{
        margin-top: 20px;
        justify-content: center;
    }
    .footer-section .footer-right-side{
        display: flex;
        justify-content: space-between;
    }
    .footer-section .footer-social a {
        height: 45px;
        width: 45px;
        border-radius: 50%;
        border: 1px solid #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 12px;
        text-decoration: none;
        color: #fff;
        font-size: 20px;
        transition: 0.3s;
    }
    .footer-section .footer-social a:hover {
        background: #fff;
        color: #000;
    }
    .footer-section .footer-text {
        font-size: 16px;
        font-weight: 300;
        color: #fff;
        line-height: 32px;
        font-family: 'Montserrat', sans-serif;
    }
    .footer-section .footer-copy {
        border-top: 1px solid #fff;
        margin-top: 40px;
        padding-top: 22px;
        text-align: left;
        font-size: 16px;
        font-weight: 300;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
    }
    .footer-section .footer-text a{
        text-decoration: none !important;
        color: #fff !important;
    }


/*tedtomonial css start*/

.testimonial-section {
    background: url("../images/testomonial-bg.png") no-repeat center center/cover;
    position: relative;
    overflow-x: hidden;
}

.testimonial-section .testimonial-content {
position: relative;
max-width: 900px;
margin: auto;
z-index: 2;
text-align: center;
}

.testimonial-section .owl-carousel .owl-item img{
    max-width: 5%;
    margin: 0 auto;
}

.testimonial-section .testimonial-content h1{
    color: #fff;
    padding-bottom: 1rem;
}

.testimonial-section .testimonial-content p{
    color: #fff;
}


.testimonial-section .testimonial-box {
background: rgba(255,255,255,0.12);
backdrop-filter: blur(12px);
border-radius: 12px;
padding: 40px 170px;
color: #fff;
text-align: center;
}
.testimonial-section .quote-icon {
font-size: 45px;
color: #d4a94f;
margin-bottom: 20px;
}
.testimonial-section .testimonial-text {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
     font-family: 'Montserrat', sans-serif;
}
.testimonial-section .author {
margin-top: 25px;
font-weight: 600;
font-size: 16px;
color: #D0DBD1 !important;
font-family: 'Montserrat', sans-serif;
}

.testimonial-section #testimonial-slider.owl-theme .owl-nav [class*=owl-]{
    color: #fff !important;
    background: transparent !important;
    border: 2px solid #fff !important;
    height: 56px;
    width: 56px;
    border-radius: 50px !important;
}

.testimonial-section #testimonial-slider .owl-prev{
   position: absolute;
    left: -17%;
    top: 50%;
}

.testimonial-section #testimonial-slider .owl-next{
   position: absolute;
    right: -17%;
    top: 50%;
}







/*card-section*/
    .luxury-card-section {
    background: url("../images/luxury-card-bg.png");
    background-size: cover;
}

.luxury-card-section .luxury-card {
    position: relative;
    overflow: hidden;
}

.luxury-card-section .luxury-card img {
    width: 100%;
    height: auto;
}

.luxury-card-section .luxury-text {
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-family: 'Montserrat', sans-serif;
}

.luxury-card-section .owl-carousel .nav-btn i {
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 50%;
    border: 2px solid #86B96D;
    color: #86B96D;
    font-size: 22px;
    height: 42px ;
    width: 42px;
    margin: 0 10px;
}

.luxury-card-section .luxury-carousel .owl-nav {
    margin-top: 2rem;
    text-align: center;
}


.luxury-card-section .inner-luxury-card:nth-child(1),
.luxury-card-section .inner-luxury-card:nth-child(3){
    margin-top: -6rem;
}

.luxury-card-section .main-luxury-card{
    display: flex;
    gap: 20px;
    margin-top: 7rem;
}


/*grid card*/
 .amenities-section{
    }

    .amenities-section .inner-section{
        background: url("../images/Amenities & Club Life.png");
        background-size: cover;
    }

    .amenities-section .amenity-card:nth-child(1),
    .amenities-section .amenity-card:nth-child(3){
        margin-top: -15rem;
        padding-right: 30px;
    }
        .amenities-section .amenity-card:nth-child(2),
    .amenities-section .amenity-card:nth-child(4){
        padding-left: 30px;
        padding-top: 2rem;
    }

    .amenities-section .amenities-heading-wrapper{
        display: flex;
    flex-direction: column;
    justify-content: end;
    width: 50%;
    margin-left: auto;
    padding-left: 3rem;
    }


    .amenities-section .amenity-card img{
        width: 100%;
        height: auto;
    }

    .amenities-section .main-amenity-card{
        padding-bottom: 4rem;
    }

    .amenities-section .amenity-title{
    font-size: 28px;
    margin-top: 22px;
    color: #2E3E2F;
    font-weight: 400;
    width: 90%;
    line-height: 32px;
    font-family: 'Montserrat', sans-serif; 
    }

    .amenities-section .section-heading{
        color: #2E3E2F;
        margin-bottom: 15px;
        max-width: 400px;
    }

    .amenities-section .section-para{
        color: #2E3E2F;
        margin-bottom: 60px;
        max-width: 500px;
    }

    /* spacing fix */
    .amenities-section .amenity-card{
        margin-bottom: 35px;
    }


/*overlay section css*/
        .overlay-section {
            position: relative;
            height: 80vh;
            overflow: hidden; 
        }

        .overlay-section .main-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: 1; 
        }

        .overlay-section .main-background-fader {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0; /* Starts hidden */
            /* KEY: Hardcoded transition speed 0.5s */
            transition: opacity 0.5s ease-in-out;
            z-index: 2; 
        }

        .overlay-section .tab-item {
            position: relative;
            height: 100%;
            cursor: pointer;
            overflow: hidden;
            padding: 0;
            z-index: 3; 
            border-right: 2px solid #fff;
        }

        .overlay-section .overlay-content {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            transform: translate(-50%, -50%);
            color: #fff; /* Hardcoded text color */
            font-size: 30px;
            color: #fff;
            font-weight: 300;
            text-align: center;
            opacity: 1;
            transition: opacity 0.5s; /* Hardcoded transition speed */
            z-index: 5; 
            font-family: 'Montserrat', sans-serif;
        }

        .overlay-section .tab-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-color: rgba(0, 0, 0, 0.6); /* Hardcoded overlay color */
            transition: all 0.5s; /* Hardcoded transition speed */
            z-index: 4; 
        }

       .overlay-section .tab-item.active{
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(20px);
       }

        .overlay-section .tab-item:not(.active) .tab-bg {
            filter: none; 
            background-color: rgba(0, 0, 0, 0.4); /* Hardcoded overlay color */
        }

        @media (max-width: 768px) {
            .overlay-section .row {
                flex-direction: column;
            }
           
            .overlay-section .overlay-content {
                font-size: 1.25rem;
            }
        }

/*button animation section*/
    .hero-button-section {
        background: #F2F2F2;
        position: relative;
    }

    .hero-button-section .hero-title {
        font-size: 50px;
        font-weight: 400;
        line-height: 58px;
        color: #2E3E2F;
        font-weight: 250;
        text-align: center;
        padding-bottom: 20px;
         font-family: 'Axiforma', sans-serif;
    }

    .hero-button-section .hero-desc {
        font-size: 18px;
        margin-top: 15px;
        font-weight: 300;
        color: #2E3E2F;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-button-section .leaf-vector-1{
        position: absolute;
        left: 0;
        top: 9%;
        width: 100%;
        height: auto;
        max-width: 15%;
    }

    .hero-button-section .leaf-vector-2{
        position: absolute;
        right: 0;
        bottom: 13%;
        width: 100%;
        height: auto;
        max-width: 10%;
    }

    /* -------- SCROLL ICON -------- */
    .hero-button-section .scroll-wrapper {
        margin-top: 50px;
        text-align: center;
        cursor: pointer;
    }

    .hero-button-section .scroll-line {
        width: 2px;
        height: 40px;
        background: #4a4d45;
        margin: 0 auto 12px;
    }

    .hero-button-section .mouse-icon {
        width: 26px;
        height: 42px;
        border: 2px solid #4a4d45;
        border-radius: 20px;
        margin: 0 auto;
        position: relative;
    }

    .hero-button-section .mouse-wheel {
        width: 3px;
        height: 8px;
        background: #4a4d45;
        border-radius: 2px;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        animation: wheelMove 1.4s infinite ease-in-out;
    }

    @keyframes wheelMove {
        0% { transform: translate(-50%, 0); opacity: 1; }
        50% { transform: translate(-50%, 10px); opacity: 0.4; }
        100% { transform: translate(-50%, 0); opacity: 1; }
    }

    .hero-button-section .scroll-text {
        letter-spacing: 4px;
        margin-top: 12px;
        font-size: 14px;
        color: #4a4d45;
        font-family: 'Montserrat', sans-serif;
    }

/*footerplan css start*/
        .floorplan-section {
            background: #fff;
            margin-bottom: 6rem;
        }

        .floorplan-section .main-floorplan-wrapper{
            display: flex;
        }

        .floorplan-section .left-side{
            width: 40%;
            background: url("../images/footpath-bg.png");
            padding: 5rem 7rem;
        }

        .floorplan-section .right-side{
            width: 60%;
            align-self: center;
            position: relative;
        }

        .floorplan-section .floor-left h1 {
            color: #fff;
        }

        .floorplan-section .floor-left p {
            color: #fff;
            margin-top: 20px;
            line-height: 26px;
        }

        .floorplan-section .btn-download {
            background: #fff;
            border-radius: 4px;
            padding: 14px 30px;
            font-weight: 500;
            font-size: 18px;
            color: #2E3E2F;
            margin-top: 30px;
            border: 1px solid #526E3E;
            font-family: 'Montserrat', sans-serif;
        }

        .floorplan-section .btn-download:hover{
            background: #fff;
        }

        .floorplan-section .carousel-wrapper {
            position: relative;
            margin: 4rem 0 6rem;
        }

        .floorplan-section .unit-label {
            position: absolute;
            bottom: 8%;
            left: 0;
            background:rgba(46,62,47,0.65);
            padding: 14px 30px;
            font-size: 28px;
            font-weight: 400;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
        }

        /* Owl Nav Custom */
        .floorplan-section .owl-nav {
                position: absolute;
                bottom: -17%;
                right: 14%;
        }

        .floorplan-section .owl-nav button {
            background: transparent;
            width: 48px;
            height: 48px;
            border-radius: 50% !important;
            border: 2px solid #6D9651 !important;
            margin-left: 15px;
        }

        .floorplan-section .owl-nav button span {
            color: #6D9651;
        }

        .floorplan-section .owl-theme .owl-nav [class*=owl-]:hover{
             background: transparent !important;
            }

        /* Responsive */
        @media(max-width: 991px){
            .floorplan-section .floorplan-section {
                padding-bottom: 40px;
            }
            .floorplan-section .btn-download{
                font-size: 14px;
            }
        }



        /* --- New Blur &  Styles --- */

        /* 1. Blur Overlay */
        .plan-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 10; /* Above the content, below the modal */
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 2rem;
            text-align: center;
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        /* Hidden state for unlocked content */
        .plan-overlay.d-none {
            opacity: 0;
            pointer-events: none; /* Allows clicks to pass through when invisible */
            display: flex !important; /* Keep display flex but use opacity/pointer-events */
        }
        

        .plan-overlay .btn-view-plans {
            font-size: 1.5rem;
            padding: 15px 30px;
            background-color: #005954;
            border: none;
            color: white;
            border-radius: 4px;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: background-color 0.2s;
        }

        #contactModal .row {
            --bs-gutter-x: 10px;
            --bs-gutter-y: 0;
        }  

        .plan-overlay .btn-view-plans:first-child:active {
            color: #fff;
        }

        .plan-overlay .btn-view-plans:hover {
            background-color: #004047;
        }

        /* 2. Contact Modal (From Image) */
        .contact-modal-content {
            padding: 40px;
            color: #1D1D1F;
            border-radius: 8px;
        }

        .contact-modal-content h3 {
            font-weight: 700;
            margin-bottom: 0;
        }

        .contact-modal-content p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .contact-modal-content .form-control {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid #1D1D1F;
            color: #1D1D1F;
            border-radius: 0;
            padding: 10px 0;
            margin-bottom: 20px;
        }

        .contact-modal-content .form-control:focus {
            box-shadow: none;
            border-bottom: 1px solid #1D1D1F;
            background-color: transparent;
        }

        .contact-modal-content ::placeholder {
            color: #1D1D1F;
            opacity: 0.7;
        }
        /* Custom style for validation feedback */
        .contact-modal-content .form-control.is-invalid {
            border-bottom: 2px solid #dc3545;
        }
        /* Validation Feedback Text */
        .invalid-feedback {
            color: #dc3545;
            margin-top: -15px;
            margin-bottom: 15px;
            font-size: 0.85rem;
            font-weight: 500;
            text-align: left;
        }


        .contact-modal-content .btn-submit {
            background-color: transparent;
            border: 2px solid #1D1D1F;
            color: #1D1D1F;
            padding: 10px 30px;
            border-radius: 999px;
            font-weight: 500;
            margin-top: 15px;
            transition: all 0.2s;
        }

        .contact-modal-content .btn-submit:hover {
            background-color: #1D1D1F;
            color: #C89429;
        }


        /* Modal Box */
#thankYouModal .thankyou-modal-content {
    padding: 25px 35px 40px;
    border-radius: 14px;
    border: none;
}

/* Success Icon */
#thankYouModal .success-icon {
    width: 95px;
    height: 95px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
    border-radius: 50%;
}

/* Thank You Title */
#thankYouModal h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

/* Subtitle */
#thankYouModal p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 320px;
}

/* Close Button */
#thankYouModal .btn-close {
    background-size: 12px;
}

/* Responsive */
@media (max-width: 576px) {
    #thankYouModal .thankyou-modal-content {
        padding: 20px;
    }

    #thankYouModal .success-icon {
        width: 80px;
        height: 80px;
    }

    #thankYouModal h3 {
        font-size: 20px;
    }

    #thankYouModal p {
        font-size: 14px;
    }
}





/* all media query */
    @media screen and (min-width: 1025px) and (max-width: 1300px) {
        .header-section .desktop-buttons .btn-enquire, 
        .header-section .btn-download,
        .header-section .navbar-nav .nav-link{
            font-size: 12px;
            padding: 2px 10px;
        }
        .hero-button-section .hero-title {
            font-size: 35px;
            line-height: 44px;
        }
        .testimonial-section #testimonial-slider .owl-prev {
            position: absolute;
            left: -11%;
            top: 34%;
        }
        .testimonial-section #testimonial-slider .owl-next {
            position: absolute;
            right: -11%;
            top: 34%;
        }
        .hero-button-section .hero-desc,
        .section-para, 
        .contact-section .form-control, 
        .contact-section .btn-submit, 
        .luxury-card-section .luxury-text, 
        .floorplan-section .btn-download,
        .btn-explore, 
        .hero-section .form-box p, 
        .form-control, 
        .luxury-section .visit-btn{
            font-size: 14px;
        }
        .overlay-section .overlay-content{
            font-size: 20px;
        }
        .section-heading{
            font-size: 36px;
        }
        .overview-section .right-text p, 
        .amenities-section .amenity-title, 
        .hero-section .form-box h4{
            font-size: 20px;
        }
        .floorplan-section .left-side{
            padding: 2rem 5rem;
        }
        .point-time{
            font-size: 28px;
        }
        .point-title{
            font-size: 20px;
        }
        .hero-section .btn-outline-custom, 
        .hero-section .btn-custom{
            font-size: 12px;
        }
        .footer-section .footer-text,
        .footer-section .footer-copy{
            font-size: 14px;
        }
        .footer-section .footer-left{
            width: 80%;
        }
        .header-section .sumadhura-logo img{
            max-width: 65%;
        }
        .sidebar-buttons a:first-child{
            font-size: 18px;
        }
        .sidebar-buttons a{
            font-size: 16px;
        }
        .section-padding{
            padding: 2rem 0;
        }


    } 

    @media screen and (min-width: 992px) and (max-width: 1024px) { 
        .floorplan-section .left-side{
            padding: 3rem 4rem;
            width: 50%;
        }
        .floorplan-section .right-side{
            width: 50%;
        }
        .header-section .navbar-collapse.show .mobile-menu-buttons{
            display: block !important;
        }
        .section-heading{
            font-size: 38px;
        }
        .overview-section .right-text p{
            font-size: 22px;
        }
        .floorplan-section .owl-nav{
            bottom: -33%;
        }
        .footer-section .footer-left{
            width: 90%;
        }

        .header-section .navbar-collapse .nav-item{
            text-align: center;
        }
        .header-section .btn-enquire{
            font-size: 12px;
            margin-right: 2rem;
        }
        .header-section .sumadhura-logo img{
            max-width: 80%;
        }

    }

    @media screen and (min-width: 768px) and (max-width: 991px) { 
    .footer-section .footer-logo img{
        max-width: 15% !important;
    }
}

    
     @media(max-width: 991px){
        .m-banner{
            display: block;
        }
        .d-banner{
            display: none;
        }
        .mobile-menu-buttons .btn-enquire{
            display: none;
        }
        .floorplan-section .carousel-wrapper{
            margin: 0;
        }
        .plan-overlay .btn-view-plans{
            font-size: 16px;
        }
        .header-section .sumadhura-logo img{
            max-width: 70%;
        }
        .hero-button-section{
            padding: 3rem 5px;
        }
        .footer-section .footer-logo img{
            max-width: 25%;
        }
        .hero-button-section .hero-title{
            font-size: 30px;
            line-height: 36px;
        }
        .footer-section .footer-social a{
            height: 35px;
            width: 35px;
            font-size: 16px;
        }
        .amenities-section .amenity-card{
            margin-bottom: 10px;
        }
        .hero-button-section .hero-desc{
            font-size: 16px;
        }
        .section-para{
            font-size: 14px;
        }
        .section-heading{
            font-size: 30px;
        }
        .overlay-section .tab-item {
            height: 25%;
            width: 100%;
            border-bottom: 2px solid #fff;         
        }
        .contact-section .form-control, .contact-section .form-select{
            font-size: 14px;
        }
        .contact-section .form-select{
            width: 80%;
        }
        .floorplan-section .unit-label{
            font-size: 22px;
        }
        .luxury-card-section .main-luxury-card{
            display: none;
        }
        .floorplan-section .main-floorplan-wrapper{
            flex-wrap: wrap;
        }
        .floorplan-section .left-side, .floorplan-section .right-side{
            width: 100%;
            background: transparent;
            padding: 1rem;
        }
        .floorplan-section{
            background: url("../images/footpath-bg.png");
        }
        .floorplan-section .unit-label{
            font-size: 16px;
        }
        .floorplan-section .owl-nav{
            position: static;
        }
        .amenities-section .amenities-heading-wrapper{
            width: 100%;
            padding-left: 1rem;
        }
        .amenities-section .amenity-card:nth-child(1), .amenities-section .amenity-card:nth-child(3){
            margin-top: 0;
            padding: 0 10px;
        }
        .map-heading-wrapper h2, .map-heading-wrapper p{
            width: 100%;
        }
        .amenities-section .amenity-title{
            font-size: 18px;
            line-height: 24px;
        }
        .amenities-section .amenity-card:nth-child(2), .amenities-section .amenity-card:nth-child(4){
            padding: 0 10px;
        }
        .map-heading-wrapper{
            flex-wrap: wrap;
            text-align: center;
        }
        .content-main-wrapper{
            flex-wrap: wrap;
        }
        .content-box, .map-img-wrapper{
            width: 100%;
        }
        .point-time{
            font-size: 22px;
        }
        .point-title{
            font-size: 16px;
        }
        .content-box{
            padding: 30px;
        }
        .hero-section .form-box{
            padding-left: 0;
            padding-top: 30px;
        }
        .hero-section .form-box h4{
            font-size: 22px;
        }
        .testimonial-section .testimonial-box{
            padding: 2rem;
        }
        .testimonial-section .owl-carousel .owl-item img{
            max-width: 10%;
        }
        .footer-section .footer-social{
            justify-content: center;
        }
        .footer-section .footer-left{
            width: 100%;
            margin-bottom: 2rem;
        }
        .footer-section .footer-right-side{
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .footer-section .footer-copy{
            text-align: center;
        }

        .sidebar-buttons{
         position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        flex-direction: row;
        padding: 0;
        text-align: center;
        border-radius: 0;
        }
        .sidebar-buttons a{
            width: 50%;
            padding: 10px !important;
        }
        .sidebar-buttons a:first-child{
        border-bottom: none;
        border-right: 1px solid #fff;
        padding: 0;
        margin: 0;
        }


        .overview-section .left-label{
            padding: 10px;
        }
        .overview-section .right-text{
            padding: 15px;
        }
        .overview-section .right-text p{
            font-size: 16px;
        }
        .floorplan-section .owl-nav button{
            color: #fff;
            border-color: #fff;
        }
        .luxury-section .bottom-leaf{
            max-width: 30%;
        }
        .luxury-section .right-text{
            margin-bottom: 2rem;
        }
        .testimonial-section #testimonial-slider .owl-nav{
            display: none;
        }
        .testimonial-section{
            padding-left: 1rem;
            padding-right: 1rem;
        }
        .testimonial-section .author, .testimonial-section .testimonial-text{
            font-size: 14px;
        }
        .luxury-section .left-heading h1 br{
            display: none;
        }
        .footer-section .footer-text, .footer-section .footer-copy{
            font-size: 14px;
            line-height: 28px;
        }
        .luxury-section .visit-btn, .hero-section .btn-custom, .hero-section .btn-outline-custom, 
        .btn-explore, .contact-section .btn-submit{
            font-size: 14px;
        }

        .overview-section .left-label p{
            font-size: 12px;
        }
        .floorplan-section .owl-nav button span{
            color: #fff;
        }
        .floorplan-section .owl-nav button{
            border: 2px solid #fff !important;
        }
        .download-btn-wrapper {
            flex-direction: column;
            gap: 0 !important;
            width: 80;
        }
        .hero-section .btn-outline-custom{
            margin-top: 1rem;
        }
        .luxury-section .left-heading h1{
            line-height: 42px;
        }
     }




