.hero-hubshare-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%;
    min-height: 521px;
}


.integration-canvas {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 50%;
    max-height: 521px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.hero-industry-background .fl-row-content-wrap {
    position: relative;
    z-index: 2;
}

.hero-hubshare-background .fl-heading-text {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-hubshare-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%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    color: white;
    font-size: 16px;
    z-index: 1;
}

.platform.hub {
    width: 70px !important;
    height: 70px !important;
    font-size: 30px !important;
    z-index: 2; /* above other platforms */
}

.platform.hub.animatePulse::after {
    animation: haloFade 0.8s ease-in-out 1;
}

.platform.hub.animatePulse {
    animation: pulseRing 0.8s ease-in-out 1;
}

.platform img {
    display: block;
}

.platform::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 15px;
    background: radial-gradient(circle, rgba(100,255,218,0.1) 0%, transparent 70%);
    animation: haloFade 8s ease-in-out infinite;
    z-index: -1;
    opacity: 0.5;
}

.platform.hub::after {
    background: radial-gradient(circle, rgba(100,255,218,0.15) 0%, transparent 70%);
    animation: haloFade 7s ease-in-out infinite;
}

@keyframes haloFade {
    0%, 100% { transform: scale(0.9); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes pulseRing {
    0%, 100% { box-shadow: 0 0 15px rgba(100, 255, 218, 0.1); }
    50% { box-shadow: 0 0 25px rgba(100, 255, 218, 0.2); }
}

.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(100,255,218,0.03), rgba(100,255,218,0.15), rgba(100,255,218,0.03));
    transform-origin: 0 0;
    z-index: -1;
    opacity: 0.5;
}

.file-particle {
    position: absolute;
    width: 14px;
    height: 18px;
    background: rgba(100, 255, 218, 0.6);
    border-radius: 3px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #0a192f;
    box-shadow: 0 0 5px rgba(100, 255, 218, 0.5);
}

.collaboration-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: rgba(255, 107, 107, 0.8);
    border-radius: 50%;
    font-size: 8px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: collaboratorPulse 2s ease-in-out infinite;
}

@keyframes collaboratorPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

.pulse-signal {
    position: absolute;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@keyframes pulseParticle {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0.8; }
}

@media (max-width: 768px) {
    .platform,
    .integration-canvas {
        display: none !important;
    }
}
