﻿.av-navbar {
    min-height: 90px;
    border-bottom: 1px solid var(--border);
    background: white;
}

.logo {
    height: 58px;
}

.brand-title {
    font-family: 'Poppins',sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.brand-subtitle {
    font-size: .85rem;
    color: var(--gray);
}

.nav-link {
    font-weight: 600;
    margin-left: 24px;
}

    .nav-link:hover {
        color: var(--primary) !important;
    }
.navbar .nav-link {
    position: relative;
    font-weight: 500;
    transition: color .25s ease;
}

    .navbar .nav-link.active {
        color: #A10F3C;
        font-weight: 700;
    }

        .navbar .nav-link.active::after {
            content: "";
            position: absolute;
            left: 10%;
            bottom: -6px;
            width: 80%;
            height: 3px;
            background: #A10F3C;
            border-radius: 999px;
        }
@media (max-width: 991.98px) {

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,.08);
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: .75rem 0;
    }

    .navbar-nav .btn-avtax {
        width: 100%;
        margin-top: 1rem;
    }
}
@media (max-width: 991.98px) {

    .navbar .nav-link.active::after {
        display: none;
    }
}