/* Force submenu background color */
.t4-navbar .t4-megamenu .dropdown-menu {
    background-color: #0a58ca !important; /* medium blue */
    border: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

/* Force submenu text color */
.t4-navbar .t4-megamenu .dropdown-menu a,
.t4-navbar .t4-megamenu .dropdown-menu .dropdown-item {
    color: #2ae405 !important; /* light green */
}

/* Force submenu hover/focus/active background + text color */
.t4-navbar .t4-megamenu .dropdown-menu a:hover,
.t4-navbar .t4-megamenu .dropdown-menu .dropdown-item:hover,
.t4-navbar .t4-megamenu .dropdown-menu .dropdown-item:focus,
.t4-navbar .t4-megamenu .dropdown-menu .dropdown-item:active {
    background-color: #2ae405 !important; /* light green */
    color: #fcf223 !important; /* bright yellow */
}

/* Optional: smooth transition effect */
.t4-navbar .t4-megamenu .dropdown-menu a,
.t4-navbar .t4-megamenu .dropdown-menu .dropdown-item {
    transition: background-color 0.3s ease, color 0.3s ease;
}
