.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.hero-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.flow-chart-line {
    stroke: #60a5fa;
    stroke-width: 2;
    stroke-dasharray: 5,5;
    animation: dash 2s linear infinite;
}
@keyframes dash {
    to {
        stroke-dashoffset: -10;
    }
}

/* Logo Slider Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.animate-scroll {
    animation: scroll 30s linear infinite;
}

.logo-slider-container:hover .animate-scroll {
    animation-play-state: paused;
}

.logo-slider {
    width: 200%; /* Double width to accommodate duplicate set */
}