*{
    padding:0; 
    margin:0;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    background:linear-gradient(120deg, #0f2027, #203a43, #2c5364);
    color:#fff;
    line-height: 1.6;
    padding:1% 3%;
}
header{
    text-align: center;
    padding: 2%;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    margin-bottom:2%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.7);
}
header h1{
    font-size: clamp(1.8rem, 3vw, 3rem);
}
header p{
    font-size: clamp(1rem, 2vw, 1.5rem);
    color:#ddd;
}
#about{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:2%;
    background: rgba(255,255,255,0.05);
    padding:2%;
    border-radius: 15px;
    margin-bottom: 2%;
}
#about img{
    width:clamp(150px, 25%, 250px);
    border-radius: 50%;
    border: 3px solid #00e1ff;
    transition:transform 0.3s;
}
#about img:hover{
    transform:scale(1.05);
}
#about p{
    font-size: clamp(1rem, 1.6vw, 1.7rem);
    flex:1 1 250px;
    color:#ccc;
}
#skills{
    background: rgba(255,255,255,0.05);
    padding:2%;
    margin-bottom:2%;
    border-radius: 15px;
}
#skills h2{
    margin-bottom: 1%;
}
#skills ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
#skills li{
    margin:0.5%;
    background: linear-gradient(90deg, #ac048a, #aaaaf7, #064141);
    background-size: 200%;
    padding: 0.5% 1%;
    border-radius: 10px;
    transition: background-position 0.5s;
}
#skills li:hover{
    background-position: 100% 0;
}
#projects{
    margin-bottom:2%;
}
.project-box{
    display: flex;
    flex-wrap: wrap;
    gap:2%;
}
.project{
    flex:1 1 clamp(250px, 45%, 500px);
    background: rgba(255,255,255,0.05);
    border-radius:15px;
    padding:1%;
    margin-bottom:1.5%;
    transition:transform 0.3s;
}
.project:hover{
    transform:translateY(-5px);
}
#projects img{
    width:100%;
    border-radius: 10px;
    margin-bottom:1%;
}
.project a{
    text-decoration: none;
    color:#00e1ff;
}
.project a:hover{
    text-decoration: underline;
}
#resume{
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding:2%;
    border-radius: 15px;
    margin-bottom:2%;
}
#resume a:hover{
    background: linear-gradient(90deg, #ac048a, #aaaaf7, #064141);
    background-size: 200%;
    color:#fff;
    text-decoration: none;
    padding:1% 2%;
    border-radius: 5px;
    transition: background-position 0.5s;
}
#resume a:hover{
    background-position: 100% 0;
}
#contact{
    background:rgba(255,255,255,0.05);
    padding:2%;
    border-radius: 15px;
    margin-bottom:2%;
    text-align: center;
}
#contact p{
    margin:0.5% 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
}
footer{
    text-align: center;
    background:rgba(255,255,255,0.05);
    padding:2%;
    border-radius: 15px;
}
footer a{
    color:white;
    margin:0 5px;
    text-decoration: none;
}
footer a:hover{
    text-decoration: underline;
}
