*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: 'Segoe UI', sans-serif;
}

body{
background:#f5f7fb;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:white;
box-shadow:0 4px 20px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:1000;
}

/* LOGO */

.logo{
font-size:24px;
font-weight:700;
color:#0a4fd6;
letter-spacing:1px;
}

.logo span{
color:#222;
}

/* MENU */

.nav-links{
display:flex;
list-style:none;
gap:35px;
align-items:center;
}

.nav-links a{
text-decoration:none;
color:#333;
font-size:15px;
font-weight:500;
position:relative;
transition:0.3s;
}

.nav-links a:hover{
color:#0a4fd6;
}

/* hover underline */

.nav-links a::after{
content:"";
position:absolute;
width:0%;
height:2px;
bottom:-5px;
left:0;
background:#0a4fd6;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}

/* CTA BUTTON */

.nav-btn{
padding:10px 20px;
background:#0a4fd6;
color:white !important;
border-radius:30px;
font-size:14px;
font-weight:600;
}

.nav-btn:hover{
background:#083aa3;
}

/* MOBILE MENU ICON */

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle span{
height:3px;
width:25px;
background:#333;
margin:4px 0;
transition:0.3s;
}

/* MOBILE */

@media(max-width:900px){

.nav-links{
position:absolute;
top:70px;
left:-100%;
flex-direction:column;
background:white;
width:100%;
padding:30px 0;
gap:25px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.4s;
}

.nav-links.active{
left:0;
}

.menu-toggle{
display:flex;
}

}
