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

body{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:30px;
background:linear-gradient(135deg,#ff9800,#ff5722);
}

.card{
width:100%;
max-width:700px;
background:white;
border-radius:20px;
padding:30px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.profile img{
width:180px;
height:180px;
border-radius:50%;
object-fit:cover;
}

.profile-info h1{
margin-top:20px;
font-size:2.2rem;
color:#222;
}

.profile-info h3{
margin-top:10px;
color:#ff9800;
}

.bio{
margin-top:20px;
line-height:1.8;
color:#555;
}

.profile-icons{
margin-top:25px;
}

.profile-icons a{
color:#333;
font-size:28px;
margin:0 10px;
transition:0.3s;
}

.profile-icons a:hover{
color:#ff9800;
}

.skills{
margin-top:40px;
}

.skills h2{
margin-bottom:20px;
color:#222;
}

.skill-list{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px;
}

.skill-list span{
background:#ff9800;
color:white;
padding:10px 18px;
border-radius:30px;
font-weight:bold;
}

.projects{
margin-top:40px;
}

.projects h2{
margin-bottom:20px;
color:#222;
}

.projects ul{
list-style:none;
}

.projects li{
background:#f5f5f5;
margin:10px 0;
padding:12px;
border-radius:10px;
}

.contact{
margin-top:35px;
}

.contact-btn{
display:inline-block;
background:#ff9800;
color:white;
padding:15px 30px;
border-radius:30px;
font-weight:bold;
transition:0.3s;
text-decoration:none;
}

.contact-btn:hover{
background:#e68900;
}

@media(max-width:768px){

.card{
padding:20px;
}

.profile img{
width:140px;
height:140px;
}

.profile-info h1{
font-size:1.8rem;
}

.profile-info h3{
font-size:1rem;
}

.profile-icons a{
font-size:24px;
}
}