/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Header Styles */
header {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: center;
}

.logo img {
    max-width: 150px;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-grow: 1;
}

nav ul li a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
}

.login-button {
    background-color: #ffd700;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

.hero-content h1 {
    font-size: 3rem;
    color: #1a1a1a;
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.search-bar input {
    padding: 10px;
    width: 250px;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.search-bar button {
    background-color: #ffd700;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.2rem;
}

.hero-images {
    display: flex;
    gap: 10px;
}

.featured-property img {
    width: 300px;
    border-radius: 10px;
}

.property-thumbnails img {
    width: 100px;
    border-radius: 5px;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.stat img {
    width: 50px;
}

.stat p {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
}

.social-icons a {
    color: #ffd700;
    font-size: 1.5rem;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.whatsapp-float img {
    width: 40px;
}
.whatsapp-float {
    bottom: 20px;
    right: 20px;
}
.chatbot-widget {
    bottom: 90px; /* Moved up */
    right: 20px;
}
