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

body{
background:#0b0f19;
color:#e5e7eb;
line-height:1.6;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 8%;
border-bottom:1px solid #1f2937;
}

.logo{
font-size:20px;
font-weight:600;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#9ca3af;
}

nav a:hover{
color:white;
}

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:120px 8%;
}

.hero-text{
max-width:500px;
}

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

.hero p{
color:#9ca3af;
margin-bottom:25px;
}

.hero-image img{
width:320px;
height:400px;
object-fit:cover;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

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

.btn{
background:#3b82f6;
color:white;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
}

.btn-outline{
border:1px solid #3b82f6;
color:#3b82f6;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
}

section{
padding:80px 8%;
}

h2{
font-size:30px;
margin-bottom:25px;
}

.project-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.card{
background:#111827;
padding:20px;
border-radius:10px;
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
}

.card img{
width:100%;
border-radius:8px;
margin-bottom:10px;
}

.experience{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.exp-card{
background:#111827;
padding:20px;
border-radius:10px;
}

#contact p{
margin-top:10px;
color:#9ca3af;
}

footer{
text-align:center;
padding:40px;
border-top:1px solid #1f2937;
color:#9ca3af;
}

.image-frame{
width:320px;
height:400px;
padding:10px;
border:3px solid #3b82f6;
border-radius:20px;
background:#111827;
box-shadow:0 15px 40px rgba(0,0,0,0.6);
}

.image-frame img{
width:100%;
height:100%;
object-fit:cover;
border-radius:15px;
}

html{
scroll-behavior:smooth;
}

.typing{
border-right:3px solid #3b82f6;
white-space:nowrap;
overflow:hidden;
width:0;
animation:typing 3s steps(20) forwards, blink 1s infinite;
}

@keyframes typing{
to{width:152px;}
}

@keyframes blink{
50%{border-color:transparent;}
}

.skill-bar{
background:#1f2937;
height:8px;
border-radius:10px;
}

.skill-bar span{
display:block;
height:100%;
background:#3b82f6;
border-radius:10px;
}

.card{
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.5);
}



