/*Targets the Home Button Color*/
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: white;
    background-color:#163961 !important;
}
/*Targets the Nav Tab colors */
.nav {
    --bs-nav-link-color: #163961 !important;
    --bs-nav-link-hover-color: rgb(191, 137, 0)!important;
}
/*Targets the Text color of main page heading*/
header{
    color: rgb(191, 137, 0);
}
/* Targets the dropdown menu button */
.dropdown-menu{
    --bs-dropdown-link-active-bg: #163961 !important;
}

/* Navigation Drop Menu */
ul ul{
    list-style: none;
}
.nav-style{
    color:  #163961;
    text-decoration: none;
    font-size: 20px;
}
ul li:hover ul.dropdown{
    display: block;
}

/* Year Variable */
:root{
    --current-year: "2026";
}
.year::after {
    content: var(--current-year);
}