/* Reset styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box; /* Ensures elements fit within their containers */
}

/* Navbar styling */
.navigation {
    position: fixed; /* Keeps the navbar fixed at the top */
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Sets a fixed height for the navbar */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #02161f; /* Sets a solid background color */
    color: white; /* Sets the text color to white */
    padding: 0 20px; /* Adds horizontal padding for spacing */
    z-index: 10000; /* Ensures the navbar is above all other elements on the page */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow for better separation from the content */
}
header {
    margin-bottom: 80px; /* Adds space below the navbar equal to its height */
}


/* Ensure the body content does not overlap the navbar */
body {
    margin-top: 80px; /* Adds a margin equal to the navbar height to prevent overlap */
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Disables horizontal scrolling */
}

/* Styling for the navigation list */
.nav-list {
    list-style: none; /* Removes default list styling (bullets) */
    display: flex; /* Displays list items in a row */
    margin: 0;
    padding: 0;
}

.nav-list li a {
    text-decoration: none; /* Removes underline from links */
    margin: 0 15px; /* Adds horizontal spacing between links */
    color: rgb(137, 187, 243); /* Sets the link color */
    font-size: 16px; /* Sets the font size */
    transition: color 0.3s ease; /* Adds a smooth transition effect for hover */
}

.nav-list li a:hover {
    color: brown; /* Changes the link color on hover */
}

/* Styling for the logo */
.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Makes the logo circular */
    margin-right: 10px;
}

/* Farukhnagar section styling */
.farukhnagar {
    padding: 50px 20px;
    background-color: #f9f9f9; /* Light background color for contrast */
    text-align: center;
}

.farukhnagar h1 {
    font-size: 2.5rem; /* Adjust the font size */
    color: #02161f; /* Dark text color */
    margin-bottom: 20px;
}

.farukhnagar p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

/* Property list styling */
.property-list {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    justify-content: space-between; /* Adds space between property items */
    gap: 20px; /* Adds spacing between items */
}

.property-item {
    width: 48%; /* Adjust the width of each property item */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
    overflow: hidden; /* Ensures content does not overflow the container */
    padding: 20px;
    text-align: left;
}

.property-item img {
    width: 100%; /* Makes the image cover the entire width */
    height: 200px; /* Sets a fixed height for the image */
    object-fit: cover; /* Ensures the image scales without distortion */
    border-radius: 10px;
    margin-bottom: 15px;
}

.property-item h2 {
    font-size: 1.5rem;
    color: #02161f;
    margin-bottom: 10px;
}

.property-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

/* Button styling */
#button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #02161f;
    color: white;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#button:hover {
    background-color: #333; /* Darker background on hover */
}