/*.hover-card:hover {
    filter: brightness(1.1);
    transition: 0.3s ease;
}*/

section {
    width: 100%;
}


.hover-card:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.mud-carousel-item {
    position: relative;
}

.mud-carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Removed default dark overlay to allow banner component to handle it */
    z-index: 0;
}

/* Global scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #85193C;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4A102A;
}

