body {
    margin: 0;
    padding: 0;
}
/* Floating Button Container */
.floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

@media (max-width: 768px) {
    .justified-mobile {
        text-align: justify;
        text-justify: inter-word;
    }
}

@media (max-width: 768px) {
    .card-custom h2 {
        font-size: 20px;
    }

    .card-custom p {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .feature-icon {
        font-size: 12px !important;
    }

    .tag {
        font-size: 12px !important;
    }

    .interest-text {
        font-size: 11px !important;
    }
}
/* Floating Buttons Hidden Initially */
.floating-menu .menu-item {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    background: #d7a12e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

/* Show Menu Items When Active */
.floating-menu.active .menu-item {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


/* Center the modal on larger screens */
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
    }
}

/* Floating Icon Button (+) */
.floating-btn {
    width: 60px;
    height: 60px;
    background: #e6ac2f; /* Red */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

/* Rotate Plus Icon When Active */
.floating-menu.active .floating-btn {
    transform: rotate(45deg);
}

/* Icon Hover Effect */
.menu-item:hover {
    background: #d7a12e;
}

/* Different Colors for Each Icon */
.menu-item.call {
    background: #28a745;
}
/* Green for Call */
.menu-item.whatsapp {
    background: #25D366;
}
/* WhatsApp Green */
.menu-item.form {
    background: #ffc107;
}
/* Yellow for Form */

/* Hover Effects */
.menu-item.call:hover {
    background: #1e7e34;
}

.menu-item.whatsapp:hover {
    background: #128C7E;
}

.menu-item.form:hover {
    background: #d39e00;
}

.floor-plans {
    text-align: center;
    padding: 50px 20px;
}

    .floor-plans h2 {
        font-size: 28px;
        font-weight: bold;
        color: #222;
        margin-bottom: 30px;
    }

.schedule-visit.slide-from-right {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 9999;
}

.schedule-visit .click-me {
    align-items: center;
    background: #a80404;
    color: white;
    border: 1px solid #27262e;
    border-radius: 20px 20px 0 0;
    cursor: pointer;
    display: flex;
    height: 48px;
    justify-content: center;
    position: absolute;
    right: -71px;
    transform: rotate(-90deg);
    transition: all .8s cubic-bezier(.45,.05,.55,.95);
    width: 186px;
}

.plan-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

    .plan-card:hover {
        transform: translateY(-5px);
    }

    .plan-card img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 10px;
    }

.price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.status {
    font-size: 14px;
    color: #777;
}

.location-advantages-img {
    position: relative;
    z-index: 9;
    box-shadow: 0 0 3px #979797;
}

.location-advantages-section ul {
    padding-left: 16px;
}

    .location-advantages-section ul li {
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px dotted #000;
    }

.btn-request {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff8600ed;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

    .btn-request i {
        margin-left: 5px;
    }

.eye-icon {
    font-size: 20px;
    color: #d7a12e;
    cursor: pointer;
    margin-top: 10px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.sticky {
    position: sticky !important;
    top: 0;
    background: rgba(0, 0, 0, 0.8); /* Slightly darker when scrolling */
}

.header-top img {
    height: 40px;
}

@media (max-width: 767px) {
    .links-container {
        display: none !important;
    }
}

.navbar {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    gap: 20px;
}

.navbar a {
    color: white;
    font-weight: 500;
}

.header-icons {
    display: flex;
    gap: 15px;
}

    .header-icons i {
        color: white;
        font-size: 20px;
        cursor: pointer;
    }

.menu-divider {
    height: 3px;
    background: white;
    width: 80%;
    position: absolute;
    top: 60px;
    z-index: 9;
}

.map-section {
    background-color: #f8f9fa; /* Light grey background */
    padding: 50px 0;
}

.map-container {
    width: 100%;
    height: 400px; /* Default height for desktops */
}
/* Adjust height for smaller screens */
@media (max-width: 768px) {
    .map-container {
        height: 250px; /* Smaller height for mobile */
    }
}

.accordion-button {
    font-weight: 600; /* Make FAQ questions bold */
    font-size: 1.1rem; /* Increase font size slightly */
}

.slider-container {
    position: relative;
}

.overlay {
    position: absolute;
    top: 40%;
    left: 2%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 15px;
    max-width: 684px;
    /* width: 350px; */
}

.floor-plan-info {
    box-shadow: 0 0 5px #312c2c;
}

.floor-plan-img img {
    filter: blur(3px);
}

.floor-plan-info p {
    margin-bottom: 0;
    background: linear-gradient(45deg, #d7a12e, #d7a12e69, #d7a12e) right;
    padding: 5px;
    font-weight: 600;
}

.contact-form {
    position: absolute;
    top: 57%;
    right: 5%;
    transform: translateY(-50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 320px;
}

.carousel-item img {
    position: relative;
    height: 95vh;
    object-fit: cover;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%; /* Adjust this to control how much of the top is darkened */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 768px) {
    .overlay {
        top: 20%;
        width: 90%;
        padding: 5px;
    }

    .carousel-item img {
        height: 75vh;
        object-fit: cover;
    }

    .contact-form {
        display: none;
    }

    .navbar {
        display: none;
    }
}
/* Hero Section */
.hero-section {
    background: #fff;
    padding: 30px 0px;
}



.highlights {
    font-weight: 600;
    font-size: 18px;
    color: #000;
    margin-top: 25px;
}

.container-box {
    padding: 10px 100px;
}

@media screen and (min-width: 240px) and (max-width: 1024px) {
    .container-box {
        padding: 2em 1em;
    }
}

@media screen and (min-width: 240px) and (max-width: 1024px) {
    .pfacts .plogo {
        margin: 0 auto 20px;
        max-height: 50px;
        display: block;
    }
}

@media screen and (min-width: 240px) and (max-width: 1024px) {
    .facts li {
        width: 50% !important;
        font-size: 2em;
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 240px) and (max-width: 1024px) {
    .facts li span {
        font-size: 14px;
    }
}

.bg-facts {
    background: url(images/bg-facts.jpg);
    background-size: cover;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, .5);
}

.pfacts {
    padding: 3em 2em;
    background: rgba(0, 0, 0, .85);
}

    .pfacts .plogo {
        margin: auto;
        max-height: 75px;
        display: block;
    }

.facts {
    display: block;
    font-size: 1em;
    list-style: none;
}

    .facts li {
        width: 25%;
        list-style: none;
        text-align: center;
        position: relative;
        display: block;
        float: left;
        font-family: 'DM Serif Display', serif !important;
        font-size: 3em;
        line-height: 1;
        color: #fff
    }

        .facts li span {
            display: inline-block;
            font-size: 16px;
            padding: 10px 0;
            margin-top: 10px;
            color: #aaa;
            border-top: 2px solid #005aab
        }

        .facts li:after {
            position: absolute;
            content: "";
            width: 1px;
            top: 20px;
            bottom: 20px;
            right: 1px;
            background: #888
        }

        .facts li:last-child:after {
            display: none;
        }

.values-section {
    text-align: center;
    padding: 50px 20px;
}

.values-heading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.line {
    width: 20%;
    height: 1px;
    background-color: #ccc;
    margin: 0 15px;
}

.values-heading h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    color: #555;
    margin: 0;
}

.values-section h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    color: #555;
}

.values-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #222222db;
    margin-top: 10px;
    margin-bottom: 30px;
}

.value-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .value-box img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out;
    }

    .value-box:hover img {
        transform: scale(1.05);
    }

.footer {
    position: relative;
    color: white;
    padding: 0px 0;
}

    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('images/bg-facts.jpg') no-repeat center center;
        background-size: cover;
        opacity: 0.5; /* Adjust opacity here (0.1 to 1) */
        z-index: -1;
    }

.footer-overlay {
    background: rgb(76 74 63 / 70%); /* Light overlay */
    padding: 30px 0;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

    .footer a:hover {
        text-decoration: underline;
    }

.footer .social-icons i {
    font-size: 24px;
    margin: 0 10px;
    transition: 0.3s;
    color: black;
}

    .footer .social-icons i:hover {
        color: #f4c842;
    }

.footer hr {
    border-color: rgba(0, 0, 0, 0.3);
}

.footer h5 {
    font-weight: 600;
    color: #ffee27;
}


.social-icons a {
    font-size: 22px;
    margin: 0 8px;
    color: #555;
    transition: 0.3s;
}

    .social-icons a:hover {
        color: #d7a12e;
    }

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    margin: 5px 0;
}

.footer hr {
    border-top: 1px solid #ccc; /* Light grey horizontal line */
    margin: 15px 0;
}

.disclaimer {
    font-size: 14px;
    color: #dcd5d5;
}
/* Overlay section for header and links */
.overlayh {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background: transparent;
    color: white;
}

.header-hr {
    width: 96%;
    margin: 0 auto;
    border: none;
    border-bottom: 2px solid white;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.icons {
    display: flex;
    gap: 15px;
    cursor: pointer;
}

    .icons span {
        color: white;
        font-size: 20px;
    }

.menu-icon {
    font-size: 20px;
}

.menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #222;
    color: white;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1100;
}

    .menu a {
        display: block;
        color: white;
        padding: 10px 0;
        text-decoration: none;
    }

        .menu a:hover {
            background: #444;
        }

.close-btn {
    cursor: pointer;
    font-size: 20px;
    display: block;
    text-align: right;
    margin-bottom: 10px;
    color: white;
}

/* Scrollable Links Row aligned to the right */
.links-container {
    display: flex;
    justify-content: flex-end;
    background: transparent;
    padding: 10px;
}

    .links-container.sticky-visible {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(20, 20, 20, 0.9); /* Light dark background */
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

.links-row {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .links-row::-webkit-scrollbar {
        display: none;
    }

    .links-row a {
        color: white;
        text-decoration: none;
        padding: 10px 15px;
        font-size: 17px;
        font-weight: 500;
    }

        .links-row a:hover {
            background: #444;
            border-radius: 5px;
        }

.icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

    .icon-circle span {
        color: white;
        font-size: 20px;
    }

.header-sticky {
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
}

.links-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.card-custom {
    color: white;
    border-radius: 15px;
    padding: 20px;
    position: relative;
}

.tag {
    background-color: black;
    border-radius: 20px;
    padding: 5px 15px;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
}

.feature-icon {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
}

.btn-custom {
    background-color: white;
    color: black;
    border-radius: 10px;
    font-weight: bold;
}

.interest-text {
    color: #ff944d;
    font-weight: bold;
    margin-top: 15px;
    font-size: 13px;
    margin-bottom: 0px;
}

.icon-container {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    padding: 10px;
}

    .icon-container .feature-icon i {
        font-size: 18px;
    }

.buttons {
    margin-top: 15px;
}

.overview-box {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 2px;
  
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}

    .info-item i {
        font-size: 1.2rem;
        color: black;
        margin-top: 3px;
        border: 1px dashed;
        padding: 1px;
    }

.feature-span {
    font-size: 16px;
    color: #000000ba;
}

.feature-box {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.41);
}

    .feature-box ul {
        padding-left: 1.2rem;
    }

        .feature-box ul li {
            margin-bottom: 10px;
        }

.btn-outline-custom {
    border: 2px solid #d7a12e;
    color: #d7a12e;
    background: #fff;
}

    .btn-outline-custom:hover {
        background: #d7a12e;
        color: #fff;
    }

.text-note {
    font-size: 0.85rem;
    color: #f59e0b;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 6px;
}

    .swiper-slide img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

.slide-caption {
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: white;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.faq-heading {
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.faq-table th {
    background-color: #222;
    color: #fff;
    text-align: center;
}

.faq-table td {
    vertical-align: middle;
    text-align: center;
}

.btn-view {
    background-color: #e74c3c;
    color: #fff;
    border: none;
}

    .btn-view:hover {
        background-color: #c0392b;
    }

@media (max-width: 768px) {
    .faq-table thead {
        display: none;
    }

    .faq-table, .faq-table tbody, .faq-table tr, .faq-table td {
        display: block;
        width: 100%;
    }

        .faq-table tr {
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            padding: 10px;
        }

        .faq-table td {
            text-align: left;
            padding-left: 50%;
            position: relative;
        }

            .faq-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 10px;
                top: 10px;
                font-weight: bold;
            }
}

.text-theme {
    color: #d7a12e
}

.iti {
    width: 100%;
}


input[type="tel"] {
    max-width: 100%;
}

.iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/img/flags.png");
}

input.form-control, textarea.form-control {
    border-radius: 5px !important;
    border: 1px solid #ced4da;
    padding: 12px;
    font-size: 1rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    input.form-control:focus,
    textarea.form-control:focus {
        border-color: #e6ac2f;
        box-shadow: 0 0 0 4px rgba(230, 172, 47, 0.25);
        outline: none;
    }

.property-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.property-image {
    position: relative;
}

    .property-image img {
        width: 100%;
        height: auto;
    }

.badge-callback {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffc107;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 5px;
    color: black;
}

.badge-launch {
    background-color: #e6f0ff;
    color: #d7a12e;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.property-content {
    padding: 15px;
}

.project-title {
    font-weight: 600;
    font-size: 18px;
    margin-right: 10px;
}

.property-location {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
}

    .property-location i {
        color: #dc3545;
        margin-right: 5px;
    }

.property-info {
    font-size: 14px;
    color: #555;
}

.property-buttons .btn {
    font-size: 14px;
    padding: 6px 14px;
}

.interest-note {
    font-size: 13px;
    color: #e74c3c;
    background-color: #fff3f3;
    padding: 10px;
    border-top: 1px solid #eee;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media (max-width: 576px) {
    .project-title {
        font-size: 16px;
    }

    .property-location {
        font-size: 13px;
    }

    .property-info {
        font-size: 13px;
    }

    .property-content {
        padding: 12px;
    }

    .property-buttons .btn {
        font-size: 13px;
        padding: 5px 10px;
    }

    .interest-note {
        font-size: 12px;
    }

    .badge-launch {
        font-size: 11px;
        padding: 4px 4px;
    }

    .text-mob {
        font-size: 12px !important;
        padding-top: 3px;
    }
}

.video-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}



.img-bg {
    height: 100vh;
    object-fit: cover;
}
