/* Global Styles for Production Digital 360 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #07070a;
}
::-webkit-scrollbar-thumb {
    background: #1f1f2e;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0052ff;
}

/* Cinematic filter for the premium look */
.cinematic-filter img {
    filter: brightness(0.85) contrast(1.1) saturate(1.05);
    transition: filter 0.5s ease;
}

.cinematic-filter:hover img {
    filter: brightness(0.95) contrast(1.15) saturate(1.1);
}

/* Infinite loop marquee animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Styled client logo inside loop */
.client-logo {
    height: 52px;
    width: auto;
    min-width: 130px;
    object-fit: contain;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.03);
    padding: 6px 12px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

/* Gallery slide transitions */
.gallery-slide {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.02);
}

.gallery-slide.opacity-100 {
    transform: scale(1);
}

/* Custom radial gradient backgrounds */
.bg-radial-dark {
    background: radial-gradient(circle at center, #0f0f15 0%, #07070a 100%);
}
