.fixed-desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
}

.fixed-desktop-header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fixed-desktop-header.scrolled .menu-item > a {
    color: #000;
}

.fixed-desktop-header.scrolled ul li a.actived,
.fixed-desktop-header.scrolled .menu-item.dropdown.actived > a {
    color: #000;
    font-weight: bold;
    font-size: 18px;
}

.desktop-header ul li.active a.dropdown-toggle,
.desktop-header ul li.dropdown.active ul.dropdown-menu li a {
    font-weight: 300;
    font-size: 16px;
}

.desktop-header ul li.dropdown.active ul.dropdown-menu li.active a {
    background-color: #f0f0f0;
    font-weight: bold;
}

.desktop-header .menu-item.dropdown.actived > a,
.desktop-header ul li.active a {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.desktop-header ul li:hover a {
    color: white;
    font-weight: 400;
    font-size: 18px;
}

.mil-logo img {
    height: 100%;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

.mil-footer-menu {
    margin-bottom: unset;
}

.mil-footer-menu ul li a {
    font-size: 22px;
}

.mil-footer-menu ul li {
    margin-bottom: 20px;
}

.mil-footer-menu .child-menu {
    margin-top: 10px;
    padding-left: 1.5rem;
}

.mil-footer-menu .child-menu li {
    margin-bottom: 4px;
    list-style: disc;
    color: white;
}

.mil-footer-menu .child-menu li a:hover{
    color: rgb(76, 175, 80);
}

.mil-footer-menu .child-menu a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

.mil-footer-menu .child-menu a:hover {
    color: #333;
}

/* Desktop style */
@media (min-width: 992px) {
    .mil-menu-frame,
    .mil-frame-top {
        display: none;
    }

    .desktop-header {
        /* position: relative; */
        padding: 40px 40px;
        background-color: rgba(0, 40, 25, 0.65);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        height: 70px;
        z-index: 100;
    }

    /* .mil-banner{
        padding-top: 80px;
    } */

    .mil-frame {
        margin-top: 160px;
    }

    .mil-logo {
        /* position: absolute; */
        left: 40px;
        top: 50%;
        transform: translateY(-50%);
        height: 70px;
        display: flex;
        align-items: center;
    }

    .desktop-menu {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .menu-list {
        display: flex;
        gap: 30px;
        list-style: none;
        padding-left: 0;
        margin: 0;
        padding: 0;
    }

    .menu-list li {
        list-style: none;
    }

    .menu-item > a {
        text-decoration: none;
        /* color: #333; */
        color: white;
        font-weight: 300;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: color 0.3s ease, font-weight 0.3s ease, font-size 0.3s ease;
    }

    .menu-item > a:hover {
        color: #000;
    }

    .chevron {
        font-size: 10px;
    }

    .desktop-menu .dropdown {
        position: relative;
    }

    .desktop-menu .dropdown-menu {
        display: none;
        position: absolute;
        top: 35px;
        left: 0;
        background: #fff !important;
        padding: 10px 0;
        min-width: 160px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        z-index: 9999;
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .desktop-menu .dropdown-menu li a {
        display: block;
        padding: 10px 20px;
        color: #333 !important;
        text-decoration: none;
        white-space: nowrap;
    }

    .desktop-menu .dropdown-menu li a:hover {
        background-color: #f0f0f0;
    }

    .desktop-menu .dropdown.active .dropdown-menu {
        display: block;
    }

    footer .mil-logo {
        position: unset;
    }
}

/* Hide desktop header on mobile */
@media (max-width: 991px) {
    .desktop-header {
        display: none;
    }
}
