body{
margin:0;
font-family:'Montserrat',sans-serif;
background:#0b0f19;
color:#ffffff;
scroll-behavior:smooth;
}

/* NAV */
.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
background:#000000;
position:sticky;
top:0;
}

.brand{
display:flex;
align-items:center;
gap:12px;
}

.logo{
width:100px;
height:100px;
object-fit:contain;
margin-right:2px;
}

nav a{
color:white;
margin-left:15px;
text-decoration:none;
transition:0.3s;
}

nav a:hover{
color:#60a5fa;
}

/* HERO */

.hero-services{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:35px;
    font-size:22px;
    margin-top:25px;
}

.hero-services span{
    white-space:nowrap;
}

.hero{

    height:650px;

    background-image:
        linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
        url("hero.jpg");

    background-size:cover;

    background-position:50% 40%;

    background-repeat:no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.overlay{

    animation:fadeIn 1.5s;

}

.hero h2{

    font-size:65px;

    margin:0;

    color:white;

    font-family:'Orbitron',sans-serif;

}

.hero h1{

    margin:10px 0;

    font-size:90px;

    color:#2ea3ff;

    font-family:'Orbitron',sans-serif;

    text-shadow:0 0 20px rgba(0,120,255,.6);

}

.hero p{

    font-size:26px;

    margin-top:25px;

}

.btn{

    display:inline-block;

    margin-top:35px;

    padding:15px 40px;

    background:#0066ff;

    color:white;

    text-decoration:none;

    border-radius:8px;

    margin-right:15px;

    transition:.3s;

}

.btn:hover{

    transform:scale(1.08);

}

.btn2{

    display:inline-block;

    margin-top:35px;

    padding:15px 40px;

    border:2px solid #2ea3ff;

    color:white;

    text-decoration:none;

    border-radius:8px;

    transition:.3s;

}

.btn2:hover{

    background:#2ea3ff;

}

.hero h2{
font-size:42px;
margin-bottom:10px;
}

.btn{
display:inline-block;
margin-top:20px;
padding:12px 20px;
background:#2563eb;
color:white;
text-decoration:none;
border-radius:8px;
transition:0.3s;
}

.btn:hover{
background:#1d4ed8;
transform:scale(1.05);
}

/* SECTIONS */
.section{
padding:60px 20px;
text-align:center;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
margin-top:20px;
}

.card{
background:#1f2937;
padding:20px;
border-radius:12px;
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
background:#273244;
}

/* FOOTER */
footer{
padding:20px;
text-align:center;
background:#111827;
}


/* PROJECTS */

.projects{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:25px;

margin-top:40px;

}

.project-card{

background:#1f2937;

border-radius:15px;

overflow:hidden;

transition:0.4s;

box-shadow:0 8px 20px rgba(0,0,0,.35);

}

.project-card:hover{

transform:translateY(-10px);

box-shadow:0 15px 35px rgba(0,0,0,.6);

}

.project-card img{

width:100%;

height:230px;

object-fit:cover;

display:block;

}

.project-card h3{

padding:15px;

margin:0;

font-size:22px;

}

.project-card p{

padding:0 15px 20px;

color:#d1d5db;

line-height:1.6;

}

/* ===== ANIMATIONS ===== */

.fade-in{
animation:fadeIn 1.2s ease-in-out;
}

.slide-up{
animation:slideUp 1s ease-in-out;
}

/* keyframes */
@keyframes fadeIn{
from{opacity:0;}
to{opacity:1;}
}

@keyframes slideUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}