﻿.section-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #145a32;
    background: linear-gradient(90deg, rgba(46, 204, 113, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(46, 204, 113, 0.4);
    border-radius: 12px;
    padding: 10px 25px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
    animation: fadeIn 0.8s ease-in-out;
    letter-spacing: 1px;
}

    .section-title .icon {
        font-size: 1.7rem;
        color: #1d8348;
        animation: spinIcon 4s linear infinite;
    }

/* حركة خفيفة للأيقونة */
@keyframes spinIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* نفس تأثير الدخول المستخدم في الكروت */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
