*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f0f1b;
    color:white;
}

header{
    display:flex;
    justify-content:space-between;
    padding:20px 80px;
    background:#111;
}

.logo{
    font-weight:700;
    font-size:20px;
}

nav a{
    color:white;
    margin-left:20px;
    text-decoration:none;
    transition:0.3s;
}

nav a:hover{
    color:#a855f7;
}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:100px 80px;
}

.hero-text{
    max-width:500px;
}

.hero-text h1 span{
    color:#a855f7;
}

.hero-text h2{
    margin:10px 0;
    color:#ccc;
}

.hero-text p{
    margin:20px 0;
    color:#aaa;
}

.btn{
    padding:12px 25px;
    background:#a855f7;
    border-radius:30px;
    text-decoration:none;
    color:white;
    transition:0.3s;
}

.btn:hover{
    background:#9333ea;
}

.hero-image img{
    width:260px;
    height:260px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #a855f7;
}

.section{
    padding:80px;
    text-align:center;
}

.skills, .projects{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:40px;
}

.card{
    background:#1a1a2e;
    padding:20px 30px;
    border-radius:12px;
    min-width:150px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
    background:#222;
}

.contact-links{
    margin-top:30px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.contact-btn{
    padding:12px 20px;
    background:#1a1a2e;
    border-radius:30px;
    text-decoration:none;
    color:white;
    transition:0.3s;
    border:1px solid #a855f7;
}

.contact-btn i{
    margin-right:8px;
}

.contact-btn:hover{
    background:#a855f7;
    transform:translateY(-5px);
}

footer{
    text-align:center;
    padding:20px;
    background:#111;
    color:#aaa;
}

/* Responsive */
@media(max-width:768px){
    .hero{
        flex-direction:column;
        text-align:center;
    }

    header{
        padding:20px;
    }

    .hero{
        padding:60px 20px;
    }

    .section{
        padding:60px 20px;
    }

}
