 /* divider.css */
 .modern-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    
}

.modern-divider .divider-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3d52a0, #8697ca, #3d52a0);
    animation: gradient-shift 3s ease-in-out infinite;
}

/* Floating Effect */
.modern-divider .divider-line::before,
.modern-divider .divider-line::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #3d52a0;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.modern-divider .divider-line::before {
    left: -30px;
    animation-delay: 0.5s;
}

.modern-divider .divider-line::after {
    right: -30px;
    animation-delay: 1.5s;
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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