@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(147, 51, 234, 0.3), 0 0 40px rgba(6, 182, 212, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(147, 51, 234, 0.5), 0 0 60px rgba(6, 182, 212, 0.4);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes expand {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

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

.animate-shimmer {
    animation: shimmer 2s linear infinite;
}

.animate-glow {
    animation: glow 3s ease-in-out infinite;
}

.animate-slide-in {
    animation: slideIn 0.8s ease-out;
}

.animate-rotate {
    animation: rotate 8s linear infinite;
}

.animate-expand {
    animation: expand 2s ease-in-out infinite;
}

.integration-container:hover .logo-container {
    transform: translateY(-5px);
    transition: transform 0.3s ease-out;
}

.logo-hover:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-out;
}

.connector-line {
    position: relative;
    overflow: hidden;
}

.connector-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 3s linear infinite;
}

.floating-orb {
    animation: float 4s ease-in-out infinite;
    filter: blur(1px);
}

.floating-orb:nth-child(2) {
    animation-delay: 1s;
}

.floating-orb:nth-child(3) {
    animation-delay: 2s;
}

.floating-orb:nth-child(4) {
    animation-delay: 0.5s;
}


