.liquid-blob {
    position: fixed;
    width: 800px;
    height: 800px;
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.project-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card:hover {
    transform: scale(1.02);
}

.project-card img {
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-card:hover img {
    transform: scale(1.1);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(38, 178, 231, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(38, 178, 231, 0);
    }
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.animate-scroll-left {
    animation: scrollLeft 35s linear infinite;
}

.pause {
    animation-play-state: paused !important;
}

.animate-pulse-slow {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .3;
    }
}