.hero-industry-background {
    background: url('/wp-content/uploads/2025/06/Microsoft-annoucement-website-background-2000x1000-ver-2.png') no-repeat center bottom;
    background-size: cover;
    position: relative;
    overflow: hidden;
    width: 100%;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.integration-canvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.hero-industry-background .fl-row-content-wrap {
    position: relative;
    z-index: 2;
}

.hero-industry-background .fl-heading-text {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-industry-background .fl-rich-text p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.platform {
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    z-index: 0;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.platform {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 30%, rgba(0,0,0,0.4) 100%) !important;
    box-shadow:
            0 0 4px 1px rgba(255, 255, 255, 0.1),
            0 0 10px 3px rgba(255, 255, 255, 0.03) !important;
}

.platform::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: haloFade 4s ease-in-out infinite;
    z-index: -1;
    opacity: 0.7;
}

.platform.hub::after {
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
    animation: haloFade 3.5s ease-in-out infinite;
}

@keyframes haloFade {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.platform.hub {
    width: 65px !important;
    height: 65px !important;
    font-size: 30px !important;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 30%, rgba(0,0,0,0.5) 100%) !important;
    box-shadow:
            0 0 6px 2px rgba(255, 255, 255, 0.3),
            0 0 15px 6px rgba(255, 255, 255, 0.15),
            0 0 25px 12px rgba(255, 255, 255, 0.08) !important;
}

@keyframes pulseRing {
    0%, 100% {
        box-shadow:
                0 0 6px 2px rgba(255, 255, 255, 0.3),
                0 0 15px 6px rgba(255, 255, 255, 0.15),
                0 0 25px 12px rgba(255, 255, 255, 0.08);
    }
    50% {
        box-shadow:
                0 0 8px 3px rgba(255, 255, 255, 0.4),
                0 0 20px 8px rgba(255, 255, 255, 0.2),
                0 0 35px 15px rgba(255, 255, 255, 0.1);
    }
}

.platform.hub {
    animation: pulseRing 4s ease-in-out infinite;
}

.platform i {
    font-size: calc(var(--platform-height, 30px) * 0.7) !important;
    opacity: 0.8;
}

.platform.hub i {
    font-size: calc(var(--platform-height, 60px) * 0.6) !important;
}

.network-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    transform-origin: 0 0;
    z-index: -1;
    opacity: 0.5;
}

@keyframes glowMove {
    0% {
        left: -40%;
    }
    100% {
        left: 100%;
    }
}

.fast-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #58bbbf;
    box-shadow:
            0 0 2px #58bbbf,
            0 0 4px #58bbbf,
            0 0 6px #58bbbf;
    opacity: 0.6;
    pointer-events: none;
    animation: pulseParticle 2s infinite alternate;
}

@keyframes pulseParticle {
    0% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .platform {
        display: none !important;
    }
    .network-line {
        display: none !important;
    }
}