/* Navbar Styles */

.navbar {
    background: linear-gradient(90deg, #fff, #fffbe6);
}

.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-size: 1rem;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.nav-link i {
    margin-right: 5px;
}

.nav-link:hover {
    color: rgb(186, 8, 8) !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: rgb(186, 8, 8) !important;
    font-weight: 600;
    display: inline-block;
    border-bottom: 2px solid rgb(186, 8, 8);
}

@media (max-width: 920px) {
    .nav-link.active {
        border-bottom: none;
    }
}