/* ===========================
RESET
=========================== */

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

html{

    scroll-behavior:smooth;

}

body{

    background:#EAF5FF;

    font-family:'Inter',sans-serif;

    color:#1D3557;

}

/* ===========================
NAVIGATION
=========================== */

nav{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:75px;

    background:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 8%;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

    z-index:999;

}

.logo{

    font-family:'Space Grotesk',sans-serif;

    font-size:30px;

    font-weight:700;

    color:#1E4E8C;

}

nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav ul li a{

    text-decoration:none;

    color:#56718D;

    font-size:17px;

    font-weight:500;

    position:relative;

    transition:.3s;

}

nav ul li a::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    background:#3B82F6;

    bottom:-6px;

    left:0;

    transition:.3s;

}

nav ul li a:hover::after{

    width:100%;

}

nav ul li a.active{

    font-weight:700;

    color:#1E4E8C;

}

nav ul li a.active::after{

    width:100%;

}

/* ===========================
HERO
=========================== */

.hero{

    width:100%;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 30px 50px;

}

.profile{

    width:170px;

    height:170px;

    border-radius:50%;

    object-fit:cover;

    border:6px solid white;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

    margin-bottom:35px;

    transition:.4s;

}

.profile:hover{

    transform:scale(1.05);

}

.hero h1{

    font-family:'Space Grotesk',sans-serif;

    font-size:62px;

    line-height:1.15;

    font-weight:700;

    color:#1C4D86;

    max-width:900px;

}

.hero p{

    max-width:760px;

    margin-top:35px;

    font-size:20px;

    color:#5A708A;

    line-height:1.8;

}

/* ===========================
SOCIAL ICONS
=========================== */

.social{

    margin-top:50px;

    display:flex;

    gap:22px;

}

.social a{

    width:52px;

    height:52px;

    background:white;

    color:#184A90;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    text-decoration:none;

    transition:.35s;

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

}

.social a:hover{

    background:#2F6FED;

    color:white;

    transform:translateY(-5px);

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:900px){

nav{

    padding:0 25px;

}

nav ul{

    gap:18px;

}

.hero h1{

    font-size:46px;

}

.hero p{

    font-size:18px;

}

.profile{

    width:140px;

    height:140px;

}

}

@media(max-width:650px){

nav{

    flex-direction:column;

    height:auto;

    padding:20px;

}

nav ul{

    margin-top:15px;

    flex-wrap:wrap;

    justify-content:center;

}

.hero{

    padding-top:180px;

}

.hero h1{

    font-size:36px;

}

.hero p{

    font-size:16px;

}

}