body{font-family:Poppins,sans-serif;background:#f4f4f4}
/*body {
    border: 5px solid red !important;
}*/

.floorplan-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.floorplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.floorplan-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    transition: transform .3s;
}

.floorplan-item:hover {
    transform: translateY(-5px);
}

.floorplan-item img {
    width: 100%;
    filter: blur(5px);
    transition: filter 0.3s ease;
    cursor: pointer;
}

/* When blur is removed */
.floorplan-item img.unblur {
    filter: none;
}

.floorplan-item h4 {
    padding: 12px;
}

/* MODALS */
.fp-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.fp-modal-content {
    background: #fff;
    padding: 25px;
    max-width: 420px;
    width: 90%;
    border-radius: 10px;
    position: relative;
}

.fp-modal-content.large {
    max-width: 90%;
}

.fp-modal-content img {
    width: 100%;
}

.fp-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* ================= BLACK SITE HEADER ================= */

.site-header {
    width: 100%;
    background: #000000; /* Black header */
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

/* Content alignment */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE */
.header-left .site-title {
    margin: 0;
    font-size: 28px;
    color: #ffffff; /* White title */
    letter-spacing: 1px;
}

.header-left .site-tagline {
    margin: 4px 0 0;
    font-size: 14px;
    color: #dddddd; /* Soft white */
}

/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Enquire Button */
.enquiry-btn {
    padding: 12px 26px;
    background: linear-gradient(135deg, #d4af37, #b8962e); /* Gold luxury */
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-btn:hover {
    background: linear-gradient(135deg, #e6c65c, #c9a236);
    transform: translateY(-1px);
}

/* Call Button */
.call-btn {
    width: 48px;
    height: 48px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

.call-btn:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-right {
        margin-top: 10px;
    }
}
/* Sticky Header Effect */
.site-header {
    position: relative;
    transition: all 0.3s ease;
}

.site-header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Prevent content jump */
body {
    padding-top: 0px;
}

/* ICON ANIMATION INITIAL STATE */
.animate-icon {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.6s ease;
}

/* When visible */
.animate-icon.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}


.site-header{background:#111;color:#fff;padding:20px;text-align:center}
.main-layout{display:flex;gap:20px;padding:20px}
.slider img{width:100%;display:none;border-radius:15px}
.slider img.active{display:block}
.contact-box{background:#fff;padding:20px;border-radius:15px;box-shadow:0 10px 30px rgba(0,0,0,.2)}
.lead-form input,.lead-form textarea{width:100%;margin-bottom:5px;padding:5px}
.lead-form button{background:#25d366;color:#fff;padding:12px;width:100%;border:none}
/* Floating Call & WhatsApp */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.call-float,
.whatsapp-float {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}

.call-float {
    background: #0b5ed7;
}

.whatsapp-float {
    background: #25d366;
}

.call-float:hover,
.whatsapp-float:hover {
    transform: scale(1.1);
}

        .floating-contact {
            position: fixed;
            right: 20px;
            bottom: 30px;
            z-index: 999999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .floating-contact a {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: #fff;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(0,0,0,.35);
        }

        .call-btn {
            background: #0b5ed7;
        }

        .wa-btn {
            background: #25d366;
        }

        .floating-contact a:hover {
            transform: scale(1.1);
        }
    
    
/* ===============================
   FOOTER – CENTERED CONTENT
================================ */

.site-footer {
    background: #000;
    color: #fff;
    padding: 20px 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Copyright text */
.site-footer p {
    margin: 0;
    font-size: 14px;
    opacity: 0.85;
}

/* Social icons container */
.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Follow Us text */
.footer-social .follow-text {
    font-size: 14px;
    font-weight: 500;
    margin-right: 6px;
    opacity: 0.85;
}

/* Social icon base */
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Instagram */
.social-icon.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

/* YouTube */
.social-icon.youtube {
    background: #ff0000;
}

/* WhatsApp */
.social-icon.whatsapp {
    background: #25d366;
}

/* Hover animation */
.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255,255,255,0.25);
}

/* ===============================
   MOBILE FRIENDLY
================================ */
@media (max-width: 600px) {
    .footer-social {
        gap: 10px;
    }
}


/* PDF DOwnoad for brouchure and masterplan **/

/* ===============================
   PDF POPUP OVERLAY
=============================== */
.pdf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PDF Box */
.pdf-box {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 85vh;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* Iframe PDF */
.pdf-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Close Button */
.pdf-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    background: rgba(0,0,0,0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pdf-close:hover {
    background: #000;
}

/* ===============================
   PDF THUMBNAILS (BROCHURE / PLAN)
=============================== */
.pdf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.pdf-gate {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    transition: transform .3s ease, box-shadow .3s ease;
}

.pdf-gate:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

/* PDF Thumbnail Image */
.pdf-gate img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: blur(3px);
    transition: filter .3s ease;
}

/* Unlock on hover */
.pdf-gate:hover img {
    filter: blur(0);
}

/* Overlay Label */
.pdf-gate::after {
    content: "🔒 View / Download";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

/* Title under PDF */
.pdf-title {
    text-align: center;
    padding: 12px;
    font-weight: 600;
    background: #fff;
}


    
/* Amenities Section */
.amenities-section {
    padding: 70px 0;
    background: #f5f7fa;
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    color: #111;
}

/* 2x2 Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Amenity Card */
.amenities-block {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.amenities-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.amenities-block h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #222;
}

.amenities-block h3 i {
    color: #2c7be5;
    margin-right: 10px;
}

/* List */
.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #eee;
}

.amenities-list li i {
    color: #2c7be5;
    min-width: 18px;
}

.amenities-list li:last-child {
    border-bottom: none;
}

/* Mobile */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .amenities-section .amenities-grid {
        grid-template-columns: 1fr !important;
    }
}

/* CIRCULAR ICON STYLE */
.amenities-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 15px;
    color: #333;
}

/* Icon Circle */
.icon-circle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c7be5, #00c6ff);
    box-shadow: 0 6px 15px rgba(44,123,229,0.35);
}

/* Icon inside */
.icon-circle i {
    color: #fff;
    font-size: 16px;
}

/* Hover Effect */
.amenities-block:hover .icon-circle {
    transform: scale(1.08);
    transition: 0.3s ease;
}

/* Section based colors */
.amenities-block:nth-child(1) .icon-circle {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

.amenities-block:nth-child(2) .icon-circle {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.amenities-block:nth-child(3) .icon-circle {
    background: linear-gradient(135deg, #e53935, #e35d5b);
}

.amenities-block:nth-child(4) .icon-circle {
    background: linear-gradient(135deg, #7f00ff, #e100ff);
}
/* LOCATION SECTION */
.location-section {
    padding: 80px 0;
    background: #f8f9fb;
}

/* Grid */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Map */
.location-map {
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Info */
.location-info {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.location-info h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.location-info ul {
    list-style: none;
    padding: 0;
}

.location-info li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    padding: 10px 0;
}

.location-info li i {
    color: #2c7be5;
    font-size: 18px;
}


/* CONTACT BOX */
.contact-box {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    overflow: hidden;
}

.contact-box-content {
    padding: 35px;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.contact-title {
    font-size: 26px;
    margin-bottom: 15px;
    color: #111;
}

.contact-intro {
    font-size: 16px;
    color: #555;
}

.sub-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
}

.divider {
    height: 1px;
    background: #eaeaea;
    margin: 25px 0;
}

/* Feature list with colorful icons */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
}

/* Icon circle */
.icon-circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

/* Different colors for each icon (cycling) */
.feature-list li:nth-child(odd) .icon-circle {
    background: #2c7be5;
}
.feature-list li:nth-child(even) .icon-circle {
    background: #00c6ff;
}
.feature-list li:nth-child(3n) .icon-circle {
    background: #f7971e;
}
.feature-list li:nth-child(4n) .icon-circle {
    background: #e53935;
}
.feature-list li:nth-child(5n) .icon-circle {
    background: #7f00ff;
}

/* Apartment sizes */
.size-list {
    list-style: none;
    padding: 0;
}

.size-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.size-list span {
    color: #555;
}

/* RERA box */
.rera-box {
    background: #f7f9fc;
    padding: 18px;
    border-radius: 12px;
    border-left: 4px solid #2c7be5;
}

.rera-box p {
    margin: 6px 0;
}


/* Mobile */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 300px;
    }
}


.amenities-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* FORCE 2x2 AMENITIES GRID */
.amenities-section .amenities-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px !important;
    max-width: 1200px;
    margin: auto;
}


/***pdf css**/
/* ===============================
   DOWNLOAD / PDF THUMBNAILS
=============================== */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.download-item {
    cursor: pointer;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: transform .3s ease, box-shadow .3s ease;
}

.download-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.download-item h4 {
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
}

.download-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.2);
}

/* PDF / IMAGE POPUP */
.fp-viewer {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-inner {
    background: #fff;
    max-width: 90%;
    max-height: 90%;
    padding: 15px;
    border-radius: 12px;
    position: relative;
}

.fp-inner img,
.fp-inner iframe {
    width: 100%;
    height: 80vh;
    border-radius: 8px;
}

.fp-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #000;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
}
