body {
      font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: white;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid black; /* Add black top border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Add shadow */
}

/* Header Container */
.header-container {
    display: flex;
    font-weight: bold;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff; /* You can change the background color */
    color:black;
}

/* Logo */
.logo img {
    height: 50px; /* Adjust logo size as needed */
}

/* Phone Numbers */
.phone-numbers {
    text-align: center;
    flex-grow: 1;
}

/* Social Media Links */
.social-media a {
    color:black;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

.social-media a:hover {
    color: #dd3333; /* Change hover color */
}


.container {
    display: flex;
    margin: 20px;
}

.slider {
    flex: 1;
    margin-right: 20px;
}

.slider img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.latest-properties {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 5px;
}

.property {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.tabs {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.tabs button {
    background: #333;
    color: white;
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.tabs button:hover {
    background: #555;
}

.category {
    padding: 20px;
    background: white;
    margin: 20px;
    border-radius: 5px;
}

.search {
    text-align: center;
    margin: 20px;
}

.search input {
    padding: 10px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search button {
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-column {
    width: 30%;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

footer p {
    font-size: 14px;
    margin-top: 20px;
}
