/* Main Nav CSS */
.navbar-nav>li{
    padding:0px 3px !important;
}

.navbar-nav > li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px; /* Thickness of the bar */
    width: 0;
    background-color:#f58000; /* Change color as needed */
    transition: width 0.4s ease; /* Slow left-to-right animation */
}

/* Expand bar on hover */
.navbar-nav > li:hover::after {
    width: 100%;
}
/* Login Logo */
.logowidth img {
    max-width: 100%!important;
    height: auto;
}