@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu {
    border: none;
    border-radius: 8px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
    padding: 0; 
    overflow: hidden; 
    min-width: 220px; 
}

.dropdown-item {
    padding: 10px;
    font-size: 1rem; 
    color: #333;
    border-bottom: 1px solid #f1f1f1; 
    font-family: Nunito, sans-serif;
    line-height: 40px !important;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: #ed3443; 
    color: #fff !important; 
    text-decoration: none;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

.slide_nav.dropdown-toggle[aria-expanded="true"] {
    color: #ed3443 !important;
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 20px;
        min-width: auto;
    }

    .dropdown-item {
        color: #555; 
        padding: 10px 15px;
        border-bottom: none;
        font-size: 0.95rem;
    }

    .dropdown-item:hover, .dropdown-item:focus {
        background-color: transparent;
        color: #ed3443 !important; 
        padding-left: 15px; 
    }
    
    .dropdown-item i {
        color: #ed3443;
    }
    
    .slide_nav.dropdown-toggle {
        display: block;
        width: 100%;
    }
}
