html {
    scroll-behavior: smooth;
}

.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu a.nav-link:hover {
    color: #025A9A !important;
}

.mobile_menu {
    display: none !important;
}

.disabled-section {
    pointer-events: none; /* Prevents clicks */
    opacity: 0.5; /* Makes it look disabled */
    filter: grayscale(100%); /* Optional: Makes it look inactive */
}
.vibrant-section {
    animation: glow 1.5s infinite alternate;
    border: 2px solid #025A9A;
    box-shadow: 0 0 15px #025A9A;
    transition: all 0.3s ease-in-out;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px #025A9A, 0 0 20px #0280D1;
    }
    to {
        box-shadow: 0 0 20px #0280D1, 0 0 30px #02A3FF;
    }
}

@media (max-width: 1200px) {
    .mobile_menu {
        display: block !important;
    }
}