* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Nunito Sans','Inter', sans-serif;
}
/*.header-top {
    background: #0f1c2e;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-logo h2 {
    margin: 0;
    font-weight: 700;
    color: white !important;
}

.header-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.header-menu a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

    .header-menu a:hover {
        color: #ffb347;
    }
*/
.bg-light-custom-1 {
    --bs-bg-opacity: 1;
    background-color: rgb(238 238 241) !important;
}

.bg-light-custom-2 {
    --bs-bg-opacity: 1;
    background-color: rgb(248 248 248) !important;
}

.bg-light-custom-3 {
    --bs-bg-opacity: 1;
    background-color: rgb(230 230 233) !important;
}

.bg-light-custom-4 {
    --bs-bg-opacity: 1;
    background-color: rgb(242 242 246) !important;
}

.hero-section .single-hero {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-section {
    position: relative;
    height: 60vh;
}

.owl-carousel,
.owl-stage-outer,
.owl-stage,
.single-hero {
    height: 100%;
}

.hero-overlay-stats-wide {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

    .hero-overlay-stats-wide .project-card {
        text-align: center;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .hero-overlay-stats-wide h2 {
        color: #ff7a00;
        margin: 0;
        font-size: 26px;
        font-weight: bolder;
    }

    .hero-overlay-stats-wide p {
        margin: 0;
        font-size: 14px;
        color: #fff;
    }

.about-project-section {
    margin-top: 20px;
}

.text-background {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 30px;
    border-radius: 10px;
    margin-top: -120px;
}

.pro-border {
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
    border: 2px solid #e6e5e8;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

    .section-title h3 {
        font-size: 2rem;
        font-weight: 700;
        color: #222;
    }

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.stats .project-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 220px;
}

.stats h2 {
    font-size: 2rem;
    color: #ff7a00;
    margin-bottom: 10px;
}

.sticky-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    text-decoration: none;
    font-size: 14px;
}

    .sticky-contact:hover {
        background-color: #2e91fc;
        color: #fff;
    }

.gallery-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2rem;
}

.gallery-column {
    flex: 1;
    min-width: 0;
    /*max-height: 420px;*/
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
}
    /*
.gallery-video {
    padding-bottom: 10px;
}*/

    .gallery-column video,
    .gallery-column .masonry-gallery {
        width: 100%;
        max-height: 350px;
        border-radius: 6px;
        object-fit: cover;
    }

.section-title h3 {
    font-size: 1.55rem;
    margin-bottom: 1rem;
}

/*.swiper-slide {
    background-size: cover;
    background-position: center;
    min-height: 250px;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    color: #fff;
    font-weight: 500;
}*/

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.amenity {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #007bff;
    font-size: 14px;
    cursor: default;
}

    .amenity i {
        display: block;
        font-size: 22px;
        margin-bottom: 8px;
    }

    .amenity.more {
        background: #f3e8ff;
        color: #6c2bd9;
        font-weight: bold;
        cursor: pointer;
    }

.modal {
    display: none; /* Show via JS when needed */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content-amenity {
    background-color: #fff;
    margin: 5% auto;
    width: 50%;
    height: 75%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

.modal-header-fixed {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
}

.modal-body-amenity {
    padding: 10px 15px;
    overflow-y: auto;
    flex-grow: 1;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.modal-category h5 {
    margin-top: 5px;
    font-weight: 600;
}

.modal-category ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    gap: 10px;
}

    .modal-category ul li {
        display: flex;
        align-items: center;
        font-size: 14px;
    }

        .modal-category ul li i {
            margin-right: 8px;
            font-size: 16px;
            color: #444;
        }
/* RERA Section */
.rera {
    background: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
}

    .rera p {
        font-size: 16px;
        color: #555;
    }

/* Key Highlights */
.key-highlights ul {
    list-style-type: disc;
    padding-left: 40px;
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    max-width: 800px;
    margin: auto;
}

/* Layout & Floor Plan */
.floor-box {
    padding: 0px !important;
    height: 90% !important;
    border-radius: 7px !important;
}

.floor-swiper {
    height: 390px !important;
}

.floor-plans {
    background-color: #f9f9f9;
}

.filter-buttons {
    /*display: flex;
    gap: 10px;
    justify-content: flex-start;*/
    text-align: center
}

.filter-btn {
    padding: 8px 18px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
}

    .filter-btn.active {
        background: #000;
        color: #fff;
        border-color: #000;
    }

.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

.floor-card {
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    background-color: #fff;
}

.img-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.price-info {
    margin-top: 8px;
    font-weight: bold;
    font-size: 18px;
    color: orangered;
}

.cta-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
    color: #333;
}

/* Section Utilities */
.container {
    max-width: 1300px;
    margin: auto;
}

.section-title h3 {
    margin-bottom: 10px;
}

.section-title p {
    margin-top: 0;
    color: #666;
}

.card-style {
    flex: 1 1 45%;
    min-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    /*box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #007bff;*/
    height: 450px;
}

.scroll-box {
    overflow-y: auto;
}

.highlight-tags {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #f4f6fa;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #007bff;
    font-size: 13px;
    color: #333;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.highlight-intro {
    font-weight: 500;
    margin-bottom: 10px;
}

.highlight-points {
    padding-left: 20px;
    margin-bottom: 10px;
}

.amenity-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    font-size: 15px;
    color: #444;
}

    .amenity-grid-2col i {
        margin-right: 8px;
        color: #007bff;
    }

.project-overview {
    background-color: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
    font-size: 15px;
}

.overview-item {
    background: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #007bff;
    border-right: 4px solid #007bff;
    border-top: 1px solid #007bff;
    border-bottom: 1px solid #007bff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

    .overview-item:hover {
        transform: translateY(-2px);
    }

.document-downloads .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.document-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.doc-card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 370px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    border-right: 4px solid #007bff;
    border-top: 1px solid #007bff;
    border-bottom: 1px solid #007bff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

    .doc-card i {
        font-size: 36px;
        color: #007bff;
    }

    .doc-card h5 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .doc-card p {
        margin: 2px 0 0;
        font-size: 13px;
        color: #777;
    }

.btn-download {
    margin-left: auto;
    padding: 8px 14px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

    .btn-download:hover {
        background: #0056b3;
    }

.map-landmark-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

/* Map Styling */
.map-preview {
    flex: 1 1 50%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-inner {
    border-radius: 8px;
    padding: 15px;
    min-width: 300px;
    height: 400px;
}
/* Landmark Container */
.landmark-section {
    flex: 1 1 45%;
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
}

/* Tabs */
.landmark-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.tab-btn {
    border: none;
    background-color: #f1f3f6;
    color: #333;
    padding: 10px 14px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #007bff;
}

    .tab-btn i {
        font-size: 14px;
    }

    .tab-btn.active,
    .tab-btn:hover {
        background-color: #007bff;
        color: #fff;
    }

/* Landmark Content */
.landmark-box {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

    .landmark-box.active {
        display: block;
    }

    .landmark-box h5 {
        margin-bottom: 15px;
        color: #333;
        border-left: 4px solid #007bff;
        padding-left: 10px;
    }

.landmark-item {
    display: flex;
    justify-content: space-between;
    background-color: #f9fafb;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 3px solid #007bff;
    border-right: 3px solid #007bff;
    border-top: 1px solid #007bff;
    border-bottom: 1px solid #007bff;
    font-size: 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

    .landmark-item i {
        color: #007bff;
        margin-left: 6px;
    }

.construction-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.construction-box {
    flex: 1;
    min-width: 300px;
    max-height: 400px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

    .construction-box h5 {
        margin-bottom: 10px;
        font-size: 22px;
        color: #ff7a00;
        border-bottom: 1px solid #ddd;
        padding-bottom: 5px;
    }

.scroll-box {
    overflow-y: auto;
    padding-right: 10px;
    flex: 1;
}

    .scroll-box p,
    .scroll-box li {
        font-size: 15px;
        color: #444;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .scroll-box ul {
        padding-left: 20px;
    }

.about-wrapper {
    display: flex;
    justify-content: center;
}

.about-text-only {
    max-width: 100%;
    text-align: left;
}

    .about-text-only h4 {
        font-size: 20px;
        color: #007bff;
        margin-bottom: 15px;
    }

    .about-text-only p {
        font-size: 16px;
        color: #444;
        line-height: 1.7;
        margin-bottom: 20px;
    }

.project-highlights {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
}

    .project-highlights li {
        margin-bottom: 8px;
    }

.about-text-only blockquote {
    font-style: italic;
    background: #f1f3f5;
    border-left: 4px solid #007bff;
    padding: 12px 16px;
    border-radius: 6px;
    color: #555;
}

.about-builder-section {
    background-color: #f9f9f9;
}

.builder-wrapper {
}

.builder-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    color: #333;
}

    .builder-content h4 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #007bff;
    }

    .builder-content .highlight {
        color: #ff7a00;
    }

.project-ul ul {
    padding-left: 20px;
    margin: 20px 0;
    list-style: disc;
}

    .project-ul ul li {
        margin-bottom: 8px;
    }

.project-enquiry {
    width: 600px;
}

.modal-content-enquiry {
    background-color: #fff;
    margin: 5% auto;
    width: 90% !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

.model-header-custom {
    padding: 10px 18px 10px 5px !important;
}

.model-close-custom {
    position: absolute;
    margin-top: -10px;
    margin-left: -4px;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .section-title h3 {
        font-size: 1.40rem;
    }

    .gallery-wrapper {
        flex-direction: column;
    }

    .card-style {
        height: auto;
    }
}
