/* الصفحة الرئيسية */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3498db;
}

/* بطاقات المجلات */
.card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* القسم البريدية */
.newsletter {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

/* تأثيرات الحركة */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-section img {
    animation: float 3s ease-in-out infinite;
}

/* التكيف مع الأجهزة المحمولة */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section img {
        max-width: 80%;
        margin-bottom: 30px;
    }
    
    .stats-section .col-md-3 {
        margin-bottom: 15px;
    }
}