 *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#0f172a;
    color:white;
}


.navbar{
    display:flex;
    justify-content:space-between;
    padding:20px;
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
}

.navbar a{
    color:white;
    text-decoration:none;
    margin-right:15px;
}



.hero{
    height:100vh;
    background:url('image\ 0.jpg') center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-content{
    text-align:center;
    background:rgba(255,255,255,0.1);
    padding:30px;
    border-radius:15px;
    backdrop-filter:blur(10px);
}

.btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 20px;
    background:#facc15;
    color:black;
    text-decoration:none;
}


.menu{
    padding:50px;
    text-align:center;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:20px;
}

.card{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    padding:15px;
    border-radius:15px;
    transition:0.3s;
}

.card:hover{
    transform:scale(1.05);
}

.card img{
    width:100%;
    border-radius:10px;
}

.card button{
    margin-top:10px;
    padding:8px;
    background:#22c55e;
    border:none;
    cursor:pointer;
}


.features{
    display:flex;
    justify-content:center;
    gap:20px;
    padding:40px;
}

.feature{
    background:rgba(255,255,255,0.1);
    padding:20px;
    border-radius:10px;
}


.modal{
    display:none;
    position:fixed;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
}

.modal-content{
    background:white;
    color:black;
    padding:20px;
    margin:10% auto;
    width:300px;
    border-radius:10px;
}

.modal-content input{
    width:100%;
    margin:10px 0;
    padding:10px;
}