.navbar-brands{
    font-weight: 500;
    
}

.navbar-toggler {
    border: none;
    font-size: 1.25rem;
}

.mavbar-toggler:focus, .btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: #666777;
    font-weight: 500;
    position: relative;
    margin: 2px;
}



.nav-link:hover, .nav-link.active {
    color: #000;
    width: 100%;
    visibility: visible;
    border-bottom: 2px solid #044f60;
    margin: 2px;
}

.navbar {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 
            0 4px 12px rgba(0, 0, 0, 0.05);
    height: 70px;
}

@media (min-width: 991px) {
  
    
    .nav-link:hover::before, .nav-link:active::before{
        width: 100%;
        visibility: visible;
    } 
}

/* ✅ Small Top Bar */
.top-bar {
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: bold;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
    transition: transform 0.3s ease-in-out;
}

/* ✅ Adjust Navbar Position */
.custom-navbar {
    position: fixed;
    top: 40px; /* Matches top-bar height */
    width: 100%;
    transition: top 0.3s ease-in-out;
}

/* ✅ Hide the top bar */
.top-bar.hidden {
    transform: translateY(-100%);
}

/* ✅ Move navbar to top when top bar is hidden */
.custom-navbar.top-fixed {
    top: 0;
}

/* ✅ Flexbox for layout */
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ✅ Spacing for info section */
.top-bar .top-info span {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
}

/* ✅ Icons styling */
.top-bar .top-info i {
    color: #044f60;
    margin-right: 5px;
}

.top-bar .top-social a {
    color: #044f60;
    font-size: 16px;
    margin-left: 12px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.top-bar .top-social a:hover {
    color: #0056b3;
}


.header_logo {
    max-height: 70px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure it scales properly */
}
@media screen and (max-width: 991px) {
    .header_logo {
        max-height: 50px; 
    }
}

