
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial,sans-serif}
body{background:#f5f7fb}
.hero{height:70vh;background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600') center/cover;color:white}
nav{display:flex;justify-content:space-between;padding:20px 50px}
nav ul{display:flex;gap:20px;list-style:none}
.hero-content{text-align:center;padding-top:140px}
.hero-content h1{font-size:3rem}
.hero-content button,.card button{background:#19c85b;color:white;border:none;padding:12px 22px;border-radius:30px;cursor:pointer}
.properties{padding:50px}
.properties h2{text-align:center;margin-bottom:30px}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}
.card{background:white;border-radius:18px;overflow:hidden;box-shadow:0 5px 15px rgba(0,0,0,.1)}
.card img{width:100%;height:220px;object-fit:cover}
.card h3,.card p,.card button{margin:15px}





/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f7fa;
}

/* Hero Section */
.hero{
    min-height:100vh;
    background:
        linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
        url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600");
    background-size:cover;
    background-position:center;
    color:#fff;
}

/* Navbar */
nav{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;

    backdrop-filter:blur(12px);
    background:rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(255,255,255,0.15);
}

/* Logo */
nav h2{
    font-size:28px;
    font-weight:700;
    color:#fff;
    cursor:pointer;
}

nav h2 span{
    color:#22c55e;
}

/* Menu */
nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav ul li{
    position:relative;
    cursor:pointer;
    font-weight:500;
    transition:.3s;
}

nav ul li:hover{
    color:#22c55e;
}

/* Underline Animation */
nav ul li::after{
    content:"";
    position:absolute;
    width:0;
    height:2px;
    left:0;
    bottom:-6px;
    background:#22c55e;
    transition:.3s;
}

nav ul li:hover::after{
    width:100%;
}

/* Hero Content */
.hero-content{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 20px;
}

.hero-content h1{
    font-size:4rem;
    max-width:900px;
    margin-bottom:15px;
    line-height:1.2;
}

.hero-content p{
    font-size:1.2rem;
    max-width:650px;
    margin-bottom:30px;
    opacity:.9;
}

/* Button */
.hero-content button{
    background:#22c55e;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    font-size:1rem;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 25px rgba(34,197,94,.35);
}

.hero-content button:hover{
    transform:translateY(-4px);
    background:#16a34a;
}

/* Mobile */
@media(max-width:768px){

    nav{
        padding:15px 5%;
    }

    nav h2{
        font-size:22px;
    }

    nav ul{
        gap:15px;
        font-size:14px;
    }

    .hero-content h1{
        font-size:2.5rem;
    }

    .hero-content p{
        font-size:1rem;
    }
}