.custom-shadow-glow {
    box-shadow: 0 10px 30px -10px rgba(35, 41, 139, 0.15), 0 1px 3px rgba(35, 41, 139, 0.05);
}

.orbit-shadow {
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
}

/* Custom hover scrollbars or overlays if needed */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
}

/* Invisible bridge to keep dropdown open during gap hover */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    height: 24px;
    background: transparent;
    z-index: -1;
}

.dropdown-trigger:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

@keyframes verticalSlide {

    0%,
    20% {
        transform: translateY(0);
    }

    25%,
    45% {
        transform: translateY(-25%);
    }

    50%,
    70% {
        transform: translateY(-50%);
    }

    75%,
    95% {
        transform: translateY(-75%);
    }

    100% {
        transform: translateY(0);
    }
}

.animate-vertical-slide {
    animation: verticalSlide 12s cubic-bezier(0.85, 0, 0.15, 1) infinite;
}

/* Custom Styling for the range slider track and thumb */
.config-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 9999px;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 0%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
    outline: none;
    transition: background 0.3s ease;
}

.config-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    border-radius: 9999px;
}

.config-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #23298B;
    /* matches background color */
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin-top: -8px;
    /* Center aligned */
    transition: transform 0.15s ease, background-color 0.15s;
}

.config-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.config-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #23298B;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.config-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

/* Continuous Infinite Marquee Carousel Animation */
@keyframes marqueeSlide {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee-slide {
    animation: marqueeSlide 28s linear infinite;
}