*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    background:#eef3f8;
    color:#222;
    line-height:1.7;
}

.hero{

    position:relative;

    background:
    linear-gradient(rgba(10,40,90,.75),rgba(10,40,90,.75)),
    /*url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1800");*/
    url("https://statics.mylandingpages.co/static/aaanxdmf26c522mpaaapycm22qmuab44/image/c7bb22cd30404053a1af01f90b21f0f7.webp");

    background-size:cover;
    background-position:center;

    color:white;

    padding:80px 10%;
}

.hero-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:40px;

}

.hero img{

    width:220px;

    height:220px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid white;

}

.hero h1{

    font-size:3rem;

    font-weight:800;

}

.hero h2{

    margin-top:10px;

    color:#b8e3ff;

}

.buttons{

    margin-top:30px;

}

.btn{

    display:inline-block;

    text-decoration:none;

    background:#28a4ff;

    color:white;

    padding:12px 24px;

    border-radius:6px;

    margin-right:12px;

    transition:.3s;

}

.btn:hover{

    transform:translateY(-2px);

}

.outline{

    background:transparent;

    border:2px solid white;

}

.container{

    max-width:1100px;

    margin:auto;

    padding:50px 20px;

}

section{

    margin-bottom:50px;

}

section h3{

    border-left:6px solid #26a9ff;

    padding-left:12px;

    margin-bottom:20px;

    color:#104d87;

}

.card{

    background:white;

    padding:20px;

    border-radius:10px;

    margin-bottom:15px;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}

.skill{

    background:white;

    padding:20px;

    border-radius:10px;

    box-shadow:0 2px 8px rgba(0,0,0,.08);

}

ul{

    padding-left:22px;

}

footer{

    text-align:center;

    padding:30px;

    background:#0f3256;

    color:white;

}

@media(max-width:768px){

.hero-content{

flex-direction:column-reverse;

text-align:center;

}

.hero h1{

font-size:2.2rem;

}

.hero img{

width:180px;

height:180px;

}

}
