/* GLOBAL */

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

body{
background:#020617;
color:white;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:#961654;
position:sticky;
top:0;
}

.logo{
color:#38bdf8;
}

.navbar ul{
display:flex;
list-style:none;
gap:30px;
}

.navbar a{
text-decoration:none;
color:white;
font-weight:500;
transition:0.3s;
}

.navbar a:hover{
color:#38bdf8;
}

/* HERO SECTION */

.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:80px 60px;
}

.hero-left{
max-width:550px;
}

.hero-left h4{
color:#94a3b8;
}

.hero-left h1{
font-size:48px;
margin:10px 0;
}

.typing{
color:#38bdf8;
margin-bottom:15px;
}

.hero-left p{
line-height:1.6;
margin-bottom:25px;
}

/* BUTTONS */

.buttons{
display:flex;
gap:15px;
}

.btn{
text-decoration:none;
padding:10px 18px;
border-radius:8px;
font-size:14px;
transition:0.3s;
display:flex;
align-items:center;
gap:6px;
}

.github{
background:#1e293b;
color:white;
}

.linkedin{
background:#0a66c2;
color:white;
}

.whatsapp{
background:#25D366;
color:white;
}

.btn:hover{
transform:scale(1.05);
}

/* HERO IMAGE */

.hero-right img{
width:260px;
border-radius:50%;
border:4px solid #38bdf8;
}

/* SKILLS SECTION */

.skills{
padding:80px 40px;
text-align:center;
background:#020617;
}

.skills h2{
font-size:32px;
margin-bottom:50px;
color:#38bdf8;
}

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

.skill{
background:#1e293b;
padding:30px;
border-radius:12px;
transition:0.4s;
cursor:pointer;
}

.skill:hover{
transform:translateY(-10px) scale(1.05);
background:#334155;
box-shadow:0 0 20px #38bdf8;
}

.skill i{
font-size:55px;
color:#38bdf8;
}

.skill p{
margin-top:10px;
font-weight:500;
}