/* Header Start*/
#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #D9E9F0;
    box-shadow: 0 5px 15px rgba(3, 17, 57, 0.1);
    z-index:999;
    position: sticky;
    top:0;
    left:0;
}

.h4 {
    font-size: 36px;
    color: #222;
}

#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    color: #115B7B;
    transition: 0.3s ease;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #1D94C7;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

body {
    padding: 20px;
}
