#lang_form{
    margin-right: 25px;
}
/* Profile dropdown style */
.nav-item.dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 30px;
    transition: background-color 0.2s;
}

.nav-item.dropdown .nav-link:hover {
    background-color: #f1f1f1;
}

.nav-item.dropdown img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    min-width: 180px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.shadow-hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.shadow-hover:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}
.shadow-hover:hover .course_img img {
    transform: scale(1.05);
}
.card-title:hover {
    color: var(--bs-primary) !important;
}
