body {
    padding-top: 110px;
}

/* Primary Navbar */
.navbar-primary {
    background-color: #1a3d7a;
    color: #ffffff;
    padding: 8px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    transition: top 0.3s ease;
}

/* Secondary Navbar */
.Logo {
    width: 150px;
}
.navbar .navbar-expand-lg .navbar-secondary{
    top: 10px !important;
}
.navbar-secondary {
    background-color: #ffffff;
    padding: 10px 0;
    position: fixed;
    top: 50px;
    width: 100%;
    z-index: 1029;

    transition: top 0.3s ease;
}

.navbar-secondary .nav-link {
    color: #1a3d7a;
    font-weight: 500;
    padding: 8px 15px;

}

.navbar-secondary .nav-link:hover {
    color: #0056b3;
}
.nav-item a{
    font-weight: bold;
}
/* Center Align Links */
.navbar-collapse {
    justify-content: center;
    margin-left: 150px;
}

/* Dropdown on Hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;

}

.info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.info-bar div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-bar i {
    color: #ffffff;
}

.content {
    padding: 20px;
    height: 2000px;
}
.dropdown-menu{   
    background-color: #ffffff;
    border-color: #ffffff;
}
@media only screen and (max-width: 600px) {
    .navbar-primary {
        display: none;
    }
    .navbar-collapse {
        justify-content: center;
        margin-left: 0px !important;
        margin-right: 50px !important;
    }
    
}