
:root {
  --omnora-blue: #002d5b;
  --omnora-grey: #666666;
}

.navbar { 
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.8);
    border-bottom: 1px solid #f8f9fa; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-link { color: var(--omnora-grey) !important; font-size: 0.875rem; font-weight: 500; margin: 0 15px; position: relative; left: -24px; }
.nav-link:hover { color: var(--omnora-blue) !important; }
.contact
{
    margin-left: auto;
}
.navbar-toggler
{
    border: none;
}
.navbar-toggler:focus
{
    outline: none;
    box-shadow: none;
}
.navbar-toggler-icon
{
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28128, 128, 128, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-image: var(--bs-navbar-toggler-icon-bg);
    border: 0;

}
@media all and (min-width: 768px) {
    .nav-link 
    {
        position: relative;
        
        /* right: 40%; */
    }
}
@media all and (max-width: 768px) {
    .nav-link 
    {
        /* background-color: white; */
        display: flex;
        justify-content: center;
        align-items: center;
        left: 0 !important;
    }
    .contact
    {
        margin-left: 0;
        text-align: center;
    }
}

/* active link styling */
.nav-link.active {
    color: var(--omnora-blue) !important;
}

.nav-link.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--omnora-blue);
    position: absolute;
    bottom: -4px;
    left: 0;
}