*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f9ff;
    color:#333;
}

header{
    min-height:100vh;
    background:linear-gradient(135deg,#6c63ff,#00d4ff);
    color:white;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
}

.logo{
    font-size:30px;
    font-weight:700;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:white;
    font-weight:500;
}

.hero{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:80px;
    padding:80px 8%;
}

.hero-text{
    max-width:600px;
}

.hero-text h1{
    font-size:55px;
}

.hero-text h2{
    color:#ffe082;
    margin:10px 0;
}

.hero-text p{
    margin:20px 0;
    line-height:1.8;
}

.btn{
    display:inline-block;
    background:white;
    color:#6c63ff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
}

.hero-image img{
    width:350px;
    height:350px;
    object-fit:cover;
    border-radius:50%;
    border:8px solid white;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
}

.section{
    padding:80px 10%;
}

.section h2{
    text-align:center;
    margin-bottom:50px;
    font-size:40px;
    color:#6c63ff;
}

.card{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.timeline{
    display:grid;
    gap:20px;
}

.timeline-item{
    background:white;
    padding:25px;
    border-left:6px solid #6c63ff;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.skills-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.skill{
    background:white;
    text-align:center;
    padding:25px;
    border-radius:15px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.skill:hover{
    transform:translateY(-10px);
}

.contact-card{
    max-width:700px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-card p{
    margin:15px 0;
}

footer{
    background:#6c63ff;
    color:white;
    text-align:center;
    padding:25px;
}

@media(max-width:768px){

.hero{
    flex-direction:column-reverse;
    text-align:center;
}

.hero-text h1{
    font-size:40px;
}

.hero-image img{
    width:250px;
    height:250px;
}

nav{
    flex-direction:column;
    gap:20px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}
}