.hover-splash:hover {
    background-color: rgb(165 165 165 / 20%) !important;
}

.hover-shadow {
    transition: box-shadow 0.5s !important;
}

.hover-shadow:hover {
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%) !important;
}


.hover-img-scale img {
    transform: scale(1); 
    transition: transform 0.5s ease;
}

.hover-img-scale:hover img {
    transform: scale(1.05); 
}


.hover-scale {
    transition: transform 0.5s;
}

.hover-scale:hover {
    transform: scale(1.015);
}

.hover-slide-up {
    transition: transform 0.5s;
}

.hover-slide-up:hover {
    transform: translateY(-3px) !important;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px !important;
    bottom: 0;
    background-color: var(--theme-color);
    transition: all 0.25s ease-out;
}

.hover-underline-animation:hover::before {
    width: 100%;
}

.hover-bg-theme:hover {
    background-color: var(--theme-color) !important;
    color: white !important;

}

.hover-bg-theme:hover span {
    color: white !important;
}

.hover-bg-theme2:hover {
    background-color: var(--theme-color2) !important;
    color: white !important;

}

.hover-bg-theme2:hover span {
    color: white !important;
}

.hover-text-theme:hover {
    color: var(--theme-color) !important;
}

.hover-text-theme2:hover {
    color: var(--theme-color2) !important;
}

.hover-border {
    border-color: transparent !important;
    transition: all 0.3s;
}

.hover-border:hover {
    border-color: var(--theme-color) !important;
}

.hover-border-bottom {
    border-bottom: 3px solid transparent !important;
    transition: all 0.3s;
}

.hover-border-bottom:hover {
    border-bottom-color: var(--theme-color) !important;
}

.hover-shimmer:hover,
.shimmer {
    -webkit-mask: linear-gradient(-60deg, #000 30%, #0005, #000 70%) right/300% 100%;
    background-repeat: no-repeat;
    animation: shimmer 2.5s infinite;
}

.hover-shimmer:hover {
    animation: shimmer 0.7s forwards;
}