/* ===================================
   الصفحة الرئيسية - Index Page Styles
   مدارس العلوي الدولية
   =================================== */

/* Hero Section Enhancements */
.hero {
    position: relative;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-section .feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-section .feature-card:hover {
    transform: translateY(-8px);
}

/* Programs Slider */
.programs-slider {
    position: relative;
}

/* News & Events Grid */
.news-events-section .news-card {
    height: 100%;
}

/* Testimonials */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

/* Dashboard Preview */
.dashboard-section {
    position: relative;
}

/* Stats Counter Animation */
.stats-section .stat-number {
    font-variant-numeric: tabular-nums;
}

/* Page-specific animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for index page */
@media (max-width: 768px) {
    .hero-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}
