/* ===========================================
Nested Dropdown
=========================================== */

.dropdown-submenu{
    position:relative;
}

.dropdown-submenu>.dropdown-menu{

    top:0;

    left:100%;

    margin-top:-1px;

    display:none;

    background:var(--primary-color);

    min-width:260px;

}

.dropdown-submenu:hover>.dropdown-menu{

    display:block;

}

.dropdown-submenu>.dropdown-toggle::after{

    float:right;

    margin-top:8px;

    transform:rotate(-90deg);

}

header {
        background-color: var(--primary-color);
        padding: 10px 0;
    }

    .navbar .nav-item .nav-link {
        color: var(--tertiary-color);
        font-size: 16px;
        margin-right: 20px;
        font-weight: 600;
        transition: all .3s ease-in-out;
    }

    /* ========================================= */
    .navbar .dropdown-menu {
        background-color: var(--primary-color);
        border: none;
        border-radius: 0px;
    }

    .navbar .dropdown-menu .dropdown-item {
        color: var(--tertiary-color);
        border-bottom: 1px solid var(--tertiary-color);
    }

    .navbar .dropdown-menu .dropdown-item:focus {
        color: var(--secondary-color);
        background: var(--tertiary-color);
    }

    .navbar .dropdown-menu .dropdown-item:hover {
        color: var(--secondary-color);
    }

    /* ====================================== */
    header {
        background-color: var(--primary-color);
        padding: 5px 0;
        transition: all 0.3s ease-in-out;
    }

    header.shrink {
        padding: 0px 0;
    }

    header.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-in-out;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    /* ================================================ */
    .top-header {
        background-color: var(--secondary-color);
        color: var(--tertiary-color);
        font-size: 14px;
    }

    .top-header .info {
        padding: 10px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        gap: 15px;
    }

    .top-header .info-item {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .top-header .info-item a {
        color: var(--tertiary-color);
        text-decoration: none;
        font-weight: 500;
    }

    .top-header .info-item a:hover {
        text-decoration: underline;
    }

    .top-header i {
        font-size: 16px;
    }

    .top-header .social-links a {
        margin-left: 10px;
        font-size: 16px;
        color: var(--tertiary-color);
        transition: color 0.3s;
    }

    .top-header .social-links a:hover {
        color: #ffffff;
        /* or a highlight color */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .top-header .info {
            flex-direction: column;
            align-items: center;
        }

        .top-header .info-item {
            width: 100%;
            justify-content: center;
        }

        .top-header .social-links {
            justify-content: center;
        }
    }
