/* 
* Logo Visibility Enhancement
* Improves the visibility of the RapidIT logo in the navbar
*/

/* Enhanced Logo Visibility */
.navbar-brand img {
    filter: brightness(1.2) contrast(1.1); /* Increase brightness and contrast */
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3)); /* Add subtle white glow */
    opacity: 1 !important; /* Ensure full opacity */
}

/* Add subtle animation on hover */
.navbar-brand:hover img {
    filter: brightness(1.3) contrast(1.15) drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* Ensure logo maintains visibility when header becomes sticky */
.header-area.sticky .navbar-brand img {
    filter: brightness(1.2) contrast(1.1);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
}

/* Responsive adjustments to maintain visibility */
@media (max-width: 767.98px) {
    .navbar-brand img {
        filter: brightness(1.25) contrast(1.15); /* Slightly brighter on mobile */
    }
}
