/*.hero-capabilities-background {*/
/*    background: linear-gradient(135deg,*/
/*    #1a1a2e 0%,*/
/*    #16213e 25%,*/
/*    #0f3460 50%,*/
/*    #533483 75%,*/
/*    #bd3794 100%) !important;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

.hero-capabilities-background {
    background: url('/wp-content/uploads/2025/06/Microsoft-annoucement-website-background-2000x1000-ver-2.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.capabilities-canvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

.hero-capabilities-background::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image:
            radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
            radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 40px 40px, 100px 100px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.hero-capabilities-background .fl-row-content-wrap {
    position: relative;
    z-index: 2;
}

.hero-capabilities-background .fl-heading-text {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-capabilities-background .fl-rich-text p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.capability-icon {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(200, 100, 255, 0.7) 50%,
    rgba(0, 200, 255, 0.5) 100%);
    box-shadow: 0 0 20px rgba(200, 100, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #0a192f;
    font-weight: bold;
    transform-origin: center center;
    opacity: 0;
    animation: fadeInOut 6s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

.orbit-ring {
    display: none;
}

.fast-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(200, 100, 255, 0.9);
    box-shadow: 0 0 8px rgba(200, 100, 255, 0.8);
}

.customer-comments{
    display: none;
}


@media (max-width: 768px) {
    .capability-icon {
        display: none !important;
    }
}