.navbar {
    background: #0040B8;
    min-height: 50px;
    padding: 4px 0;
    z-index: 1050;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.logo-img {
    height: 34px;
    width: auto;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.toggler-icon {
    width: 22px;
    height: 2px;
    background: #ffffff;
    position: relative;
}

.toggler-icon::before,
.toggler-icon::after {
    content: '';
    width: 22px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.toggler-icon::before { top: -6px; }
.toggler-icon::after  { bottom: -6px; }

.navbar-toggler[aria-expanded="true"] .toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.nav-link {
    color: #ffffff !important;
    font-size: 0.75rem;
    font-weight: normal;
    padding: 4px 4px !important;
    line-height: 1.4;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #1434A4;
        margin-top: 6px;
        padding: 10px;
        border-radius: 6px;
    }
    .nav-link {
        font-size: 0.9rem;
    }
}

html {
    scroll-behavior: smooth;
}

.hero {
    padding-top: 70px;
}