*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Poppins",sans-serif;
}

body{
line-height:1.7;
color:#1f2933;
}

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

/* NAVBAR */

.navbar{
background:#0f172a;
color:white;
position:sticky;
top:0;
z-index:1000;
}

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

.logo{
font-weight:600;
}

/* NAV MENU */

.nav-menu{
display:flex;
gap:25px;
list-style:none;
}

.nav-menu a{
color:white;
text-decoration:none;
font-size:15px;
transition:0.3s;
}

.nav-menu a:hover{
color:#38bdf8;
}

/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.hamburger span{
width:25px;
height:3px;
background:white;
border-radius:2px;
}

/* HERO */

.hero{
background:linear-gradient(120deg,#0f172a,#1e293b);
color:white;
padding:80px 0;
}

.hero-grid{
display:grid;
grid-template-columns:2fr 1fr;
align-items:center;
gap:50px;
}

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

.subtitle{
margin:15px 0;
font-size:18px;
color:#cbd5e1;
}

.profile-img{
width:100%;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

/* SECTIONS */

.section{
padding:80px 0;
}

.light{
background:#f8fafc;
}

.section-title{
font-size:32px;
margin-bottom:25px;
}

/* STATS */

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
margin-top:40px;
}

.stats div{
background:#0f172a;
color:white;
padding:25px;
border-radius:12px;
text-align:center;
}

/* LIST */

.list{
list-style:none;
}

.list li{
background:white;
padding:15px 20px;
margin-bottom:12px;
border-left:4px solid #0f172a;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* CARD */

.card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
max-width:600px;
}

/* FOOTER */

footer{
background:#0f172a;
color:white;
text-align:center;
padding:20px;
}

/* MOBILE */

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.nav-menu{
position:absolute;
top:70px;
right:-100%;
background:#0f172a;
flex-direction:column;
width:220px;
padding:30px;
transition:0.3s;
}

.nav-menu.active{
right:0;
}

.hamburger{
display:flex;
}

}