/* Mesh Gradient Background Animation */
.mesh-gradient-bg {
    /* Subtle corporate technology gradient combining dark blue, purple, and slate */
    background: linear-gradient(-45deg, #1e293b, #334155, #312e81, #1e1b4b);
    background-size: 400% 400%;
    animation: dynamicMesh 3s ease infinite;
}

@keyframes dynamicMesh {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
