body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

:root {
    --primary-red: #C5463B;
    --dark-red: #8A2621;
    --purple: #3F1C65;
    --light-bg: #F7E8E8;
}

.swiper-slide img {
    height: 1000px;
    width: 100%;
    background-size: cover;
}

.hero {
    padding: 120px 0 100px;
    background: var(--light-bg);
    text-align: center;
}

.hero h1 {
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero p {
    color: #555;
    font-size: 18px;
    margin-top: 10px;
}

.section-title {
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 20px;
}

.amenity-box {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.amenity-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.btn-theme {
    background: var(--primary-red);
    color: white;
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 6px;
}

.btn-theme:hover {
    background: var(--dark-red);
    color: #fff;
}

footer {
    background: rgb(224, 220, 220);
    color: black;
    padding: 40px 0;
}

.video-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cf0b26;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.read-more {
    font-weight: 600;
    text-decoration: none;
    color: #cf0b26;
    font-size: 18px;
}

.read-more:hover {
    color: #000;
}

.slider-img {
    height: 750px;
    object-fit: cover;
    filter: brightness(65%);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: rgb(204 46 68);
}

.nav-link {

    color: rgb(63 28 101);
    font-weight: 600;
}

.carousel-caption {
    bottom: 4%;
    z-index: 20;
}

.carousel-caption h1 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0px 3px 20px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 20px;
    margin-top: 10px;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
}

img.logo {
    height: 80px;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 40px;
}

.social-icons .social {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}


.social.fb {
    background: #1877f2;
}

.social.ig {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.social.tw {
    background: #1a6c9f;
}

.social.yt {
    background: #33b4ff;
}
.social.yr {
    background: #ff0c0c;
}
.social:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.footer-dark {
    background: #0c1323;
    color: #c7cbe0;
}

.footer-menu a {
    color: #563777;
    font-weight: 500;
    text-decoration: none;
}

.footer-menu a:hover {
    color: #423939;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: #2e2d2d;
    font-size: 18px;
    margin: 0 6px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.footer-line {
    border-color: rgb(0 0 0 / 39%);
    margin: 25px 0;
}

/*img.logo-footer {*/
/*    width: 12%;*/
/*    height: 1%;*/
/*}*/

.text-muted {
    color: rgb(0 0 0 / 75%) !important;
}

.faq-box {
    background: #f8f8f8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-box:hover {
    background: #f2f2f2;
}

.faq-box i {
    transition: 0.3s;
}

.faq-box.collapsed i {
    transform: rotate(0deg);
}

.faq-box:not(.collapsed) i {
    transform: rotate(180deg);
}

.amenities-section {
    padding: 60px 20px;
    background-size: cover;
    text-align: center;
    font-family: "Poppins", sans-serif;
    background: #f1f1f1;
}
.amenities-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.amenity-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 18px;
    box-shadow: 8px 2px 18px 0px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    cursor: pointer;
    border: 1px solid #7a1b29;
}

.amenity-box:hover {
    transform: translateY(-5px);
    border-color: #00000063;
    background: #b72e67db;
    color: white;
}

.amenity-box .icon img {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
}

.amenity-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.amenity-box p {
    font-size: 14px;
    color: #343232;
    line-height: 1.6;
}

.amenity-box .icon i {
    font-size: 45px;
    color: #000;
    display: inline-block;
}


.amenity-box:hover {
    transform: translateY(-5px);
    border-color: #00000063;
    background: #7a1b29;
    color: #fff !important;
}
.amenity-box:hover .icon i {
    color: #fff !important;
}

.amenity-box:hover h4,
.amenity-box:hover p {
    color: #fff !important;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

.gallery-wrapper {
    width: 100%;
    text-align: center;
    padding: 40px 0;
    background: #00000014;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.categories button {
    padding: 10px 22px;
    border-radius: 30px;
    border: 2px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.categories button.active, .categories button:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #0b0d39;
}

.view-more {
    border-color: #000;
}

.coverflow {
    display: flex;
     flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: -100px;
    position: relative;
}

.coverflow img {
    width: 270px;
    height: 380px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    opacity: 0.9;
    transform: scale(0.8);
}

.coverflow img.active {
    transform: scale(1);
    opacity: 1;
}

.nav-buttons {
    margin-top: 30px;
}

.nav-buttons button {
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    background: #fff;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.nav-buttons button:hover {
    background: #000;
    color: #fff;
}

.video-hero {
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.tag {
    font-size: 14px;
    color: #6c63ff;
    font-weight: 500;
}

.video-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
    line-height: 1.3;
}

.highlight {
    color: #7a1b29;
}

.desc {
    color: #666;
    font-size: 15px;
    max-width: 460px;
    margin-bottom: 25px;
}

.btn-group {
    display: flex;
    gap: 15px;
}

.primary-btn {
    background: #6c63ff;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
}

.link-btn {
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.link-btn:hover {
    text-decoration: underline;
}


.video-img {
    width: 100%;
    height: auto;
    display: block;
}

.tag {
    font-size: 19px;
    color: #7a1b29;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: #cc2e44;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sub-heading {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.bullet-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.map-right {
    background: #0a3d62;
    color: white;
    padding: 25px;
    border-radius: 10px;
}

.map-right h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-item i {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
}

.map-embed iframe {
    border-radius: 10px;
}

@media (max-width: 768px) {
    .map-card {
        flex-direction: column;
    }

    .map-right {
        margin-top: 20px;
    }
    .navbar-expand-lg .navbar-nav {
    flex-direction: column;
    
}
    
    section#plots {
    padding: 25px;
}
h2.fw-bold.text-uppercase {
    margin-top: 20px;
}
section.video-hero.container {
    padding: 25px;
}
.video-hero h1 {
    font-size: 39px;
   
}
}

.collage-img-1 {
    width: 100%;
    border-radius: 15px;
    height: 500px;
}

.collage-img-2 {
    width: 55%;
    position: absolute;
    bottom: -20px;
    right: -20px;
    border-radius: 15px;
    border: 4px solid #fff;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.styled-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
}

.styled-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #7A1B29;
    font-weight: bold;
}

.empty-box {
    visibility: hidden;
}

.pricing-section {
    position: relative;
}

.pricing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/pexels-magda-ehlers-pexels-32004565.jpg');
    background-size: contain;
    filter: brightness(0.4);
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}

.pricing-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -2px 6px 15px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #00000047;
}

.pricing-table th {
    background: #7a1b29eb;
    color: #fff;
    font-size: 18px;
    padding: 7px;
}

.pricing-table td {
    padding: 15px;
    font-weight: 500;
}

.pricing-btn {
    background: #7A1B29;
    color: #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s ease;
}

.pricing-btn:hover {
    background: #5e1420;
    color: #fff;
}


.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-weight: 500;
}

.custom-list li::before {
    content: "✔";
    color: #7A1B29;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.map-box {
    border-radius: 12px;
}
.plot-section {
    background: #fff;
}

.plot-section img {
    border-radius: 15px;
}
/* section.faq-section.py-5 {
    border-bottom: 2px solid #7A1B29;
} */

.cta-green-section {
    position: relative;
    background-image: url('../images/bird-s-eye-view-shanghai.jpg'); /* Replace with your HD lush green plot image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.cta-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 700px;
}
.cta-content h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 55px;
}
.cta-content p {
    font-size: 15px;
    margin-bottom: 45px;
    line-height: 25px;
}

.cta-btn {
    background: #7A1B29;
    padding: 14px 35px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}
ul.feature-list {
    list-style: none;
    margin-left: 0px;
    padding-left: 4px;
    line-height: 42px;
}
.cta-btn:hover {
    background: #56151f;
}
.location-section .tag {
    background: #7A1B29;
    color: #fff;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.custom-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.custom-list li::before {
    content: "✔";
    color: #7A1B29;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


@media (max-width: 767px) {
    #top-fixed-bar .call {
        display: block;
        padding-top: 10px;
    }
}

#top-fixed-bar .button-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    height: 62px !important;
    line-height: 22px !important;
    text-align: center;
}

#top-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #c73142;
    z-index: 999999;
    height: 63px !important;
    padding-bottom: env(safe-area-inset-bottom);
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}


/*#top-fixed-bar .button-link {*/
/*    color: #fff;*/
/*    text-decoration: none;*/
/*    font-weight: 600;*/
/*    font-size: 15px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 6px;*/
/*    padding: 8px 14px;*/
/*    border-radius: 5px;*/
/*    transition: 0.2s ease-in-out;*/
/*}*/


#top-fixed-bar .call {
    border-right: 1px solid rgba(255,255,255,0.3);
    padding-right: 18px;
}

#top-fixed-bar i {
    font-size: 16px;
}


/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup Box */
.popup-box {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 420px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.close-popup {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 28px;
    cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
button.btn.btn-primary.w-100 {
    background: #c73142;
    border-color: #000000;
}

footer.py-5.footerr {
    padding-bottom: 100px !important;
}

.bubbles {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 9999;
    text-align: center;
}

.bubbles a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Call Button */
.bubbles .calls {
    background: #7A1B29; /* you can change color */
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.bubbles .calls:hover {
    transform: scale(1.1);
}

/* WhatsApp Button */
.bubbles .whsts {
    background: #25D366;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.bubbles .whsts:hover {
    transform: scale(1.1);
}

/* Mobile Adjust */
@media (max-width: 600px) {
    .bubbles {
        right: 15px;
        bottom: 70px;
    }
}
