.navbar-nav .nav-link:not(.hero-btn) {
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
    margin: 0 0.3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.navbar-nav .nav-link:not(.hero-btn):hover {
    background: #0c2340;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(12, 35, 64, 0.2);
}

.navbar-nav .nav-link:not(.hero-btn)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:not(.hero-btn):hover::after {
    width: 80%;
}

.navbar-nav .hero-btn {
    background: #0c2340;
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.navbar-nav .hero-btn:hover {
    background: #0a1b30;
    transform: none;
}

.navbar-brand d-inline-flex {
    align-items: center;
}
.logo-svg {
    width: 32px !important;
    height: 32px !important;
}

.logo-text {
    font-family: "Figtree", ui-sans-serif, system-ui, sans-serif,
        Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji !important;
}

.nav-item a {
    text-decoration: none !important;
}
