body {
    font-family: 'Poppins', sans-serif;
}

.navbar-brand img {
    transition: transform 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    color: #f0a500 !important;
}

.dropdown-menu {
    transition: all 0.3s ease;
}