/* Smooth Scrolling Enhancement */
html {
    scroll-behavior: smooth;
}

/* Ensure scroll padding for fixed header */
html {
    scroll-padding-top: 100px;
}

/* Menu active state styling */
.main-menu ul li a.active {
    color: #007cba;
    font-weight: bold;
}

/* Transition for smooth animations */
.main-menu ul li a {
    transition: all 0.3s ease;
}

.main-menu ul li a:hover {
    color: #005a87;
}
