*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f4f7fc;
color:#333;
}

header{
background:linear-gradient(135deg,#6a11cb,#2575fc);
color:white;
padding-bottom:60px;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
}

.logo{
font-size:28px;
font-weight:700;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
text-decoration:none;
color:white;
font-weight:500;
}

.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:60px 10%;
flex-wrap:wrap;
}

.hero-text{
max-width:550px;
}

.hero-text h1{
font-size:60px;
margin-bottom:10px;
}

.hero-text h3{
margin-bottom:15px;
font-weight:400;
}

.hero-text p{
line-height:1.8;
margin-bottom:25px;
}

.btn{
display:inline-block;
padding:12px 28px;
background:white;
color:#2575fc;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

.hero-image img{
width:300px;
border-radius:50%;
border:5px solid white;
}

section{
padding:80px 10%;
}

section h2{
text-align:center;
margin-bottom:40px;
font-size:36px;
color:#2575fc;
}

#about p{
max-width:900px;
margin:auto;
text-align:center;
line-height:1.8;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.1);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card h3{
margin-bottom:10px;
color:#2575fc;
}

.skill{
margin-bottom:20px;
}

.skill span{
font-weight:600;
}

.bar{
height:12px;
background:#ddd;
border-radius:20px;
margin-top:8px;
}

.fill{
height:100%;
background:linear-gradient(to right,#6a11cb,#2575fc);
border-radius:20px;
}

#goals ul{
max-width:700px;
margin:auto;
line-height:2;
}

.quote{
font-size:24px;
text-align:center;
font-style:italic;
font-weight:500;
}

#contact{
text-align:center;
}

button{
margin-top:20px;
padding:12px 25px;
border:none;
background:#2575fc;
color:white;
border-radius:30px;
cursor:pointer;
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
}

@media(max-width:768px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-text h1{
font-size:42px;
}

.hero-image{
margin-top:30px;
}
}