a {
    text-decoration: none;
}

.logo {
    font-weight: bold;
    color: black;
}

.menu-btn {
    width: 25px;
    cursor: pointer;
}

.mega-menu {
    padding: 40px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.menu-title {
    font-size: 13px;
    font-weight: 600;
    color: #bcc2c7;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.menu-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.menu-icon {
    width: 40px;
    height: 40px;
    background: #eef3ff;
    color: #b60101;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}

.menu-text h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #e7f1ff;
}

.menu-text p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #6c757d;
}

.badge-custom {
    font-size: 10px;
    background: #e7f1ff;
    color: #0d6efd;
    margin-left: 8px;
}

.badge-orange {
    background: #ffe5d0;
    color: #ff6600;
    font-size: 10px;
    margin-left: 8px;
}

.highlight-box {
    background: #eef3ff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.highlight-box h5 {
    font-weight: bold;
}


/* OVERLAY */

.nav_jl {
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    padding: 2em;
    width: calc(100% - 4em);
    height: calc(100vh - 4em);
    transform: scaleX(0);
    transform-origin: right;
    z-index: 1000;
    display: block;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.active {
    animation: slide-menu 0.6s forwards;
}

.close-button {
    width: 25px;
    float: right;
    cursor: pointer;
    opacity: 0;
}

.active .close-button {
    animation: show-x 0.5s 0.5s forwards;
}

.nav_jl ul {
    list-style: none;
    margin: 10% auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, auto);
    width: 80%;
}

.nav_jl ul li {
    opacity: 0;
}

.nav_jl ul a {
    color: white;
    font-size: 1.4em;
    font-weight: bold;
}

.nav_jl ul span {
    display: block;
    color: gray;
    font-size: .75em;
    margin-top: 10px;
}

.active li:nth-child(1) {
    animation: item .5s forwards .6s;
}

.active li:nth-child(2) {
    animation: item .5s forwards .8s;
}

.active li:nth-child(3) {
    animation: item .5s forwards 1s;
}

.active li:nth-child(4) {
    animation: item .5s forwards 1.2s;
}

@keyframes slide-menu {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes show-x {
    to {
        opacity: 1;
    }
}

@keyframes item {
    from {
        transform: translateY(50%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* MOBILE */

@media (max-width: 768px) {
    .nav_jl ul {
        grid-template-columns: 1fr;
        text-align: center;
    }
}