:root {
    /* Light Theme Colors */
    --color-primary: #00C4B4;
    /* Teal from image */
    --color-accent: #2DD4BF;
    /* Lighter teal */
    --color-secondary: #0B3D70;
    /* Dark blue for contrast text */
    --color-background: #F8FAFC;
    /* Very light slate/white */
    --color-surface: #FFFFFF;
    /* Pure white for cards */
    --color-text-main: #0F172A;
    /* Dark slate for main text */
    --color-text-muted: #64748B;
    /* Muted slate for secondary text */
    --color-primary-text: #007A70;
    /* Darker teal for text (Contrast > 4.5:1) */
    --color-accent-text: #0E7490;
    /* Darker cyan for text */

    --font-sans: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* Utilities */
.glow-effect {
    box-shadow: 0 4px 20px rgba(0, 196, 180, 0.25);
}

.glow-effect:hover {
    box-shadow: 0 8px 30px rgba(0, 196, 180, 0.4);
}

/* Glassmorphism utility - Light Mode */
.glass {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-radius: 0.75rem;
}

/* Soft Shadow for Cards */
.shadow-soft {
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Start hidden */
}

/* Infinite Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

.animate-scroll {
    animation: scroll 30s linear infinite;
}

.carousel-container:hover .animate-scroll {
    animation-play-state: paused;
}

/* Neon Pulse Animation for Hero Text */
@keyframes neonPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 2px rgba(6, 192, 179, 0.1));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(6, 192, 179, 0.5));
    }
}

.animate-neon-pulse {
    animation: neonPulse 3s ease-in-out infinite;
}

/* Text Loop Animation */
@keyframes textLoop {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    5% {
        opacity: 1;
        transform: translateY(0);
    }

    28% {
        opacity: 1;
        transform: translateY(0);
    }

    33% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
    }
}

.animate-text-loop {
    animation: textLoop 7.5s linear infinite;
    opacity: 0;
    /* Start hidden */
}

/* Scrollbar Hide Utility */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom Range Slider */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #E2E8F0;
    outline: none;
    margin: 10px 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 4px solid #0F172A;
    cursor: pointer;
    transition: transform 0.1s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 4px solid #0F172A;
    cursor: pointer;
    transition: transform 0.1s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


/* Dark Theme Slider */
.dark-slider {
    background: rgba(255, 255, 255, 0.1);
}

.dark-slider::-webkit-slider-thumb {
    background: #00C4B4;
    border: 4px solid #0F172A;
    box-shadow: 0 0 15px rgba(0, 196, 180, 0.5);
}

.dark-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(0, 196, 180, 0.8);
}

.dark-slider::-moz-range-thumb {
    background: #00C4B4;
    border: 4px solid #0F172A;
    box-shadow: 0 0 15px rgba(0, 196, 180, 0.5);
}

.dark-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(0, 196, 180, 0.8);
}