/* Custom styles & luxury gradients */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

/* Dynamic background glowing system */
.bg-radial-dark {
    background: radial-gradient(circle at center, rgba(15,15,25,0.8) 0%, rgba(7,7,10,1) 100%);
}

/* Active tab filter glows */
.active-tab {
    background-color: rgba(0, 82, 255, 0.15) !important;
    border-color: rgba(0, 82, 255, 0.4) !important;
    box-shadow: 0 0 25px rgba(0, 82, 255, 0.25) !important;
    color: #ffffff !important;
}

/* Premium infinite horizontal logo marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-content {
    animation: marquee 28s linear infinite;
}

/* Hover over logo marquee pauses and highlights */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.client-logo {
    height: 48px;
    width: auto;
    object-contain: fit;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.02);
    padding: 6px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-logo:hover {
    transform: scale(1.15);
    border-color: rgba(0, 82, 255, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 82, 255, 0.2);
}

/* Glassmorphic elements */
.backdrop-blur-xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

/* Hidden elements clean transition */
.hidden {
    display: none !important;
}

/* Custom interactive input range customization */
input[type="range"]::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.15);
    height: 4px;
    border-radius: 999px;
}

input[type="range"]::-webkit-slider-thumb {
    margin-top: -4px;
    background: #0052ff;
    border: 1px solid #ffffff;
    height: 12px;
    width: 12px;
    border-radius: 999px;
    appearance: none;
    box-shadow: 0 0 10px rgba(0, 82, 255, 0.5);
}

/* Custom styles for filter transition */
.feature-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
