*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
}

.navbar{
    background: #355F80;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo{
    height: 40px;
}

.nav-menu{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu li{
    position: relative;
}

.nav-menu li a{
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 5px;
    display: block;
    transition: 0.3s;
}

.nav-menu li a:hover{
    color: #E5EB14;
}

.nav-menu li a::after{
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: #E5EB14;
    transition: 0.3s;
}

.nav-menu li a:hover::after{
    width: 100%;
}

.dropdown-menu{
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    min-width: 260px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 999;
}

.dropdown-menu li{
    list-style: none;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child{
    border-bottom: none;
}

.dropdown-menu li a{
    color: #355F80 !important;
    padding: 12px 20px;
    font-size: 14px;
}

.dropdown-menu li a:hover{
    background: #f1f5f9;
}

.dropdown-sub{
    position: relative;
}

.submenu{
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
}

.submenu li{
    list-style: none;
}

.submenu li a{
    color: #355F80 !important;
    padding: 12px 20px;
}

.submenu li a:hover{
    background: #f1f5f9;
}

@media screen and (min-width: 993px){
    .dropdown:hover > .dropdown-menu{
        display: block;
    }
    .dropdown-sub:hover > .submenu{
        display: block;
    }
}

.menu-toggle{
    display: none;
    cursor: pointer;
}

.menu-toggle .bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

#mobile-menu.is-active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(2){
    opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
}

@media screen and (max-width: 992px){
    .navbar{
        padding: 15px 20px;
    }
    .menu-toggle{
        display: block;
        cursor: pointer;
    }
    .nav-menu{
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #355F80;
        overflow-y: auto;
        padding: 20px;
        gap: 0;
        z-index: 999;
    }
    .nav-menu.active{
        display: flex;
    }
    .nav-menu li{
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-menu li a{
        width: 100%;
        padding: 18px 10px;
        color: white !important;
        font-size: 18px;
        font-weight: 600;
    }
    .dropdown-menu{
        display: none;
        position: static;
        width: 100%;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 0;
        box-shadow: none;
        margin-top: 5px;
    }
    .dropdown-menu.show{
        display: block;
    }
    .dropdown-menu li{
        border-bottom: none;
    }
    .dropdown-menu li a{
        padding: 15px 20px;
        font-size: 16px;
        color: #E5EB14 !important;
        font-weight: 500;
    }
    .submenu{
        display: none;
        position: static;
        width: 100%;
        background: rgba(0, 0, 0, 0.15);
        box-shadow: none;
        border-radius: 0;
    }
    .submenu.show{
        display: block;
    }
    .submenu li a{
        padding-left: 40px;
        font-size: 15px;
        color: white !important;
    }
}