/* Premium Mesh Hero Style */
.bg-soft-lavender-mesh {
    background: linear-gradient(135deg, #f3e5f5 0%, #ffffff 100%) !important;
    position: relative;
    overflow: hidden;
}

.mesh-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: orbDrift 35s infinite alternate ease-in-out;
}

.orb-light-1 {
    width: 600px;
    height: 600px;
    background: #e1bee7;
    top: -100px;
    left: -100px;
}

.orb-light-2 {
    width: 500px;
    height: 500px;
    background: #fce4ec;
    bottom: -100px;
    right: -100px;
    animation-delay: -8s;
}

@keyframes orbDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(120px, 80px) scale(1.1);
    }
}

.text-glow-purple-soft {
    text-shadow: 0 0 30px rgba(109, 40, 217, 0.2);
    color: #6d28d9;
}
