/* assets/css/style.css */

/* Define custom animations and global layout overrides */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* Utility Animations Placeholder */


/* Blob positioning */
.hero-blob {
    animation: blob-float 10s infinite linear alternate;
}

@keyframes blob-float {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(135deg, #f97316, #ea580c);
}

/* Infinite Scrolling Marquee */
.logo-marquee-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-marquee-container:hover .logo-marquee-content {
    animation-play-state: paused;
}

.logo-marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 40s linear infinite;
    gap: 4rem;
    padding: 0 2rem;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Process Specific Marquee */
.process-marquee-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.process-marquee-container:hover .process-marquee-content {
    animation-play-state: paused;
}

.process-marquee-content {
    display: flex;
    white-space: normal;
    /* Allow text wrapping inside cards */
    animation: scroll-process 60s linear infinite;
    /* Slower for reading */
    gap: 2.5rem;
    padding: 0 1.25rem;
}

.process-card-item {
    flex-shrink: 0;
    width: 320px;
    /* Fixed width for consistent scrolling */
}

@keyframes scroll-process {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hero Floating Animation */
.floating-anim {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-bounce-slow {
    animation: bounce 3s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-5%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}