/* Navbar Styling */
.navbar {
    background-color: #f5f5f5; /* Light background for logo visibility */
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), /* Subtle shadow */
                0 1px 3px rgba(0, 0, 0, 0.06); /* Softer secondary shadow */
}

.navbar-brand img {
    height: 60px; /* Adjusted for smaller screens */
    max-height: 100%;
    transition: height 0.3s ease;
}

.navbar-brand .brand-text {
    font-weight: 700;
    font-size: 1.2rem; /* Adjusted for mobile */
    color: #1a237e; /* Deep navy blue text */
    margin-left: 10px;
    white-space: nowrap; /* Prevent text wrapping */
}

.navbar-toggler {
    border: none; /* Cleaner look for toggler */
}

.navbar-nav .nav-item {
    margin-left: 10px;
    margin-right: 10px;
}

.nav-link {
    color: #1a237e; /* Deep navy blue links */
    font-weight: 500;
}

.nav-link:hover {
    color: #ffcc00; /* Gold hover effect */
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px; /* Smaller logo on mobile */
    }
    .navbar-brand .brand-text {
        font-size: 1rem; /* Smaller text size for mobile */
    }
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
        text-align:center;
    }
}
