
        /* Global Styles */
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(90deg, #1a237e, #673ab7);
}

/* Real Estate Background Design */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 150px;
    background: url('city-skyline.svg') repeat-x center bottom;
    opacity: 0.2;
}

/* Hero Text */
.hero h1 {
    font-size: 45px;
    font-weight: bold;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
    z-index: 1;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-in-out;
}

.hero p {
    font-size: 22px;
    font-weight: 300;
    z-index: 1;
    margin-bottom: 30px;
    animation: fadeInUp 1.3s ease-in-out;
}

/* Search Bar */
.search-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 50px;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
    animation: fadeInUp 1.6s ease-in-out;
}

.search-bar input {
    border: none;
    padding: 12px 15px;
    width: 50%;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.search-bar input:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.search-bar button {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.search-bar button:hover {
    background: linear-gradient(45deg, #ff5722, #e64a19);
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



        /* Featured Properties */
        .featured-properties {
            text-align: center;
            padding: 50px;
            background: white;
        }

        .property-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            padding: 20px;
        }

        /* Footer */
        footer {
            background: linear-gradient(90deg, #673ab7, #1a237e);
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 16px;
        }
        
        

    .logo a {
        color: #ffd700;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
        display: flex;
        align-items: center;
    }
    .logo i {
        margin-right: 8px;
    }
    .hamburger {
        display: block;
        font-size: 26px;
        color: #fff;
        cursor: pointer;
    }
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        background: linear-gradient(90deg, #1a237e, #673ab7);
        padding: 10px 10px;
        z-index: 1000;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: #673ab7;
        text-align: center;
        padding: 10px 0;
    }

    .menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu li {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu li a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        padding: 10px;
        display: block;
        transition: all 0.3s ease-in-out;
        text-align: center;
    }

    .menu li a:hover {
        color: #ffd700;
    }

    /* Dropdown Styling */
    .dropdown {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        background: #4527a0;
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-menu li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .dropdown-menu li a {
        display: flex;
        align-items: center;
        padding: 10px;
        justify-content: center;
    }

    .dropdown-menu li a i {
        margin-right: 8px;
    }

    .auth-btn {
        background: #ffd700;
        color: #1a237e !important;
        padding: 8px 15px;
        font-weight: bold;
        transition: background 0.3s;
        text-align: center;
        display: inline-block;
        width: 50%;
        border-radius: 50px;
        margin-top:5px;
    }

    .auth-btn:hover {
        background: #ffcc00;
    }

    .toggle-icon {
        margin-left: 8px;
    }




