/* At the top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Lora:wght@400;700&display=swap');

/* Set base font styles */
body {
    /*font-family: 'Noto Sans', sans-serif; /* This is a clean and modern sans-serif font */
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
}

/* Headings style */
h1, h2, h3, h4, h5, h6 {
    /*font-family: 'Poppins', sans-serif; /* This is a more decorative serif font */
    margin-top: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
}

strong{
    font-family: 'Manrope', sans-serif;
    font-weight: 100;
}
/* Nav bar style */
.navbar a {
    font-family: 'Manrope', sans-serif;
     /* font-weight: bolder;A little bolder for better legibility */
}

/* Button style */
.button, .btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600; /* Bold for call-to-action buttons */
    text-transform: uppercase; /* Optional: for a more impactful button text */
}

/* Content sections */
.property-section, .brochure-section {
   /* font-family: 'Poppins', sans-serif;*/
   /*font-family: 'Playfair Display', serif;
   font-size: large;*/
   font-family: 'Manrope', sans-serif;
   font-size: large;

}

/* Footer style */
footer {
    font-family: 'Lora', serif;
}

body {
    font-size: 16px; /* Default size */
}

h1 {
    font-size: 2.5rem; /* Larger for headings */
}

@media (max-width: 768px) {
    body {
        font-size: 14px; /* Slightly smaller on mobile devices */
    }

    h1 {
        font-size: 2rem; /* Adjust heading size for smaller screens */
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    line-height: 1.6;
}


.navbar a.contact-btn {
    padding: 8px 16px;
    background-color: #c3a05c; /* Metallic Gold for the 'Contact Us' button */
    border-radius: 5px; /* Rounded corners for the button */
    color: white; /* Text color */
    margin-bottom: 20px;
    margin-left: 25px;
    margin-top: auto;
    margin-bottom: auto;
}

.navbar a.contact-btn:hover {
    background-color: #B7950B; /* Darker shade for hover state */
}

/*.navbar {
    display: flex;
    justify-content: space-between;
    background-color: #d3e6d1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1200;
    font-style: normal;
    font-weight: bold;
    position: fixed;
    border-radius: 10px;
    margin-left: 80px;
     margin-top: 45px;
}*/


.navbar {
    font-family: 'Manrope', sans-serif;
    height: 80px;
    margin-top: 20px;
    border-radius: 20px;
    margin-left: 30px;
    font-size: 18px;
    position: fixed;
    display: flex;
    font-weight: 290;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Adjust padding as needed */
    font-family: 'Lato', sans-serif;
    background-color: rgba(255, 255, 255, 0.9); /* Example color */
    /* Rest of your styles */
}



.nav-links {
    list-style: none;
    font-family: 'Manrope', sans-serif;
    display: flex;
    margin-right: -15px;
    /* Adjust spacing between items */
}

.nav-links li {
    margin: 0 5px;
}

.nav-links li a {

    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    color: #000000;
    padding: 25px 15px;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a:focus {
    color: #007bff;
    /* Highlight color */
}

.nav-links li .new {
    background-color: #bbdfa3;
    /* A bright attention-grabbing color */
    color: rgb(208, 209, 155);
    border-radius: 5px;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

.nav-links li .new:hover,
.nav-links li .new:focus {
    background-color: #e64a19;
    /* Darken color on hover */
}

.menu-toggle {
    display: none;
}



/* Mobile devices */
@media (max-width: 768px) {
    /* Base styles for navigation links */
.nav-links li a {
    border-bottom: none; /* This removes the border line */
    block-size: 40px;
    display: block; /* Ensure each link takes up the full width of the menu */
    text-decoration: none; /* Remove underline from links */
    color: #333; /* Text color for links */
    padding: 15px 20px; /* Padding for larger tap/target areas */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

/* Hover and focus styles for links */
.nav-links li a:hover, .nav-links li a:focus {
    background-color: #f4f4f4; /* Light background color for hover state */
    color: #007bff; /* Change text color on hover/focus */
}

/* Styling for the active navigation link */
#nav123.nav-links li a.active {
    font-family: 'Lato' sans-serif;
    border-bottom: none; /* This removes the border line */
    background-color: #007bff; /* Background color for active link */
    color: white; /* Text color for active link */
}

/* Styling for the last link in the nav to remove the bottom border */
.nav-links li:last-child a {
    border-bottom: none; /* Remove bottom border for the last link */
}

/* Mobile Menu Button Styling */
.menu-toggle {
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer; /* Change cursor to pointer to indicate clickability */
    padding: 10px; /* Padding around the menu button for easier tapping */
    font-size: 20px; /* Adjust the size of the menu icon */
    background: transparent; /* Transparent background */
    border: none; /* Remove border */
    color: #333; /* Icon color */
}

/* Ensure the menu button is visible and accessible */
.menu-toggle:focus {
    outline: none; /* Remove outline to match the design, consider replacing with a more accessible focus indicator */
}

.menu-toggle {
    border-radius: 10px;
    margin-left: 70px;
    display: block; /* Show menu button */
    /* Add additional styles for menu button appearance */
}

.nav-links {
    font-family: 'Manrope', sans-serif;
    display: none; /* Hide nav links by default */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* Additional styles for the dropdown */
}

.nav-links li a {
    font-family: 'Manrope', sans-serif;
    border-bottom: none; /* This removes the border line */
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.nav-links.active {
    font-family: 'Manrope', sans-serif;
    border-bottom: none; /* This removes the border line */
    display: flex; /* Show nav links when active */
}

.menu-toggle {
    /* Other styles... */
    border-radius: 10px; /* Adjust this value as needed */
    /* More styles... */
}


.nav-links {
    /* Other styles... */
    font-family: 'Manrope', sans-serif;
    border-radius: 10px; /* This should match or be greater than the menu toggle for consistency */
    /* More styles... */
}

}

/* For larger devices */
@media (min-width: 769px) {
    .nav-links li .new {
        padding: 15px 20px;
    }
}
@media (max-width: 768px) {
    .nav-links li a {
        border-bottom: none; /* This will remove the border from the nav links */
        padding: 15px; /* Maintain the padding for clickable area */
    }
}

.logo img {
    height: 60px;
    /* Adjust the size as needed */
    transition: transform 0.3s ease;
    margin-left: 0px;
    left: 0;
}

.logo:hover img {
    transform: scale(1.1);
    /* Logo grows when hovered */
}




.hero {
    font-family: 'Manrope', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    background-image: url('dubai_harbour\ copy\ \(1\).jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0px;
}

.hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    left: 0;
    margin-left: 0;
}
.hero h3 {
    font-family: 'Manrope', sans-serif;
    margin-bottom: 20px;
    font-size: 25px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    left: 0;
    margin-left: 0;
}


.hero a{
    text-decoration: none;
}

.hero p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    max-width: 400px;
    text-align: center;
    margin-bottom: 40px;
}

.button {
    display: inline-block;
    background-color: #222;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #444;
    cursor: pointer;
}

.phone-number {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 20px;
    text-align: center;
}


/* Add the previously shared global styles here... */

.property-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    /*background-color: #8ecae6; /* Applied color palette */
    /* For alternating image sides, you can use the nth-child selector */
}

.property-content {
    padding-left: 40px;
    flex: 1;
    
    /* Adjust spacing as necessary */
}

.property-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
}



.property-info span {
    display: block;
    font-weight: bold;
}


.property-actions button {
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.property-actions button:hover {
    background-color: #007bff;
    color: #fff;
}

.interested {
    background-color: #076b2d ;
    background: linear-gradient(to right, #076b2d, #9ffac0);
    color: #ffffff;
    border: 5px solid #000000;
}

.broucher {
    background-color: #007bff;
}

.interested:hover {
    background-color: #e64a19;
}

.property-image {
    flex: 1;
    text-align: right;
}

.property-image img {
    max-width: auto;
    max-height: 400px;
    border-radius: 10px;
    object-fit: cover;
    /* Add rounded corners to the image */
}


@media (max-width: 768px) {
    .property-actions button{
        margin-left: 15px;
        justify-content: center;
        margin-top: 10px;
}

    .property-section {
        flex-direction: column-reverse;
    }

    .property-content,
    .property-image {
        margin-top: 5px;
        padding-right: 0;
        text-align: center;
    }

    .property-image img {
        margin-top: 5px;
        margin-bottom: 0px;
    }
}




.brochure-section {
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    gap: 20px;
    /* This sets the space between the form and the image */
}

.brochure-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-basis: 50%;
}

.brochure-form h2 {
    margin-bottom: 15px;
    color: #000;
}

.brochure-form form {
    display: flex;
    flex-direction: column;
}

.brochure-form input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.brochure-form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    /* Change to your brand color */
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.brochure-form button:hover {
    background-color: #0056b3;
    
    /* Darker shade for hover effect */
}

.brochure-image {
    flex-basis: 50%;
    text-align: center;
    
}

.brochure-image img {
    width: auto;
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .brochure-section {
        flex-direction: column;
    }
}







/* Style for the 'I'm Interested' section */
#interest-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background: url('') no-repeat center center;
    background-size: cover;
}

/* The modal background */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 2;
    /* Sit on top */
    left: 0;
    top: 50px;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black with opacity */
}

/* The modal content box */
.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    /* 5% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
    max-width: 600px;
    /* Maximum width of the modal */
    border-radius: 15px;
    /* Rounded corners for the modal */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Shadow for depth */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Style the input fields */
.interest-form input,
.interest-form select,
.interest-form textarea {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 20px;
    /* Space between the fields */
    border-radius: 5px;
    /* Rounded corners for the fields */
    border: 1px solid #ccc;
    font-size: 16px;
    /* Larger font size for better readability */
    font-family: 'Manrope', sans-serif;
}

/* Style the submit button */
.interest-form button {
    width: 100%;
    padding: 15px;
    background-image: linear-gradient(to right, #219ebc, #2cbbc4);
    /* Gradient effect */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Increased shadow for more depth */
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
    text-transform: uppercase;
    /* Optional: makes the text uppercase */
    letter-spacing: 1px;
    /* Optional: increases spacing between letters */
}

.interest-form button:hover,
.interest-form button:focus {
    background-image: linear-gradient(to right, #107c91, #2a9da0);
    /* Slightly darker gradient for hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    /* Larger shadow for hover */
    transform: scale(1.05);
    /* Makes the button grow slightly */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        width: 90%;
    }
}


/* ... (include your existing styles here) ... */

.modal-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-container {
    flex: 1;
    padding-right: 20px;
    /* Add some space between the form and the image */
}

.image-container {
    flex: 1;
    padding-left: 20px;
    /* Add some space between the image and the form */
}

h3 {
     justify-content: center; 
    margin-left: 60px; 
}




.image-container img {
    width: 100%;
    max-width: 400px;
    /* Adjust as necessary */
    height: auto;
    border-radius: 10px;
    /* Optional: if you want rounded corners */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
     
    
    .form-container,
    .image-container {
        padding-right: 0;
        padding-left: 0;
        align-items: center;
        justify-content: center;
    }

    .image-container img {
        max-width: fit-content;
        max-height: fit-content;
        /* Full width on smaller screens */
        margin-bottom: 20px;
    }
}





#showInterestModal {
    padding: 15px 30px;
    /* Slightly larger horizontal padding for better visual */
    background-image: linear-gradient(to right, #219ebc, #2cbbc4);
    /* Gradient effect */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Shadow for depth */
    transition: all 0.3s ease;
    /* Transition for smooth effects on hover */
    text-transform: uppercase;
    /* Uppercase text */
    letter-spacing: 1px;
    /* Spacing between letters for better readability */
    margin: 0 auto;
    /* Center the button if it's not inside a text-align: center container */
    display: block;
    /* To allow margin to center the button horizontally */
}

#showInterestModal:hover,
#showInterestModal:focus {
    background-image: linear-gradient(to right, #107c91, #2a9da0);
    /* Darker gradient for hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    /* Larger shadow on hover */
    transform: scale(1.05);
    /* Scale up the button on hover */
}







footer {
    background-color: #219ebc;
    /* Cerulean blue */
    color: white;
    padding: 20px 50px;
    text-align: center;
    border-radius: 10px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* Stack vertically on all screen sizes */
}

.contact-icon {
    margin: 0 10px;
    color: #219ebc;
    /* Ensure contrast with the background */
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-decoration: none;
}

.contact-icon.whatsapp {
    background: #25D366;
    /* WhatsApp brand color */
    color: white;
    /* Ensuring the icon is white for visibility */
}

.contact-icon:hover {
    background: #107c91;
    /* A darker shade of blue for hover effect */
    color: white;
    /* Change icon color on hover for visibility */
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid #226e74;
    /* Slightly darker shade for separation */
    padding-top: 10px;
    margin-top: 20px;
    justify-content: center;
}

.footer-bottom p {
    margin: 5px 0;
}








body {
    font-family: 'Open Sans', sans-serif;
    background: #ffffff; /* Soft Gold */
    line-height: 1.6;
    color: #046307; /* Emerald Green */
}




/* Project section styles */
.project {
    background: #FFF; /* White background for project cards */
    margin-bottom: 2em; /* Add bottom margin for spacing between project cards */
    padding: 1em; /* Add padding inside project cards */
    border-radius: 8px; /* Rounded corners for project cards */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.project-title {
    color: #000000; /* Emerald Green for titles */
    margin-bottom: 0.5em;
}

.project img {
    width: 100%; /* Responsive image */
    height: auto;
    border-radius: 8px; /* Rounded corners for images */
}

/* ... other styles ... */

.footer {
    background-color: #2F4F4F; /* Dark Slate */
    color: #D4AF37; /* Metallic Gold */
    padding: 1em 0; /* Adjusted padding */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align footer content */
}

.footer-bottom {
    border-top: 1px solid #D4AF37; /* Metallic Gold */
    padding-top: 0.5em;
    color: #000000;
    font-weight: bold;
}

.contact-icon {
    background: #FFFFFF;
    color: #046307;
    margin: 0.5em;
    /* ... */
}

/* ... other styles ... */

/* Use media queries to adjust layout on smaller screens */
@media (max-width: 768px) {
    .navbar, .hero, .project, .footer-content {
        align-items: center;
        /* Adjust the layout for mobile */
    }
}







.property-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff; /* Soft Gold for alternating section backgrounds */
    margin: 20px 0; /* Add space between sections */
    border-radius: 8px; /* Rounded corners for the section */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.property-content {
    flex: 1;
    padding-right: 20px; /* Space between content and image */
    color: #000000; /* Emerald Green for text */
}

.property-content h2 {
    color: #000000; /* Metallic Gold for headers */
    margin-bottom: 1em;
}

.property-content p {
    margin-bottom: 1em;
}

.property-content .button {
    background-color: #046307; /* Emerald Green for buttons */
    color: #FFFFFF; /* Crisp White for button text */
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.property-content .button:hover {
    background-color: #D4AF37; /* Metallic Gold for button hover */
}

.property-image {
    flex: 1;
    text-align: center; /* Center the image if it's not full width */
}

.property-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners for the image */
    box-shadow: 0 8px 16px rgba(0, 0, 0,0.7); /* Shadow for image depth */
}

@media (max-width: 768px) {
    .property-section {
        margin-top: 10px;
        flex-direction: column;
        text-align: center;
    }

    .property-content {
        padding-right: 0;
    }

    .property-image img {
        margin-bottom: 20px;
        align-items: center;
    }
}





.btn {
    padding: 10px 20px;
    margin-right: 10px; /* Add space to the right of every button */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* If you want to specifically target the 'Download Brochure' button */
.brochure-download {
    margin-right: 20px; /* Increase space to the right of the 'Download Brochure' button */
}

/* Or if you want to target the 'I'm Interested' button specifically */
.interested {
    margin-left: 20px; /* Add space to the left of the 'I'm Interested' button */
}

/* If you want to add space only between buttons when they are next to each other */
.btn + .btn {
    margin-left: 20px; /* This will add left margin to buttons that follow another button */
}


/*Individual Property Sections enhancing background: linear-gradient(to bottom, #87CEFA, #E6E6FA, #FFFFFF);
*/
#dubai-harbour p{
    font-size: 13px;
    color:#fff;
}

#dubai-harbour{
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);
    background: #093854;
}


#address-residence-the-bay{
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);

}
#address-residence-the-bay p{
    color: rgb(3, 3, 3);
}

#beach-isle{
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);
}
#beach-isle p{
    color: #000000;
}
#beach-isle .property-info span{
    color: #000000;
}



#sunrise-bay{
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);
    color: white;
}
#sunrise-bay p{
    color: #000000; 
}
#sunrise-bay .property-info span{
    color: #000000; 
}


#marina-vista{
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);
}
#marina-vista p{
    color: #000000; 
}
#marina-vista .property-info span{
    color: #000000; 
}

#elie-saab{
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);

}

#south-beach{
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);

}

#bayview{
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);
}

#sea-point{
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);
}

#palace-beach-residence{
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);
}

#beach-mansion{
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);
}

#emaar-beach{
    background: linear-gradient(to right, #87CEFA, #E6E6FA, #FFFFFF);
}

p{
    text-align: justify;
}

@media (max-width: 768px) {
    .property-section, .property-content, .property-info, .property-actions, .nav-links,  {
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

   
    .property-image img {
        margin: 0 auto; /* Auto margins on the sides to center within a flex container */
        max-width: 90%; /* Adjust image size as necessary */
        height: auto; /* Maintain aspect ratio */
    }

    /* Adjust buttons and links to fill more of the screen or fit content */
    .button, .btn, .navbar a.contact-btn {
        width: 80%; /* Example width, adjust based on your design */
        margin: 10px auto; /* Center buttons horizontally and add vertical spacing */
    }

    #showInterestModal {
        margin: 0 auto; /* This centers the button horizontally in the flex container */
        display: block; /* Ensures the button is treated as a block-level element, allowing for margin auto to work */
    }
}

@media (max-width: 768px) {
    .property-section {
        text-align: center; /* Center text-based content */
        display: flex;
        flex-direction: column; /* Stack child elements vertically */
        align-items: center; /* Center-align the flex items horizontally */
        justify-content: center; /* Center content vertically if needed */
    }

    /* Adjust .property-image container if used for background images */
    .property-image {
        width: 100%; /* Full width of the section */
        /* Center background images if applicable */
        background-position: center;
        background-size: cover;
    }

    /* Assuming .property-actions contains your buttons */
    .property-actions {
        width: 100%; /* Full width to utilize text-align center from .property-section */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}



.interest-form h2,h3,h5{
    color: #000;
}

@media (max-width: 768px) {
    .property-image {
        width: 100%; /* Ensures the container itself spans the full width of the viewport */
    }

    /* Additional styles for .property-section to ensure it also spans the full width */
    .property-section {
        padding: 0; /* Removes any padding that might limit the width of the content */
        margin: 0; /* Adjust if necessary to ensure the section spans the full width */
    }
}


@media (max-width: 768px) {
    .property-section {
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .property-content{
        margin-right: 30px;
    }

    /* Optionally, if you want the last section not to have a bottom margin, use :not() and :last-of-type pseudo-classes */
    .section:not(:last-of-type) {
        margin-bottom: 20px; /* Adds space only if it's not the last section */
    }
}




.navbar {
    background-color: rgba(255, 255, 255, 0.9); /* Example color */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    height: 80px;
    position: fixed;
    display: flex;
    z-index: 1000;
    padding: 0 20px;
    font-size:15px;
    font-family: 'Manrope', sans-serif;
    justify-content: space-between;
    text-decoration: none;
    padding-left: 10px;
   
}




.nav-links {
    align-items: right;
    font-size: 16px;
    text-decoration: none;
    list-style: none;
    display: flex;
    margin-right: -15px;
    flex-grow: -2; /* Allows the nav links to take up necessary space */
    padding: 10; /* Reset padding */
    margin: 0; /* Reset margin */
    /* Adjust spacing between items */
}

.nav-links li {
    margin: 0 0;
}

.nav-links li a {
    text-decoration: none;
    color: #000000;
    padding: 25px 15px;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a:focus {
    color: #007bff;
    /* Highlight color */
}

.nav-links li .new {
    background-color: #ff5722;
    /* A bright attention-grabbing color */
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.menu-toggle {
    display: none; /* Hide toggle button on larger screens */
}



@media (max-width: 768px) {
    .property-section, .property-content, .property-info, .property-actions, .nav-links,  {
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .property-content{
        text: center;
    }
    .property-image img {
        margin: 0 auto; /* Auto margins on the sides to center within a flex container */
        max-width: 90%; /* Adjust image size as necessary */
        height: auto; /* Maintain aspect ratio */
    }

    /* Adjust buttons and links to fill more of the screen or fit content */
    .button, .btn, .navbar a.contact-btn {
        width: 80%; /* Example width, adjust based on your design */
        margin: 10px auto; /* Center buttons horizontally and add vertical spacing */
    }

    #showInterestModal {
        margin: 0 auto; /* This centers the button horizontally in the flex container */
        display: block; /* Ensures the button is treated as a block-level element, allowing for margin auto to work */
    }
}

@media (max-width: 768px) {
    .property-section {
        text-align: center; /* Center text-based content */
        display: flex;
        flex-direction: column; /* Stack child elements vertically */
        align-items: center; /* Center-align the flex items horizontally */
        justify-content: center; /* Center content vertically if needed */
    }

    /* Adjust .property-image container if used for background images */
    .property-image {
        width: 100%; /* Full width of the section */
        /* Center background images if applicable */
        background-position: center;
        background-size: cover;
    }

    /* Assuming .property-actions contains your buttons */
    .property-actions {
        width: 100%; /* Full width to utilize text-align center from .property-section */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}



.interest-form h2,h3,h5{
    color: #000;
}

@media (max-width: 768px) {
    .property-image {
        width: 100%; /* Ensures the container itself spans the full width of the viewport */
    }

    /* Additional styles for .property-section to ensure it also spans the full width */
    .property-section {
        padding: 0; /* Removes any padding that might limit the width of the content */
        margin: 0; /* Adjust if necessary to ensure the section spans the full width */
    }
}


@media (max-width: 768px) {
    .property-section {
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .property-content{
        margin-right: 30px;
    }

    /* Optionally, if you want the last section not to have a bottom margin, use :not() and :last-of-type pseudo-classes */
    .section:not(:last-of-type) {
        margin-bottom: 20px; /* Adds space only if it's not the last section */
    }
}

.nav-links li a {
    font-family: 'Manrope', sans-serif;
    border-bottom: none; /* This removes the border line */
    padding: 15px;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
}

.nav-links.active {
    font-family: 'Manrope', sans-serif;
    border-bottom: none; /* This removes the border line */
    display: flex; /* Show nav links when active */
    text-decoration: none;
}

.menu-toggle {
    /* Other styles... */
    display: none;
    border-radius: 10px; /* Adjust this value as needed */
    /* More styles... */
}


@media (max-width: 768px) {
    /* Show the menu toggle button on mobile screens */
    .menu-toggle {
        display: block;
    }

    /* Hide the navigation links by default on mobile screens */
    .nav-links {
        display: none;
        position: absolute; /* Position the dropdown menu absolutely */
        background-color: #fff; /* Set a background color for the dropdown */
        width: 100%; /* Full width */
        top: 100%; /* Directly below the toggle button */
        left: 0;
        text-decoration: none;
        flex-direction: column;
        /* additional styling as necessary */
    }

    /* Display the dropdown when the 'active' class is added to nav-links */
    .nav-links.active {
        text-decoration: none;
        display: flex;
    }
}


/* Remove underlines from all links */
a {
    text-decoration: none;
}

/* Remove borders from nav-links specifically, if they have been added */
.nav-links li a {
    border: none;
}

/* If you have set borders or lines using pseudo-classes like :after or :before, make sure to remove them as well */
.nav-links li a::after,
.nav-links li a::before {
    content: none;
}

/* If there are any borders on the nav-links list items or the ul, remove those too */
.nav-links, .nav-links li {
    border: none;
}

.navbar{
    margin-left: 0px;
    margin-right: 0px;
    left: 0;
    right: 0;
    border-radius:10px;
}





@media (max-width: 768px) {
    /* Show the menu toggle button on mobile screens */
    .menu-toggle {
        display: block;
    }

    /* Hide the navigation links by default on mobile screens */
    .nav-links {
        display: none;
        position: absolute; /* Position the dropdown menu absolutely */
        background-color: #fff; /* Set a background color for the dropdown */
        width: 100%; /* Full width */
        top: 100%; /* Directly below the toggle button */
        left: 0;
        text-decoration: none;
        flex-direction: column;
        /* additional styling as necessary */
    }

    /* Display the dropdown when the 'active' class is added to nav-links */
    .nav-links.active {
        text-decoration: none;
        display: flex;
    }
}






html {
    scroll-padding-top: 100px; /* Adjust the scroll position to be 100px below the top */
  }
  



  .btn.Brochure{
    background: linear-gradient(to right, #ae754a, #edda95);
    border-radius: 20px;
    color: #ffffff;
    transition: all 0.3s ease; /* Adds a transition effect on hover */
  }

  .btn.interest{
    border-radius: 20px;
  }
  .btn.Brochure:hover{
    background:#007bff;

  }

  .interested {
    background-color: #076b2d ;
    background: linear-gradient(to right, #076b2d, #8be8af);
    color: #ffffff;
    border: 5px solid;
    transition: all 0.7s ease; /* Adds a transition effect on hover */
}

  .interested:hover{
    background:#007bff;
  }





  .icon-container {
    display: flex; /* This will enable flexbox */
    justify-content: center; /* Center along the main axis (horizontally) */
    align-items: center; /* Center along the cross axis (vertically) */
    background-color: #25D366; /* WhatsApp green background */
    border-radius: 10px; /* Rounded corners */
    padding: 7px; /* Padding around content */
    margin: 5px; /* Margin around the container */
    transition: background-color 0.3s; /* Smooth transition for background color change */
    position: relative; /* Keep the position relative for any child positioning */
}




.call-action{
    font-family: 'Manrope', sans-serif;
}














  #info {
    background-color: #c3a05c; /* Bootstrap primary blue */
    color: white; /* White text color */
    border: none; /* No border */
    padding: 10px 20px; /* Padding inside the button */
    font-size: 1em; /* Default font size */
    cursor: pointer; /* Cursor indicates the button is clickable */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth background color transition */
  }

  #info:hover {
    background-color: #89d14e; /* A darker blue on hover */
  }

  #infot:active {
    background-color: #004080; /* Even darker blue when the button is clicked */
    transform: translateY(2px); /* Slight downward shift to mimic a press */
  }


  @media (max-width: 768px) {
    .navbar {
      background-color: rgba(255, 255, 255, 0);
      display: none;
    }

   strong{
    font-family: 'Manrope', sans-serif;
    font-weight: 100;
   }
  
    .hero {
        position: relative; /* Set a relative positioning context */
        height: 100vh; /* Optional: full height */
    }

    .hero h1,
    .hero h3,
    .hero p {
        position: absolute; /* Absolute positioning within .hero */
        bottom: 0; /* Align to the bottom */
        width: 100%; /* Ensure full width */
        text-align: center; /* Center the text */
        margin-bottom: 20px; /* Adjust spacing as needed */
    }

    .hero h1 {
        bottom: 100px;
        font-size: 35px; /* Adjust font size */
    }

    .hero h3 {
        bottom: 70px;
        font-size: 20px; /* Adjust font size */
    }
    .menu-toggle {
      display: block; /* Show the toggle button */
      position: fixed;
      top: 0; /* Adjust top and right values to position the button */
      right: 0;
      z-index: 1001; /* Ensure it's above other content */
      /* Style the button as needed */
      margin-top: 40px;
    }
  }



.footer-bottom p{
    text-align: center;
}




.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding-left: 0;
}

.nav-links li {
    flex-grow: 1; /* Allow the items to grow to fill available space */
    flex-shrink: 0; /* Prevent the items from shrinking below their content size */
    flex-basis: auto; /* Basis of flex items is the size of its content */
    text-align: center; /* Center-align the text for each link */
}

.nav-links li a {
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    color: #000000;
    padding: 25px 15px; /* Adjust as needed */
    transition: color 0.3s ease;
    display: block; /* Make the anchor fill the li element */
}


.nav-links li.contact-btn {
    margin-left: auto;
    margin-right: auto;
}

















@media (max-width: 768px) {
    .property-info span {
        display: block;
        font-weight: bold;
    }
}



/* Target only the first property-section that comes immediately after the hero section */
.hero + .property-section {
    margin-top: 0; /* Removes top margin of the first property section following the hero */
    padding-top: 0; /* Additionally removes top padding if needed */
}

 .property-section:first-of-type {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}



  
.property-content h2 {
    font-weight: bold;
   /* font-family: 'Catamaran', sans-serif;
    font-family: 'Cinzel', serif;*/
    font-family: 'Cormorant', serif;
  /*  font-family: 'Alegreya', serif;
    font-family: 'Roboto Bold', sans-serif;
    font-family: 'Quattrocento', serif;
    font-family: 'Archivo Black', sans-serif;
    font-family: 'Play Fair', serif;
    font-family: 'Playfair Display', serif;*/
}

.property-content p {
    /* font-family: 'Merriweather Sans', sans-serif;
     font-family: 'Fauna One', sans-serif;*/
     font-family: 'Lato', sans-serif;
     /* font-family: 'Alegreya Sans', sans-serif; 
     font-family: 'Roboto Slab', sans-serif; 
     font-family: 'Quattrocento Sans', sans-serif;
     font-family: 'Aileron', sans-serif; 
     font-family: 'Lato', sans-serif;
     font-family: 'Source Sans Pro', sans-serif; */
}



 strong{
    font-family: 'Lato', sans-serif;
    font-size: 17px;
   }



span {
    font-family: 'Cormorant', serif;
     font-weight: 400; 
}

