*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
color:white;
background:#0e0e0e;
}

.navbar{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(6px);
z-index:1000;
}

.logo{
font-weight:bold;
font-size:20px;
}

.nav-links a{
margin-left:20px;
text-decoration:none;
color:white;
font-size:14px;
}

.hero{
height:100vh;
background-image:url("background.png");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

.hero-content{
position:relative;
z-index:2;
}

.hero h1{
font-size:64px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
margin-bottom:25px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
}

.button{
padding:12px 24px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.primary{
background:#f39c12;
color:white;
}

.secondary{
border:2px solid white;
color:white;
}

.section{
padding:80px 20px;
text-align:center;
}

.section h2{
font-size:32px;
margin-bottom:40px;
}

.card-container{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:25px;
}

.card{
background:#1a1a1a;
padding:30px;
border-radius:10px;
width:260px;
box-shadow:0 10px 25px rgba(0,0,0,0.6);
}

.card h3{
margin-bottom:10px;
}

.card p{
margin:5px 0;
color:#ccc;
}

footer{
text-align:center;
padding:30px;
background:#111;
color:#aaa;
}

@media(max-width:768px){

.hero h1{
font-size:40px;
}

.card-container{
flex-direction:column;
align-items:center;
}

}