/*nav{
    font-weight: bold;

}

.navbar-nav .nav-link.active {
    color: rgb(0, 0, 0);
    border-radius: 4px;
    border-bottom: 4px;
    border-color: black;
    border-style: inset;

}

.nav-item{
    margin-right: 8px;
}

a{
    text-decoration: none;
    color: black
}*/
/* Make Navbar Fixed on Top */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 20px;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Logo Resizing */
.navbar-brand img {
    max-height: 60px; /* Adjust as needed */
    width: auto; /* Maintain aspect ratio */
    transition: max-height 0.3s ease-in-out;
}

/* Adjust Logo Size on Scroll */
.scrolled .navbar-brand img {
    max-height: 45px; /* Smaller logo when scrolling */
}

/* Navbar Text & Buttons */
.navbar .nav-link,
.navbar .btn {
    font-weight: bold;
    color: rgba(7, 0, 0, 0.658); /* Initially White */
    transition: color 0.3s ease-in-out;
}

/* Navbar Style on Scroll */
.scrolled {
    background: rgba(255, 255, 255, 1); /* Solid White */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.scrolled .nav-link {
    color: black; /* Change Text to Black */
}

.scrolled .btn-outline-light {
    color: black;
    border-color: black;
}

.scrolled .btn-outline-light:hover {
    background: black;
    color: white;
}
