@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');


html {
    font-size: 21px;
}

/* Webkit Scrollbar Styling for Light Mode Premium Aesthetic */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}

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

body {
    background-color: #f8fafc;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
}

/* Glassmorphic Panel for Light Backgrounds */
.glass-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-panel-hover:hover {
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.06);
}

/* Neon/Indigo Glow Text and Buttons */
.indigo-glow {
    text-shadow: 0 0 10px rgba(79, 70, 229, 0.15);
}

.btn-indigo-glow:hover {
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.35), 0 0 40px rgba(6, 182, 212, 0.1);
}

/* Custom float animation */
@keyframes float {

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

    50% {
        transform: translateY(-6px);
    }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

/* Custom pulse glow for light mode */
@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.45;
    }
}

.animate-pulse-glow {
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Marquee Infinite Loop Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation: marquee 25s linear infinite;
    width: max-content;
}

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

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

/* Utility to hide scrollbars on horizontally scrolling carousels */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}