
body{
margin:0;
font-family:'Inter',sans-serif;
background:#05070c;
color:white;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.navbar{
background:#000;
padding:15px 0;
border-bottom:1px solid #222;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#ccc;
font-size:14px;
}

nav a.active{
color:white;
}

.logo{
font-weight:700;
letter-spacing:2px;
}

.btn-red{
background:#e53935;
padding:10px 16px;
border-radius:6px;
color:white;
text-decoration:none;
}

.btn-outline{
border:1px solid #555;
padding:8px 14px;
border-radius:6px;
}

.projects-hero{
padding:120px 0 80px;
text-align:center;
background:radial-gradient(circle at center,#0f1b2e,#05070c);
}

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

.projects-hero p{
color:#aaa;
}

.projects{
padding:80px 0;
}

.projects-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.project-card{
background:#0d1117;
border-radius:12px;
overflow:hidden;
border:1px solid #1f2937;
transition:.3s;
opacity:0;
transform:translateY(30px);
}

.project-card.show{
opacity:1;
transform:translateY(0);
}

.project-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,.6);
}

.project-card img{
width:100%;
height:220px;
object-fit:cover;
}

.project-info{
padding:20px;
}

.project-info h3{
margin:0 0 5px;
}

.project-info p{
color:#9ca3af;
font-size:14px;
margin-bottom:12px;
}

.cta{
text-align:center;
padding:80px 0;
background:#0b0f16;
}

.cta h2{
font-size:32px;
margin-bottom:10px;
}

.cta p{
color:#aaa;
margin-bottom:25px;
}

.big{
padding:14px 26px;
font-size:16px;
}

.footer{
text-align:center;
padding:30px 0;
border-top:1px solid #222;
color:#777;
}
