/* Islamic Pattern Divider */
.islamic-pattern-divider {
    height: 50px;
    background-image: url('../arabic_patterns.png');
    background-size: contain;
    background-repeat: repeat-x;
    margin: 60px 0;
    opacity: 0.8;
    transition: all 0.5s ease;
    position: relative;
    filter: drop-shadow(0px 5px 5px rgba(0,0,0,0.1));
}

.islamic-pattern-divider:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0px 8px 15px rgba(0,0,0,0.15));
}

/* Animation Classes */
.pre-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animated {
    opacity: 1;
    transform: translateY(0);
}

.section-highlight {
    animation: highlight-pulse 1.5s ease;
}

@keyframes highlight-pulse {
    0% { box-shadow: 0 0 0 rgba(26, 117, 188, 0.3); }
    50% { box-shadow: 0 0 30px rgba(26, 117, 188, 0.6); }
    100% { box-shadow: 0 0 0 rgba(26, 117, 188, 0.3); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}