*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;

}

body{
background:#0f172a;
color:#fff;
line-height:1.6;
}

/* Navigation */

nav{
background:#0f172a;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 3px 12px rgba(0,0,0,.4);
}

nav a{
color:white;
text-decoration:none;
transition:.3s;
}

nav a:hover{
color:#facc15;
}

/* Hero */

.hero{
min-height:90vh;
display:flex;
align-items:center;
background:linear-gradient(135deg,#0f172a,#1d4ed8,#0f172a);
}

.hero h2{
font-size:55px;
font-weight:800;
margin-bottom:20px;
}

.hero p{
color:#d1d5db;
font-size:20px;
margin-bottom:35px;
}

.hero img{
width:100%;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.4);
}

/* Buttons */

a.bg-yellow-500,
button{
transition:.3s;
}

a.bg-yellow-500:hover,
button:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(250,204,21,.4);
}

/* Cards */

.bg-slate-900{
transition:.3s;
}

.bg-slate-900:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.5);
}

/* Statistics */

section h2{
transition:.3s;
}

section h2:hover{
color:#fde047;
}

/* Footer */

footer{
border-top:1px solid rgba(255,255,255,.08);
}

footer p{
color:#9ca3af;
}

/* Inputs */

input,
select{
width:100%;
padding:14px;
border-radius:10px;
border:1px solid #334155;
background:#1e293b;
color:white;
outline:none;
}

input:focus,
select:focus{
border-color:#facc15;
}

/* Responsive */

@media(max-width:768px){

.hero{
text-align:center;
padding:60px 20px;
}

.hero h2{
font-size:38px;
}

.hero p{
font-size:18px;
}

nav .space-x-6{
display:flex;
flex-direction:column;
gap:10px;
margin-top:15px;
}

}

/* MOBILE */

@media(max-width:768px){

nav h1{

font-size:30px;

}

.hero{

padding-top:40px;

padding-bottom:70px;

}

.hero h2{

font-size:40px;

line-height:1.2;

}

.hero p{

font-size:18px;

}

.hero img{

margin-top:40px;

}

.grid{

gap:20px;

}

section{

padding:70px 25px;

}

}

