/*.hero-integration-background {*/
/*    background: linear-gradient(135deg,*/
/*    #1a1a2e 0%,*/
/*    #16213e 25%,*/
/*    #0f3460 50%,*/
/*    #533483 75%,*/
/*    #bd3794 100%) !important;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

.hero-integration-background {
    background: url('/wp-content/uploads/2025/06/Microsoft-annoucement-website-background-2000x1000-ver-2.png') no-repeat right bottom;
    background-size: cover;
    position: relative;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-integration-background {
        background-position: center bottom;
    }
}

.integration-canvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.hero-integration-background::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image:
            linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.hero-integration-background .fl-row-content-wrap {
    position: relative;
    z-index: 2;
}

.hero-integration-background .fl-heading-text {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-integration-background .fl-rich-text p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.network-node {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(100, 200, 255, 0.7) 50%,
    rgba(255, 100, 200, 0.5) 100%);
    box-shadow: 0 0 20px rgba(100, 200, 255, 0.6);
    transform: translate(-50%, -50%);
    /* Add transition for smooth animations */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.network-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(100, 200, 255, 0.6) 50%,
    rgba(255, 100, 200, 0.4) 100%);
    transform-origin: 0 50%;
    z-index: -1;
    /* Add transition for smooth animations */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}