/* Animation for section headers */
.section-header h2 {
    position: relative;
    overflow: hidden;
}

.section-header h2::before {
    content: attr(data-text);
    position: absolute;
    font-size: 6rem;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    color: rgba(0, 106, 255, 0.03);
    font-weight: 900;
    width: 100%;
    white-space: nowrap;
    background: linear-gradient(to right, 
        rgba(0, 106, 255, 0.01), 
        rgba(0, 106, 255, 0.05), 
        rgba(0, 106, 255, 0.01));
    background-size: 200% 100%;
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    opacity: 0.8;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 106, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 106, 255, 0.7);
    }
}

/* Add particles to all section headers */
.section-header {
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background-image: 
        radial-gradient(1px 1px at 10% 20%, rgba(0, 106, 255, 0.3), transparent 30%),
        radial-gradient(1px 1px at 30% 40%, rgba(0, 106, 255, 0.3), transparent 30%),
        radial-gradient(1px 1px at 50% 60%, rgba(0, 106, 255, 0.3), transparent 30%),
        radial-gradient(1px 1px at 70% 30%, rgba(0, 106, 255, 0.3), transparent 30%),
        radial-gradient(1px 1px at 90% 50%, rgba(0, 106, 255, 0.3), transparent 30%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}