*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:linear-gradient(135deg, #2b1055, #1a1a40, #0f3460);
    color:#ffffff;
    min-height:100vh;
}

a{
    color:#8ec5ff;
    text-decoration:none;
}

.container{
    max-width:1100px;
    margin:auto;
    padding:40px 20px;
}

/* HERO */
.hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:80px;
}

.hero-text h1{
    font-size:48px;
    font-weight:700;
}

/* DESIGNATION WITH BULLET */
.designation{
    display:flex;
    flex-direction:column;
    gap:6px;
    margin-top:14px;
}

.designation span{
    position:relative;
    padding-left:18px;
    font-size:15px;
    font-weight:500;
    opacity:0.95;
}

.designation span::before{
    content:"•";
    position:absolute;
    left:0;
    top:0;
    color:#8ec5ff;
    font-size:22px;
    line-height:1;
}

.hero-desc{
    margin-top:22px;
    line-height:1.7;
    opacity:0.9;
}

.hero-image{
    text-align:center;
}

.hero-image img{
    width:280px;
    height:280px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid rgba(255,255,255,0.2);
}

/* SECTION */
section{
    margin-bottom:70px;
}

.section-title{
    font-size:28px;
    margin-bottom:25px;
    position:relative;
}

.section-title::after{
    content:'';
    width:60px;
    height:3px;
    background:#6a8dff;
    position:absolute;
    left:0;
    bottom:-8px;
}

/* ABOUT */
.about{
    max-width:850px;
    line-height:1.8;
    opacity:0.9;
}

/* SKILLS */
.skills{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:20px;
}

.skill-box{
    background:rgba(255,255,255,0.08);
    padding:20px;
    border-radius:12px;
    backdrop-filter:blur(6px);
}

/* CONTACT */
.contact{
    line-height:2;
    font-size:16px;
}

/* FOOTER */
footer{
    text-align:center;
    padding:20px;
    opacity:0.6;
    font-size:14px;
}

/* =====================
   MOBILE OPTIMIZATION
===================== */
@media(max-width:768px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-text{
        order:1;
    }

    .designation{
        align-items:center;
    }

    .hero-image{
        order:2;
        margin:28px 0;
    }

    .hero-desc{
        order:3;
    }

    .section-title::after{
        left:50%;
        transform:translateX(-50%);
    }
}
