*:focus {
    outline: none;
    border: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Common fade-in styles */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}

.viewer-button {
    background-color: #0b5a7e !important;
    height: 80px !important;
    width: 80px !important;
    border: none !important;
    border-radius: 0px !important;
}

    .viewer-button:hover {
        background-color: #58be07 !important;
    }

    .viewer-button:before {
        bottom: 12px !important;
        left: 12px !important;
        transform: scale(1.3) !important;
    }

.viewer-title {
    display: none !important;
}


.section-heading {
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-align: left;
    font-family: "Austin-News-Headline-Light, sans-serif";
    opacity: 0;
    transform: translateY(20px);
}

.description {
    font-size: 1rem;
    font-weight: 500;
    font-family: "Euclid-Circular-A-Regular, sans-serif";
    color: #121212;
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 767px) {
    .section-heading {
        font-size: 1.8rem;
        line-height: 35px;
        margin-bottom: 30px !important;
    }
}

.fade-in-up-element {
    opacity: 0;
    /* transform: translateY(40px);
    transition: opacity 1.5s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.5s cubic-bezier(0.25, 0.1, 0.25, 1); */
}

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-right-element {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
}

.fade-in-right {
    opacity: 1;
    transform: translateX(0);
}

/* Banner Section */
.banner {
    height: 100vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0) 45%), url('../images-homepages/banner.png') no-repeat center center / cover;
    position: relative;
    color: white;
    /* background-attachment: fixed; */
}

    /* .parallax-banner {
    background-attachment: fixed; 
} */

    .banner .banner-content {
        /* animation: fadeIn 3s ease-in-out; */
        position: relative;
        /* position: fixed; */
        z-index: 1;
        /* left: 7.5%; */
        top: 80%;
    }

.logo-images {
    margin-bottom: 5rem;
}

.mansion-img {
    width: auto;
    height: 70px;
}

.scda-img {
    width: 120px;
    height: 70px;
}

.banner .banner-content .banner-subHeading {
    font-size: 2.4rem;
    line-height: 50px;
    /* animation: fadeIn 2.3s ease-in-out forwards; */
    font-family: "Austin-News-Headline-Light, sans-serif";
    margin-bottom: 0px;
    text-align: end;
}

.banner .banner-content .banner-subText {
    font-family: "Euclid-Circular-A-Regular, sans-serif";
    font-size: 1.3rem;
    border-left: 1px solid #fff;
    padding-left: 10px;
    opacity: 0;
    /* transform: translateY(-100px); */
    /* animation: fadeIn 1.3s ease forwards, slideDown 1s ease forwards, borderExpand 1s ease forwards; */
    margin-right: 24px;
}

/* Animation Start */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes borderExpand {
    from {
        border-left-width: 0;
    }

    to {
        border-left-width: 1px;
        /* Desired final width */
    }
}

/* Animation End */

/* Tablet Styles */
@media (max-width: 1024px) {
    .banner .banner-content {
        position: absolute;
        z-index: 1;
        left: 7.5%;
        top: 80%;
        width: 100%;
    }

    .mansion-img {
        width: auto;
        height: 70px;
        margin-bottom: 40px;
    }

    .scda-img {
        width: 100px;
    }

    .banner .banner-content .banner-subHeading {
        font-size: 3rem;
        line-height: 48px;
        text-align: left;
    }

    .banner .banner-content .banner-subText {
        font-size: 1.1rem;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .banner {
        background: url("../images-homepages/banner.png") no-repeat center center/cover;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: scroll;
    }

        .banner .banner-content {
            /* animation: fadeIn 3s ease-in-out; */
            position: absolute;
            z-index: 1;
            left: 0;
            top: 70%;
            width: 100%;
        }

    .mansion-img {
        width: auto;
        height: 50px;
        margin-bottom: 30px;
    }

    .scda-img {
        width: 100px;
    }

    .banner .banner-content .banner-subHeading {
        font-size: 1.8rem;
        line-height: 35px;
        margin-top: 0px;
        text-align: center;
        /* margin-left: 31px; */
    }

    .banner .banner-content .banner-subText {
        font-size: 1.1rem;
        text-align: left;
    }
}


/* Residential Section CSS Start */

.m3m-mansion-section {
    padding-top: 20px;
    padding-bottom: 70px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

    .m3m-mansion-section .breadcrumb-section {
        padding-top: 10px;
        padding-bottom: 50px;
    }

    .m3m-mansion-section .breadcrumb {
        background-color: transparent;
        padding: 0;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .m3m-mansion-section .breadcrumb-item a {
        color: #b3b3b3;
        text-decoration: none;
        font-size: 16px;
        font-family: "Euclid-Circular-A-Regular, sans-serif";
    }

    .m3m-mansion-section .breadcrumb-item.active {
        color: #58be07;
        font-size: 16px;
        font-family: "Euclid-Circular-A-Regular, sans-serif";
    }

    .m3m-mansion-section .breadcrumb-divider {
        margin: 0 8px;
        color: #b3b3b3;
    }

    .m3m-mansion-section .left-section {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

        .m3m-mansion-section .left-section .content {
            margin-bottom: 3rem;
        }

        .m3m-mansion-section .left-section h4 {
            font-size: 2.7rem;
            font-weight: 500;
            font-family: "Austin-News-Headline-Light, sans-serif";
            color: #1c1c1c;
            line-height: 50px;
        }

        .m3m-mansion-section .left-section h5 {
            font-size: 15px;
            margin-bottom: 20px;
            font-family: "Euclid-Circular-A-Regular, sans-serif";
            font-weight: 600;
            width: 100%;
        }

        .m3m-mansion-section .left-section .description {
            font-size: 1rem;
            font-weight: 500;
            font-family: "Euclid-Circular-A-Regular, sans-serif";
            color: #121212;
            margin-bottom: 20px;
        }

        .m3m-mansion-section .left-section .boxes {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 3rem;
            gap: 1rem;
        }

        .m3m-mansion-section .left-section .box {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            flex-basis: calc(50% - 1rem);
        }

            .m3m-mansion-section .left-section .box .m3m-icons {
                width: 40px;
                height: auto;
                margin-right: 20px;
                margin-top: 2px;
            }

            .m3m-mansion-section .left-section .box .text {
                font-size: 16px;
                font-weight: 500;
                font-family: "Euclid-Circular-A-Regular, sans-serif";
                color: #121212;
                line-height: 20px;
                margin-bottom: 0px;
            }

        .m3m-mansion-section .left-section .button-container {
            display: flex;
            gap: 20px;
        }

            .m3m-mansion-section .left-section .button-container .button {
                color: #fff;
                background-color: #58be07;
                border-radius: 30px;
                font-family: "Euclid-Circular-A-Regular, sans-serif";
                font-size: 18px;
                position: relative;
                text-decoration: none;
                padding: 10px 20px;
                display: inline-block;
                overflow: hidden;
                z-index: 1;
            }

                .m3m-mansion-section .left-section .button-container .button:before {
                    content: "";
                    position: absolute;
                    background-color: #0b5a7e;
                    height: 0%;
                    width: 100%;
                    left: 0;
                    bottom: 0;
                    z-index: -1;
                    transition: height 0.4s ease;
                }

            .m3m-mansion-section .left-section .button-container .back-hover:hover .button:before {
                height: 100%;
            }

            .m3m-mansion-section .left-section .button-container .back-hover:hover .button:after {
                width: 0;
            }

            .m3m-mansion-section .left-section .button-container .button:hover,
            .m3m-mansion-section .left-section .button-container .arrow-icon:hover {
                cursor: pointer !important;
                color: #fff;
            }

            .m3m-mansion-section .left-section .button-container .arrow-icon {
                width: 24px;
                height: 24px;
                margin-left: 15px;
            }

    .m3m-mansion-section .right-section .img-slider {
        position: relative;
        width: 100%;
        height: 630px;
        max-width: 570px;
        margin: 10px;
        overflow: hidden;
    }

        .m3m-mansion-section .right-section .img-slider .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: translateX(100%);
        }

            .m3m-mansion-section .right-section .img-slider .slide.active {
                opacity: 1;
                transform: translateX(0);
            }

            .m3m-mansion-section .right-section .img-slider .slide img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .m3m-mansion-section .right-section .img-slider .navigation {
            position: absolute;
            display: flex;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
        }

            .m3m-mansion-section .right-section .img-slider .navigation .bullet {
                background-color: #fff;
                width: 12px;
                height: 12px;
                border-radius: 50%;
                margin: 5px;
                cursor: pointer;
                transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, background-color 0.3s, opacity 0.3s;
            }

                .m3m-mansion-section .right-section .img-slider .navigation .bullet.active {
                    background-color: #58be07;
                    width: 50px !important;
                    border-radius: 10px !important;
                }

@media (min-width: 768px) and (max-width: 1024px) {
    .m3m-mansion-section .left-section .content {
        margin-bottom: 1rem;
    }

    .m3m-mansion-section .left-section .boxes {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 1rem;
        gap: 0rem;
    }

    .m3m-mansion-section .left-section .box {
        margin-bottom: 10px;
    }

    .m3m-mansion-section .right-section .img-slider {
        height: 500px;
    }
}


@media (max-width: 767px) {
    .m3m-mansion-section {
        padding-bottom: 50px;
    }

        .m3m-mansion-section .breadcrumb-section {
            padding-bottom: 30px;
        }

        .m3m-mansion-section .left-section .content {
            margin-bottom: 1rem;
        }

        .m3m-mansion-section .left-section h4 {
            font-size: 1.8rem;
            line-height: 35px;
            margin-bottom: 30px !important;
        }

        .m3m-mansion-section .left-section h5 {
            font-size: 16px;
            width: 80%;
            line-height: 28px;
        }

        .m3m-mansion-section .left-section .description {
            font-size: 14px;
        }

        .m3m-mansion-section .left-section .boxes {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 0rem;
            gap: 0rem;
        }

        .m3m-mansion-section .left-section .box {
            flex-basis: 100%;
            margin-bottom: 10px;
        }

            .m3m-mansion-section .left-section .box .m3m-icons {
                margin-bottom: 10px;
                width: 34px;
            }

            .m3m-mansion-section .left-section .box .text {
                font-size: 14px;
            }

       .m3m-mansion-section .button-container {
    display: flex;
    gap: 12px;
    margin-bottom: 20px !important;
  }

  .m3m-mansion-section .button-container > div {
    flex: 1;
  }

             .m3m-mansion-section .button-container .button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 9px 10px !important;
    font-size: 14px !important;
    white-space: nowrap;
  }

            .m3m-mansion-section .button-container .arrow-icon {
    width: 28px;
    height: 28px;
  }

        .m3m-mansion-section .right-section .img-slider {
            height: 400px;
            margin: 0px;
        }

            .m3m-mansion-section .right-section .img-slider .navigation {
                bottom: 20px;
            }

                .m3m-mansion-section .right-section .img-slider .navigation .bullet {
                    width: 10px;
                    height: 10px;
                }
}

/* Residential Section CSS End */

/* Featured Section Start */
.featured-section {
    padding-top: 30px;
    padding-bottom: 55px;
    background-color: #f9f9f9;
    position: relative;
    z-index: 2;
}

    .featured-section .container-fluid {
        padding-right: 70px;
        padding-left: 70px;
        position: relative;
    }

    .featured-section .mySwiper4 {
        width: 100%;
        height: 75vh;
        position: relative;
    }

    .featured-section .swiper-wrapper {
        display: flex;
    }

    .featured-section .swiper-slide.boxShadow {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        transition: transform 0.5s ease-in-out;
    }

        .featured-section .swiper-slide.boxShadow::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
            z-index: 1;
            transition: opacity 0.3s ease-in-out;
            pointer-events: none;
        }

    .featured-section .swiper-slide .slider-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0px;
        transition: transform 0.8s ease-in-out;
    }

    .featured-section .swiper-slide:hover .slider-image {
        transform: scale(1.10);
    }

    /* slider overlay start */
    .featured-section .slider-content {
        width: 85%;
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px;
        color: #fff;
        z-index: 2;
    }

        .featured-section .slider-content .slider-text {
            display: flex;
            flex-direction: column;
            justify-content: end;
        }

    .featured-section .slider-text .heading {
        font-size: 1.5rem;
        color: #fff;
        font-family: "Euclid-Circular-A-Regular, sans-serif";
        font-weight: 600;
    }

    .featured-section .slider-text .description {
        font-size: 1.2rem;
        color: #fff;
        font-family: "Euclid-Circular-A-Regular, sans-serif";
        margin-bottom: 0px;
    }

    /* slider overlay end */

    .featured-section .swiper-navigation {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 70px;
    }

    .featured-section .swiper-nav-left,
    .featured-section .swiper-nav-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: opacity 0.3s ease;
        color: #838383;
    }

    .featured-section .swiper-nav-left {
        top: 62px;
    }

    .featured-section .swiper-nav-right {
        left: 40px;
        top: 62px;
    }

    .featured-section .swiper-pagination {
        position: absolute;
        bottom: -4px;
        right: 60px;
        z-index: 10;
        text-align: end;
        margin: 0 auto;
        margin-right: 0px;
    }

        .featured-section .swiper-pagination .swiper-pagination-bullet {
            background-color: transparent;
            border: 2px solid #000;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            margin: 0 5px;
            transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, background-color 0.3s, border-color 0.3s, opacity 0.3s;
        }

        .featured-section .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #58be07;
            opacity: 1;
            border: none;
            width: 50px !important;
            border-radius: 10px !important;
        }

@media (min-width: 768px) and (max-width: 1024px) {
    .featured-section .container-fluid {
        padding-right: 30px;
        padding-left: 30px;
        position: relative;
    }

    .featured-section .mySwiper4 {
        width: 100%;
        height: 50vh;
        position: relative;
    }
}

@media (max-width: 767px) {
    .featured-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

        .featured-section .container-fluid {
            padding-left: 0px;
            padding-right: 0px;
        }

        .featured-section .mySwiper4 {
            height: 25vh;
        }

        .featured-section .slider-content {
            width: 100%;
            bottom: 20px;
        }

            .featured-section .slider-content .slider-text {
                padding-left: 12px;
            }

        .featured-section .slider-text .heading {
            font-size: 0.8rem;
            margin-bottom: 0px;
        }

        .featured-section .slider-text .description {
            font-size: 0.7rem;
        }

        .featured-section .swiper-pagination {
            position: absolute;
            bottom: -30px !important;
            display: flex;
            justify-content: center;
            z-index: 10;
            text-align: end;
            margin-left: 0;
            width: 100% !important;
        }
}

/* Featured Section End */

/* Immersive Tour Section CSS Start */
.immersive-section {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

    .immersive-section .video-container {
        width: 100%;
        height: 85vh;
        overflow: hidden;
        position: relative;
        background-color: #000;
    }
        /* ------ */
        .immersive-section .video-container .videIframeContainer, .immersive-section .video-container .PreviewImageCls {
            width: 100%;
            height: 85vh;
            overflow: hidden;
            position: relative;
            background-color: #000;
        }

@media (max-width: 767px) {
    .immersive-section .video-container .videIframeContainer, .immersive-section .video-container .PreviewImageCls {
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .immersive-section .video-container .videIframeContainer, .immersive-section .video-container .PreviewImageCls {
        height: 512px;
    }
}

/* ------ */
.immersive-section .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.immersive-section .loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.8);
}

.immersive-section .play-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: hsl(0, 0%, 100%);
    background-color: transparent;
    border: 1.8px solid #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
}

    .immersive-section .play-pause-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        z-index: -1;
        transition: background-color 0.3s ease;
    }

    .immersive-section .play-pause-btn:hover::before {
        background-color: rgba(88, 190, 7, 0.8);
    }

    .immersive-section .play-pause-btn:hover {
        background-color: transparent;
        border: none;
        color: rgb(255, 255, 255);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    }


.immersive-section .nav-tabs {
    border: none;
    display: flex;
    justify-content: end;
}

    .immersive-section .nav-tabs .nav-link {
        cursor: pointer;
    }

.immersive-section .tab-content {
    padding-top: 20px;
}

.immersive-section .tab-buttons {
    margin-top: 12px;
}

    .immersive-section .tab-buttons .nav-link {
        padding: 8px 20px;
        font-size: 0.9rem;
        border: none;
        margin: 0 5px;
        border-radius: 25px;
        background-color: #f1f1f1;
        color: #000;
        transition: all 0.3s ease;
        font-family: 'Euclid-Circular-A-Regular, sans-serif';
    }

        .immersive-section .tab-buttons .nav-link:hover,
        .immersive-section .tab-buttons .nav-link.active {
            background-color: #58be07;
            color: #fff;
        }

.immersive-section .fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 10;
    display: none;
}

.immersive-section .video-playing .fullscreen-btn {
    display: block;
}

/* Animaton Start */
/* Fade-in animation for the tab content */
/* @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* Apply fade-in animation when tab becomes active */
.immersive-section .tab-pane {
    animation: fadeIn 0.6s ease both;
}

/* Slide-in effect for the video thumbnail */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animation to video container */
.immersive-section .video-container {
    animation: slideIn 1s ease both;
}

.immersive-section .tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

    .immersive-section .tab-pane.show {
        display: block;
        opacity: 1;
    }

.immersive-section .tab-buttons .nav-link {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

    .immersive-section .tab-buttons .nav-link:hover {
        transform: translateY(-5px);
    }

/* Animaton End */
@media (min-width: 768px) and (max-width: 1024px) {
    .immersive-section .tab-buttons .nav-link {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .immersive-section .video-container {
        height: 500px;
    }

    .immersive-section .play-pause-btn {
        height: 80px;
        width: 80px;
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .immersive-section {
        padding-top: 50px;
        padding-bottom: 0px;
    }

        .immersive-section .nav-tabs {
            display: flex;
            justify-content: start;
        }

        .immersive-section .tab-buttons {
            flex-wrap: wrap;
        }

            .immersive-section .tab-buttons .nav-link {
                padding: 8px 16px;
                font-size: 0.8rem;
                margin-bottom: 10px;
            }

        .immersive-section .video-container {
            height: auto;
        }

        .immersive-section .play-pause-btn {
            height: 70px;
            width: 70px;
            font-size: 24px;
        }
}
/* Immersive Tour Section CSS End */


/* Premier Offerings CSS Start */
.premier-section {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

    .premier-section .swiper-slide {
        border: 1px solid #000;
    }

        .premier-section .swiper-slide .image-container {
            padding: 10px;
        }

            .premier-section .swiper-slide .image-container .boxShadow {
                width: 100%;
                height: 350px;
                overflow: hidden;
                position: relative;
            }

                .premier-section .swiper-slide .image-container .boxShadow::before {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 50%;
                    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
                    z-index: 1;
                    transition: opacity 0.3s ease-in-out;
                    pointer-events: none;
                }

        .premier-section .swiper-slide .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
        }

    .premier-section .slide-title {
        position: absolute;
        bottom: 8%;
        left: 10%;
        z-index: 10;
        font-size: 16px;
        color: #fff;
        font-family: 'Euclid-Circular-A-Regular, sans-serif';
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }

    .premier-section .swiper-navigation {
        position: relative;
        width: 100%;
        height: 0;
    }

    .premier-section .swiper-nav-left,
    .premier-section .swiper-nav-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        display: block;
        color: #838383;
    }

    .premier-section .swiper-nav-left {
        left: 0px;
        top: 40px;
    }

    .premier-section .swiper-nav-right {
        left: 40px;
        top: 40px;
    }

    .premier-section .nav-tabs {
        border: none;
        display: flex;
        justify-content: end;
    }

        .premier-section .nav-tabs .nav-link {
            cursor: pointer;
        }

    .premier-section .tab-content {
        padding-top: 20px;
    }

    .premier-section .tab-buttons {
        margin-top: 12px;
    }

        .premier-section .tab-buttons .nav-link {
            padding: 8px 20px;
            font-size: 0.9rem;
            border: none;
            margin: 0 5px;
            border-radius: 25px;
            background-color: #f1f1f1;
            color: #000;
            transition: all 0.3s ease;
            font-family: 'Euclid-Circular-A-Regular, sans-serif';
            margin-bottom: 10px;
        }

            .premier-section .tab-buttons .nav-link:hover,
            .premier-section .tab-buttons .nav-link.active {
                background-color: #58be07;
                color: #fff;
            }



@media (min-width: 768px) and (max-width: 1024px) {
    .premier-section .tab-buttons .nav-link {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .premier-section .navigation-buttons-container {
        position: static;
        justify-content: center;
        margin-top: 10px;
    }

    .premier-section .nav-tabs {
        display: flex;
        justify-content: start;
    }

    .premier-section .tab-buttons {
        flex-wrap: wrap;
    }

        .premier-section .tab-buttons .nav-link {
            margin-bottom: 10px;
            padding: 8px 16px;
            font-size: 0.8rem;
        }

    .premier-section .myswiper5 {
        height: auto;
    }

    .premier-section .swiper-slide {
        flex-direction: column;
        height: auto;
    }

        .premier-section .swiper-slide .image-container {
            height: 300px;
        }

    .premier-section .slide-title {
        font-size: 16px;
        bottom: 6%;
        left: 8%;
    }
}

/* Premier Offerings CSS End */

/* Connectivity Section CSS Start */
.connectivity-section {
    padding-top: 30px;
    padding-bottom: 18px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

    .connectivity-section .image-container {
        width: 100%;
        height: 100%;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
    }

        .connectivity-section .image-container .map-image {
            max-width: 100%;
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
        }

    .connectivity-section .text-part {
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

        .connectivity-section .text-part::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background: #000;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .connectivity-section .text-part:hover {
            transform: translateY(-5px);
        }

            .connectivity-section .text-part:hover::after {
                transform: translateX(0);
            }

        .connectivity-section .text-part h4 {
            font-family: 'Euclid-Circular-A-Regular, sans-serif';
            font-size: 1rem;
            color: #000;
            font-weight: 600;
            margin-bottom: 10px;
            height: 45px;
        }

        .connectivity-section .text-part p {
            font-family: 'Euclid-Circular-A-Regular, sans-serif';
            font-size: 16px;
            color: #000;
        }

        /* Hover effects */
        .connectivity-section .text-part:hover {
            transform: translateY(-10px);
        }

/* Responsive styles */

@media (min-width: 768px) and (max-width: 1024px) {
    .connectivity-section .col-lg-2 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    .connectivity-section .text-part h4 {
        font-size: 1rem;
    }

    .connectivity-section .text-part p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .connectivity-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

        .connectivity-section .image-container {
            width: 100%;
            height: 100%;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .connectivity-section .col-lg-2 {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .connectivity-section .text-part h4 {
            font-size: 13px;
            height: 35px;
        }

        .connectivity-section .text-part p {
            font-size: 13px;
        }
}

/* Connectivity Section CSS End */

/* Project Configuration Section CSS Start */
.project-section {
    padding-top: 70px;
    padding-bottom: 100px;
    background-color: #f9f9f9;
    position: relative;
    z-index: 2;
}

    .project-section .swiper-slide .image-container {
        width: 100%;
        height: 350px;
        overflow: hidden;
        position: relative;
        padding: 10px;
        border: 1px solid #000;
    }

    .project-section .swiper-slide .slide-image {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .project-section .QueryForConfigrationBtn {
        padding: 8px 20px;
        font-size: 0.9rem;
        border: none;
        border-radius: 25px;
        background-color: #58be07;
        color: #fff;
        transition: all 0.3s ease;
        font-family: 'Euclid-Circular-A-Regular, sans-serif';
    }

    .project-section .slide-title {
        position: absolute;
        bottom: 8%;
        left: 10%;
        z-index: 10;
        font-size: 16px;
        color: #000;
        font-weight: 600;
        font-family: 'Euclid-Circular-A-Regular, sans-serif';
    }

    .project-section .swiper-navigation {
        position: relative;
        width: 100%;
        height: 0;
    }

    .project-section .swiper-nav-left,
    .project-section .swiper-nav-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        display: block;
        color: #838383;
    }

    .project-section .swiper-nav-left {
        left: 0px;
        top: 40px;
    }

    .project-section .swiper-nav-right {
        left: 40px;
        top: 40px;
    }

    .project-section .nav-tabs {
        border: none;
        display: flex;
        justify-content: end;
    }

        .project-section .nav-tabs .nav-link {
            cursor: pointer;
        }

    .project-section .tab-content {
        padding-top: 20px;
    }

    .project-section .tab-buttons {
        margin-top: 12px;
    }

        .project-section .tab-buttons .nav-link {
            padding: 8px 20px;
            font-size: 0.9rem;
            border: none;
            margin: 0 5px;
            border-radius: 25px;
            background-color: #f1f1f1;
            color: #000;
            transition: all 0.3s ease;
            font-family: 'Euclid-Circular-A-Regular, sans-serif';
            margin-bottom: 10px;
        }

            .project-section .tab-buttons .nav-link:hover,
            .project-section .tab-buttons .nav-link.active {
                background-color: #58be07;
                color: #fff;
            }

@media (min-width: 768px) and (max-width: 1024px) {
    .project-section .tab-buttons .nav-link {
        margin-bottom: 10px;
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .project-section .nav-tabs {
        display: flex;
        justify-content: start;
    }
}

@media (max-width: 767px) {
    .project-section {
        padding-top: 50px;
        padding-bottom: 100px;
    }

        .project-section .navigation-buttons-container {
            position: static;
            justify-content: center;
            margin-top: 10px;
        }

        .project-section .nav-tabs {
            display: flex;
            justify-content: start;
        }

        .project-section .tab-buttons {
            flex-wrap: wrap;
        }

            .project-section .tab-buttons .nav-link {
                margin-bottom: 10px;
                font-size: 0.8rem;
                padding: 8px 16px;
            }

        .project-section .myswiper5 {
            height: auto;
        }

        .project-section .swiper-slide {
            flex-direction: column;
            height: auto;
        }

            .project-section .swiper-slide .image-container {
                height: 300px;
            }

        .project-section .slide-title {
            font-size: 16px;
            bottom: 6%;
            left: 8%;
        }
}
/* Project Configuration Section CSS End */

/* Legal Section CSS Start */
.legal-section {
    padding-top: 0px;
    padding-bottom: 70px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

    .legal-section .text {
        font-size: 1.5rem;
        color: #000;
        margin-bottom: 20px;
        font-family: 'Euclid-Circular-A-Regular, sans-serif';
    }

    .legal-section p {
        font-size: 1rem !important;
        color: #121212 !important;
        font-family: "Euclid-Circular-A-Regular, sans-serif" !important;
        padding: 0 !important;
    }

    .legal-section .content-section {
        font-size: 15px;
        color: #000;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: justify;
        font-family: 'Euclid-Circular-A-Regular, sans-serif';
    }

    .legal-section img {
        width: 200px;
        margin-right: 30px;
        transition: transform 0.3s ease;
    }

        .legal-section img:hover {
            transform: scale(1.1);
        }

    .legal-section p:last-child {
        margin-bottom: 0;
    }

.content-section p:nth-child(n+2) {
    display: none;
}

.read-more-btn {
    background-color: transparent;
    border: none;
    color: #58be07;
    cursor: pointer;
    font-size: 16px;
}

    .read-more-btn:hover {
        cursor: pointer !important;
    }

/* Mobile adjustments */
@media (max-width: 767px) {
    .legal-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

        .legal-section .text, .legal-section .content-section {
            font-size: 14px;
        }

        .legal-section img {
            width: 100px;
            margin-bottom: 15px;
        }
}

/* Legal Section CSS End */

/* Atrium Page CSS Start */
.brand-section {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #f9f9f9;
    position: relative;
    z-index: 2;
}

    .brand-section .logo-slider .swiper-wrapper {
        transition-timing-function: linear;
    }

    .brand-section .logo-slider .logo {
        display: inline-block;
        margin: 10px;
        width: 200px;
        height: auto;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

        .brand-section .logo-slider .logo:hover {
            transform: scale(1.1);
        }

    .brand-section .nav-tabs {
        border: none;
        display: flex;
        justify-content: end;
    }

        .brand-section .nav-tabs .nav-link {
            cursor: pointer;
        }

    .brand-section .tab-content {
        padding-top: 20px;
    }

    .brand-section .tab-buttons {
        margin-top: 12px;
    }

        .brand-section .tab-buttons .nav-link {
            padding: 8px 20px;
            font-size: 0.9rem;
            border: none;
            margin: 0 5px;
            border-radius: 25px;
            background-color: #f1f1f1;
            color: #000;
            transition: all 0.3s ease;
            font-family: 'Euclid-Circular-A-Regular, sans-serif';
            margin-bottom: 10px;
        }

            .brand-section .tab-buttons .nav-link:hover,
            .brand-section .tab-buttons .nav-link.active {
                background-color: #58be07;
                color: #fff;
            }

    .brand-section .swiper-navigation {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 70px;
    }

    .brand-section .swiper-nav-left,
    .brand-section .swiper-nav-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: opacity 0.3s ease;
        color: #838383;
    }

    .brand-section .swiper-nav-left {
        top: 62px;
    }

    .brand-section .swiper-nav-right {
        left: 40px;
        top: 62px;
    }
/* Atrium Page CSS End */


/* M3M Section Popup Start */
.customEnquiryPopup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 5;
}

    .customEnquiryPopup .popup-content {
        background-color: white;
        padding: 20px 20px 10px 20px;
        border-radius: 0px;
        max-width: 400px;
        width: 90%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transform: scale(0);
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .customEnquiryPopup.show .popup-content {
        transform: scale(1);
        opacity: 1;
    }

    .customEnquiryPopup .popup-content .form-upper {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }

        .customEnquiryPopup .popup-content .form-upper h4 {
            font-size: 20px;
            color: #000;
            font-family: "Austin-News-Headline-Light, sans-serif";
        }

        .customEnquiryPopup .popup-content .form-upper i {
            font-size: 16px;
            color: #fff;
            margin-bottom: 10px;
            padding: 10px;
            background: #0a70a1;
            border-radius: 50%;
            height: 24px;
            width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .customEnquiryPopup .popup-content .form-upper i:hover {
                background-color: #58be07;
                transform: rotate(90deg);
            }

    .customEnquiryPopup .popup-content .unique-form-group {
        margin-bottom: 15px;
        position: relative;
    }

        .customEnquiryPopup .popup-content .unique-form-group input {
            width: calc(100% - 0px);
            padding: 5px;
            border: none;
            border-radius: 0px;
            font-size: 14px;
            box-shadow: rgb(203, 213, 226) 0px 0px 0px 1px;
            transition-property: box-shadow, background-color;
            transition-duration: 400ms;
            font-family: 'Euclid-Circular-A-Regular, sans-serif';
        }

        .customEnquiryPopup .popup-content .unique-form-group button {
            background-color: #0a70a1;
            color: white;
            padding: 5px 20px;
            font-size: 14px;
            border: none;
            border-radius: 0px;
            cursor: pointer;
            z-index: 1;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 45%;
            font-family: 'Euclid-Circular-A-Regular, sans-serif';
        }

            .customEnquiryPopup .popup-content .unique-form-group button:before {
                content: "";
                position: absolute;
                background-color: #58be07;
                height: 0;
                width: 100%;
                left: 0;
                bottom: 0;
                z-index: -1;
                transition: height 0.4s ease;
            }

            .customEnquiryPopup .popup-content .unique-form-group button:hover:before {
                height: 100%;
            }
/* M3M Section Popup End */

/* M3M Urban Premium Office CSS Start */

/* Project Amenities Section Start */
.project-amenities-section {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #f9f9f9;
    position: relative;
    z-index: 2;
}

    .project-amenities-section .amenity-box {
        text-align: left;
        padding: 20px;
        margin-bottom: 30px;
    }

        .project-amenities-section .amenity-box .amenity-logo img {
            width: 40px;
            height: auto;
        }

        .project-amenities-section .amenity-box .amenity-text p {
            font-size: 1rem;
            font-weight: 500;
            font-family: "Euclid-Circular-A-Regular, sans-serif";
            color: #121212;
            margin-bottom: 0;
        }
/* Project Amenities Section End */

/* Site map Section Start */
.site-map-section {
    padding-top: 70px;
    position: relative;
    z-index: 2;
}

    .site-map-section .site-map-image {
        height: 550px;
        background: url('../images-homepages/connectivity.jpg') no-repeat center center / cover;
        position: relative;
        color: white;
    }
/* Site map Section End */

font {
    font-family: "Euclid-Circular-A-Regular, sans-serif" !important;
}
/* M3M Urban Premium Office CSS End */
.fade-in-heading {
    font-family: "Austin-News-Headline-Light, sans-serif";
}
.pricing-section {
  padding: 40px 0;
  background: #fff;
  
}

.pricing-container {
  width: 85%;
 
  margin: auto;
}

.pricing-title {
  text-align: center;
  font-size: 34px;
  color: #212529;
  margin-bottom: 50px;
  font-family: "Austin-News-Headline-Light, sans-serif";
}

/* ===== DESKTOP TABLE ===== */
.pricing-table {
  
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2.5fr 2fr 1.5fr;
  align-items: center;
  padding: 22px 30px;
  border-bottom: 1px solid #eaeaea;
  background: #fff;
  font-family: "austin-news-headline-light, sans-serif";
}

.pricing-head {
  background: linear-gradient(90deg, #0b5aa5, #083e7c);
  color: #fff;
  font-weight: 600;
}

.unit-type {
  font-size: 18px;
  font-weight: 600;
}

.unit-size {
  font-size: 16px;
}

.price-btn {
  padding: 10px 22px;
 border: 1px solid #000;
  color: #000;
  text-decoration: none;
  
  display: inline-block;
}

.price-btn.dark {
  background: #000;
}

.price-btn.full {
  width: 100%;
  text-align: center;
}

.highlight {
  background: #f7f9fc;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {

  .pricing-container {
    width: 92%;
  }

  .pricing-head {
    display: none;
  }

  .pricing-table {
    box-shadow: none;
  }

  .pricing-group {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    overflow: hidden;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  /* hide desktop buttons inside 4BHK rows */
  .fourbhk .desktop-btn {
    display: none;
  }

  .mobile-only-btn {
    padding: 18px;
    border-top: 1px solid #eee;
  }
}
/* Hide mobile-only button by default (desktop & laptop) */
.mobile-only-btn {
  display: none;
}
@media (max-width: 768px) {

  .mobile-only-btn {
    display: block;
  }

  /* hide desktop buttons inside 4BHK rows */
  .fourbhk .desktop-btn {
    display: none;
  }
}

                .grecaptcha-badge {
                    visibility: hidden !important;
                }

                
                .howyoulive {
                    position: relative;
                    padding-bottom: 0;
                    margin-bottom: 60px;
                    padding-top: 40px;
                }

                    .howyoulive img {
                        width: 100%;
                        height: auto;
                        margin: 0 auto;
                    }

                .register-section {
                    background: url("./images/footer2.jpg") center/cover no-repeat;
                    position: relative;
                    padding: 0px 0 0;
                }

                .register-overlay {
                    padding-bottom: 60px;
                }



                .register-title {
                    color: #a1850d;
                    font-weight: 400;
                    text-align: center;
                    font-size: 38px;
                    font-weight: 300;
                }

                .register-form {
                    display: flex;
                    justify-content: space-between;
                    gap: 30px;
                    margin: 40px auto 40px;
                    width: 80%;
                }

                    .register-form input {
                        flex: 1;
                        background: transparent;
                        border: 1px solid rgba(205, 195, 1, 0.6);
                        padding: 16px 20px;
                        color: #fff;
                        font-size: 14px;
                        outline: none;
                    }

                        .register-form input::placeholder {
                            color: rgba(255, 255, 255, 0.85);
                        }

                .btn-wrap {
                    text-align: center;
                }

                .enquire-btn1 {
                    background: #fff;
                    color: #000;
                    padding: 14px 40px;
                    border: none;
                    font-size: 14px;
                    letter-spacing: 1px;
                    cursor: pointer;
                    transition: 0.3s ease;
                }

                    .enquire-btn1:hover {
                        background: #f6ca0e;
                        color: #000;
                    }

                .footer-ccc {
                    background: #000;
                    text-align: center;
                    padding: 12px 10px;
                    font-size: 13px;
                    letter-spacing: 0.5px;
                    color: #fff;
                }

                .enquire-btn {
                    position: fixed;
                    right: 30px;
                    bottom: 40px;
                    background: linear-gradient(135deg, #0d6efd, #0d6efd);
                    color: #ffffff;
                    padding: 14px 26px;
                    font-weight: 600;
                    text-decoration: none;
                    z-index: 999;
                    animation: enquireBlink 2s infinite;
                }

                /* Blink / Pulse Effect */
                @keyframes enquireBlink {
                    0% {
                        box-shadow: 0 0 0 0 rgba(48, 80, 196, 0.7);
                        transform: scale(1);
                    }

                    50% {
                        box-shadow: 0 0 20px 10px rgba(48, 80, 196, 0.7);
                        transform: scale(1.05);
                    }

                    100% {
                        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
                        transform: scale(1);
                    }
                }
                /* Modal width */
                .enquiry-modal .modal-dialog {
                    max-width: 520px;
                }

                /* Modal card */
                .enquiry-box {
                    border-radius: 18px;
                    padding: 38px 36px 40px;
                    border: none;
                    position: relative;
                    background: #fff;
                }

                /* Close button */
                .enquiry-close {
                    position: absolute;
                    top: 18px;
                    right: 18px;
                    width: 36px;
                    height: 36px;
                    border-radius: 50%;
                    background: #f3f3f3;
                    border: none;
                    font-size: 20px;
                    cursor: pointer;
                }
                /* Make sure close button is clickable on mobile */
                .enquiry-close {
                    z-index: 1056; /* higher than modal body */
                    pointer-events: auto;
                }

                /* Prevent modal body from covering close button */
                .enquiry-modal .modal-content {
                    position: relative;
                }

                /* iOS specific fix */
                .enquiry-modal .modal-body {
                    position: relative;
                    z-index: 1;
                }
                /* Heading */
                .enquiry-heading {
                    text-align: center;
                    font-size: 32px;
                    font-weight: 600;
                    margin-bottom: 6px;
                    color: #222;
                }

                /* Sub heading */
                .enquiry-subheading {
                    text-align: center;
                    font-size: 15px;
                    color: #777;
                    margin-bottom: 32px;
                }

                /* Fields */
                .enquiry-field {
                    margin-bottom: 22px;
                }

                    .enquiry-field label {
                        display: block;
                        font-size: 14px;
                        font-weight: 500;
                        margin-bottom: 8px;
                        color: #222;
                    }

                    .enquiry-field input {
                        width: 100%;
                        padding: 14px 16px;
                        font-size: 14px;
                        border-radius: 6px;
                        border: 1px solid #dcdcdc;
                        outline: none;
                    }

                /* Submit button */
                .enquiry-submit {
                    width: 100%;
                    margin-top: 10px;
                    padding: 16px;
                    background: #9fb61c;
                    color: #fff;
                    font-size: 16px;
                    font-weight: 600;
                    border: none;
                    border-radius: 6px;
                    cursor: pointer;
                }

                    .enquiry-submit:hover {
                        background: #8aa315;
                    }

                /* Mobile */
                @media (max-width: 576px) {
                    .enquiry-box {
                        padding: 28px 22px 30px;
                    }

                    .enquiry-heading {
                        font-size: 26px;
                    }
                }

                /* ===============================
           MOBILE RESPONSIVE FIX
        ================================ */
                @media (max-width: 767px) {

                    .register-section {
                        padding: 60px 0 0;
                    }

                    .register-title {
                        font-size: 26px;
                        line-height: 1.3;
                        padding: 0 15px;
                    }

                    .register-form {
                        flex-direction: column; /* KEY FIX */
                        width: 100%;
                        gap: 16px;
                        padding: 0 15px;
                    }

                        .register-form input {
                            width: 100%;
                            padding: 14px 16px;
                            font-size: 14px;
                        }

                    .btn-wrap {
                        width: 100%;
                    }

                    .enquire-btn1 {
                        width: 100%;
                        padding: 14px;
                        font-size: 14px;
                    }

                    .footer-ccc {
                        font-size: 11px;
                        line-height: 1.4;
                        padding: 10px 12px;
                    }

                    /* Floating Enquire Button */
                    .enquire-btn {
                        right: 15px;
                        bottom: 20px;
                        padding: 12px 18px;
                        font-size: 13px;
                    }
                }

                 /* Banner image CSS */
      

        .footer-links-section {
            background: #ffffff;
        }

        .footer-title {
            font-size: 13px;
            letter-spacing: 1px;
            font-weight: 600;
            margin-bottom: 14px;
            text-transform: uppercase;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            font-size: 14px;
            color: #000;
            text-decoration: none;
        }

            .footer-links a:hover {
                text-decoration: underline;
            }

        .view-details-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            width: 61%;
            padding: 12px 28px;
            border-radius: 30px;
            background-color: #58be07;
            color: #ffffff;
            font-size: 14px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .view-details-btn:hover {
                background: #0d6efd;
                color: #ffffff;
            }
   
          /* ================= BASE ================= */
        .project-specs {
            font-family: "Austin-News-Headline-Light, sans-serif";
            background: #fff;
            padding: 60px 0;
        }

            /* ================= CONTAINER ================= */
            .project-specs .breadcrumb,
            .project-specs .specs-grid {
                max-width: 1300px;
                margin: 0 auto;
                padding: 0 69px;
            }

        /* ================= BREADCRUMB ================= */
        .breadcrumb {
            margin-bottom: 40px;
            font-size: 14px;
            color: #555;
            line-height: 1.6;
        }

            .breadcrumb span {
                margin: 0 6px;
            }

            .breadcrumb strong {
                color: #000;
                font-weight: 300;
            }

        /* ================= GRID ================= */
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3px 70px;
        }

        /* ================= ITEM ================= */
        .spec-item {
            padding-bottom: 14px;
            border-bottom: 1px solid #999;
        }

            .spec-item span {
                font-size: 14px;
                color: #444;
            }

            .spec-item strong {
                display: block;
                margin-top: 8px;
                font-size: 18px;
                font-weight: 300;
                color: #000;
            }

        /* ================= RESPONSIVE ================= */

        /* Laptop */
        @media(max-width:1200px) {

            .project-specs .breadcrumb,
            .project-specs .specs-grid {
                padding: 0 40px;
            }
        }

        /* Tablet */
        @media(max-width:992px) {
            .specs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px 40px;
            }
        }

        /* Mobile */
        @media(max-width:576px) {
            .project-specs {
                padding: 40px 0;
            }

                .project-specs .breadcrumb,
                .project-specs .specs-grid {
                    padding: 0 18px;
                }

            .breadcrumb {
                font-size: 13px;
                margin-bottom: 30px;
            }

            .specs-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .spec-item {
                padding-bottom: 10px;
            }

                .spec-item strong {
                    font-size: 18px;
                }
        }

        .why-invest-section {
            background: #ccc;
            padding: 20px 20px;
        }

        .why-box {
            border: 2px solid #58be07;
            padding: 15px 20px;
            text-align: center;
            color: #000000;
            height: 80%;
        }

            .why-box h5 {
                font-size: 15px;
                margin-bottom: 10px;
                font-weight: 500;
            }

            .why-box p {
                font-size: 12px;
                opacity: 0.9;
            }

        /* Desktop: NO SLIDER FEEL */
        @media (min-width: 992px) {
            .whySwiper .swiper-wrapper {
                display: grid;
                grid-template-columns: repeat(6, 1fr);
                gap: 24px;
                transform: none !important;
            }

            .whySwiper .swiper-slide {
                width: 100% !important;
            }
        }

            /* Promo Banner Wrapper */
.promo-banner {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
}

/* Anchor reset */
.promo-banner a {
  display: block;
  text-decoration: none;
}

/* Common Image Styles */
.promo-banner .banner-img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* Default Visibility */
.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}
/* CTA Text */
.promo-cta {
  margin-top: 12px;
  text-align: center;
}

.promo-cta a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  border-bottom: 2px solid #000;
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.promo-cta a:hover {
  color: #555;
  border-color: #555;
}
/* Mobile View */
@media (max-width: 768px) {
  .desktop-banner {
    display: none !important;
  }

  .mobile-banner {
    display: block !important;
  }
  .promo-cta a {
    font-size: 15px;
  }
}


/* ===== MAP ===== */
.image-container {
  
  overflow: hidden;
  
}

/* ===== CONTENT ===== */
.connectivity-content {
  padding-left: 20px;
}

.location-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.location-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 26px;
  color: #0b5aa5;
  line-height: 1;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {

 

  .connectivity-content {
    padding-left: 0;
    margin-top: 25px;
  }

  .location-title {
    font-size: 20px;
  }

  .location-list li {
    font-size: 15px;
  }
}