/* 
 * Dropdown Menu Circle Fix
 * Removes the unexpected circle that appears at the bottom of the dropdown menu
 */

/* Remove any unexpected elements */
.navbar-nav .dropdown-menu:after,
.navbar-nav .dropdown-menu::after {
    display: none !important;
}

/* Remove any unexpected elements in the services-menu */
.navbar-nav .dropdown-menu .services-menu:after,
.navbar-nav .dropdown-menu .services-menu::after {
    display: none !important;
}

/* Ensure clean presentation at the bottom of the dropdown */
.navbar-nav .dropdown-menu {
    overflow: hidden !important;
}

/* Remove any potential list markers */
.navbar-nav .dropdown-menu ul,
.navbar-nav .dropdown-menu li {
    list-style-type: none !important;
}

/* Clean up any circular or dot elements */
.navbar-nav .dropdown-menu .circle,
.navbar-nav .dropdown-menu .dot {
    display: none !important;
}

/* Fix any bottom margin issues */
.navbar-nav .dropdown-menu .services-category:last-child,
.navbar-nav .dropdown-menu .services-list:last-child,
.navbar-nav .dropdown-menu .services-list:last-child li:last-child,
.navbar-nav .dropdown-menu .services-list:last-child li:last-child a {
    margin-bottom: 0 !important;
    padding-bottom: 8px !important;
}
