
        /* Add your CSS styles here for styling the gallery and form */
        /* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Add a background color to the body */
body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

/* Navigation Bar Styles */
nav {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: white;
}

/* Header Section Styles */
header {
    text-align: center;
    padding: 50px;
    background-color: #2ECC71; /* Green background color */
    color: white;
}

/* Image Gallery Section Styles */
#gallery {
    padding: 50px;
}

.property {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.property-card {
    width: 300px;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.property-card:hover {
    transform: scale(1.05);
}

.property-card img {
    width: 100%;
    height: auto;
}

/* Contact Form Section Styles */
#contact {
    background-color: #3498db; /* Blue background color */
    color: white;
    text-align: center;
    padding: 50px;
}

#contact h2 {
    margin-bottom: 20px;
}

#contact p {
    font-size: 18px;
    margin-bottom: 30px;
}

#contact-form button {
    background-color: #2ECC71; /* Green button color */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

#contact-form button:hover {
    background-color: #27AE60; /* Darker green on hover */
}

/* Footer Section Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}
/* Modal Styles */
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9); /* Semi-transparent black background */
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%; /* Adjust the maximum width as needed */
    max-height: 90vh; /* Limit the maximum height to 90% of the viewport height */
}

/* Close button (X) */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


/* Slider Styles */
.slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.slider img {
    width: 100%;
    height: auto;
    padding: 10px;
}

/* Property Card Styles (customize as needed) */
.property-card {
    cursor: pointer;
    border: 1px solid #ccc;
    margin: 10px;
    padding: 10px;
    text-align: center;
    background-color: #f9f9f9;
}

.property-card:hover {
    background-color: #e9e9e9;
}

.property-card img {
    max-width: 100%;
}

    