﻿/* تطبيق الخطوط على جميع العناصر */
        body {
            font-family: 'Tajawal', 'Cairo', 'Almarai', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Tajawal', 'Almarai', 'Cairo', sans-serif;
            font-weight: 800;
        }
        
        /* إخفاء عنصر تخطي إلى المحتوى إذا ظهر */
        .skip-link,
        a[href="#main-content"],
        a[href*="main-content"] {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            position: absolute !important;
            left: -9999px !important;
            top: -9999px !important;
        }
        
        /* انيميشن للعناصر */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        @keyframes slideInFromTop {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ============================================
           HERO SECTION - تصميم احترافي ومتطور
           ============================================ */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.98) 0%, 
                rgba(248, 250, 252, 0.95) 25%,
                rgba(255, 255, 255, 0.98) 50%,
                rgba(248, 250, 252, 0.95) 75%,
                rgba(255, 255, 255, 0.98) 100%);
            overflow: hidden;
            padding: 4rem 0;
            margin-top: 80px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(107, 70, 193, 0.03) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 60%);
            z-index: 1;
            animation: backgroundPulse 8s ease-in-out infinite;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
                linear-gradient(225deg, rgba(248, 250, 252, 0.4) 0%, transparent 50%);
            z-index: 1;
            pointer-events: none;
        }
        
        .hero-container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .hero-content {
            animation: fadeInLeft 1.2s ease-out;
            position: relative;
            z-index: 3;
            padding: 3rem;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 30px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.08),
                0 10px 30px rgba(107, 70, 193, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .hero-title {
            font-family: 'Tajawal', 'Almarai', 'Cairo', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #1a1a2e;
            position: relative;
            background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 30%, #A855F7 60%, #F59E0B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 
                0 2px 4px rgba(255, 255, 255, 0.8),
                0 4px 20px rgba(107, 70, 193, 0.3),
                0 0 40px rgba(255, 255, 255, 0.5);
            letter-spacing: -1px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }
        
        .hero-title .highlight {
            background: linear-gradient(45deg, #F59E0B, #FCD34D, #F59E0B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease-in-out infinite;
            position: relative;
            filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.4));
        }
        
        @keyframes gradientShift {
            0%, 100% { filter: hue-rotate(0deg) drop-shadow(0 2px 8px rgba(245, 158, 11, 0.4)); }
            50% { filter: hue-rotate(10deg) drop-shadow(0 2px 12px rgba(245, 158, 11, 0.6)); }
        }
        
        .hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, #6B46C1, #8B5CF6, #F59E0B);
            border-radius: 3px;
            animation: expandLine 1s ease-out 0.5s both;
            box-shadow: 0 2px 8px rgba(107, 70, 193, 0.3);
        }
        
        @keyframes expandLine {
            from { width: 0; opacity: 0; }
            to { width: 120px; opacity: 1; }
        }
        
        .hero-description {
            font-family: 'Tajawal', 'Cairo', sans-serif;
            font-size: 1.4rem;
            line-height: 1.8;
            color: #2d3748;
            margin-bottom: 2.5rem;
            font-weight: 500;
            max-width: 600px;
            animation: fadeInUp 1s ease-out 0.3s both;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .hero-buttons .btn {
            font-family: 'Tajawal', 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-transform: none;
            letter-spacing: 0.5px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
        }
        
        .hero-buttons .btn-primary {
            background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
            color: white;
            border: none;
        }
        
        .hero-buttons .btn-primary:hover {
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(107, 70, 193, 0.5);
        }
        
        .hero-buttons .btn-secondary {
            background: white;
            color: #6B46C1;
            border: 3px solid #6B46C1;
        }
        
        .hero-buttons .btn-secondary:hover {
            background: #6B46C1;
            color: white;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(107, 70, 193, 0.4);
        }
        
        .hero-image {
            animation: fadeInRight 1.2s ease-out;
            position: relative;
        }
        
        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #6B46C1, #F59E0B);
            border-radius: 30px;
            z-index: -1;
            opacity: 0.2;
            filter: blur(30px);
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 25px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
            animation: float 4s ease-in-out infinite;
            transition: all 0.4s ease;
        }
        
        .hero-image:hover img {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 40px 100px rgba(107, 70, 193, 0.4);
        }
        
        /* ============================================
           STATS SECTION - قسم الإحصائيات المحسّن
           ============================================ */
        .stats {
            position: relative;
            padding: 5rem 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.95) 0%, 
                rgba(248, 250, 252, 0.98) 50%,
                rgba(255, 255, 255, 0.95) 100%);
            overflow: hidden;
        }
        
        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(107, 70, 193, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
            z-index: 1;
        }
        
        .stats .container {
            position: relative;
            z-index: 2;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .stat-item {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 1) 0%, 
                rgba(248, 250, 252, 1) 100%);
            padding: 2.5rem 2rem;
            border-radius: 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #6B46C1, #8B5CF6, #A855F7, #F59E0B);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .stat-item:hover::before {
            transform: scaleX(1);
        }
        
        .stat-item:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 60px rgba(107, 70, 193, 0.2);
            border-color: rgba(107, 70, 193, 0.3);
        }
        
        .stat-item::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(107, 70, 193, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .stat-item:hover::after {
            opacity: 1;
        }
        
        .stat-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #6B46C1, #F59E0B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.4s ease;
            display: inline-block;
            position: relative;
            z-index: 2;
        }
        
        .stat-item:hover .stat-icon {
            transform: scale(1.2) rotate(5deg);
            filter: drop-shadow(0 10px 20px rgba(107, 70, 193, 0.3));
        }
        
        .stat-number {
            font-family: 'Tajawal', 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: #1a1a2e;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, #6B46C1, #F59E0B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        
        .stat-label {
            font-family: 'Tajawal', 'Cairo', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #4a5568;
            position: relative;
            z-index: 2;
        }
        
        .stats-grid .stat-item:nth-child(1) { 
            animation-delay: 0.1s; 
        }
        .stats-grid .stat-item:nth-child(2) { 
            animation-delay: 0.2s; 
        }
        .stats-grid .stat-item:nth-child(3) { 
            animation-delay: 0.3s; 
        }
        .stats-grid .stat-item:nth-child(4) { 
            animation-delay: 0.4s; 
        }
        
        .section-header {
            animation: fadeInUp 0.8s ease-out;
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-family: 'Tajawal', 'Almarai', 'Cairo', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 30%, #F59E0B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #6B46C1, #F59E0B);
            border-radius: 2px;
        }
        
        .section-description {
            font-family: 'Tajawal', 'Cairo', sans-serif;
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .course-card {
            animation: scaleIn 0.6s ease-out;
            animation-fill-mode: both;
            transition: all 0.3s ease;
        }
        
        .course-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .course-card:nth-child(1) { animation-delay: 0.1s; }
        .course-card:nth-child(2) { animation-delay: 0.2s; }
        .course-card:nth-child(3) { animation-delay: 0.3s; }
        .course-card:nth-child(4) { animation-delay: 0.4s; }
        .course-card:nth-child(5) { animation-delay: 0.5s; }
        .course-card:nth-child(6) { animation-delay: 0.6s; }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .team-member {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 1) 0%, 
                rgba(248, 250, 252, 1) 100%);
            border-radius: 25px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }
        
        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6B46C1, #8B5CF6, #F59E0B);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .team-member:hover::before {
            transform: scaleX(1);
        }
        
        .team-member:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 25px 60px rgba(107, 70, 193, 0.25);
            border-color: rgba(107, 70, 193, 0.3);
        }
        
        .member-image {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid rgba(107, 70, 193, 0.2);
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .team-member:hover .member-image {
            border-color: rgba(107, 70, 193, 0.5);
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-name {
            font-family: 'Tajawal', 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #6B46C1, #F59E0B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .member-badge {
            font-family: 'Tajawal', 'Cairo', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: #6B46C1;
            margin-bottom: 0.5rem;
            padding: 0.3rem 1rem;
            background: rgba(107, 70, 193, 0.1);
            border-radius: 20px;
            display: inline-block;
        }
        
        .member-rank {
            font-family: 'Tajawal', 'Cairo', sans-serif;
            font-size: 0.9rem;
            color: #4a5568;
            margin-bottom: 0.5rem;
        }
        
        .member-points {
            font-family: 'Tajawal', 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #F59E0B;
            margin-top: 0.5rem;
        }
        
        .team-member:nth-child(1) { animation-delay: 0.1s; }
        .team-member:nth-child(2) { animation-delay: 0.2s; }
        .team-member:nth-child(3) { animation-delay: 0.3s; }
        .team-member:nth-child(4) { animation-delay: 0.4s; }
        
        .event-card {
            animation: scaleIn 0.6s ease-out;
            animation-fill-mode: both;
            transition: all 0.3s ease;
        }
        
        .event-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .event-card:nth-child(1) { animation-delay: 0.1s; }
        .event-card:nth-child(2) { animation-delay: 0.2s; }
        .event-card:nth-child(3) { animation-delay: 0.3s; }
        
        .story-item {
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
            transition: all 0.3s ease;
        }
        
        .story-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .story-item:nth-child(1) { animation-delay: 0.1s; }
        .story-item:nth-child(2) { animation-delay: 0.2s; }
        .story-item:nth-child(3) { animation-delay: 0.3s; }
        
        /* انيميشن للأزرار */
        .btn {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .btn:active {
            transform: translateY(0);
        }
        
        /* انيميشن للصور */
        .course-image img,
        .event-image img,
        .member-image img {
            transition: all 0.3s ease;
        }
        
        .course-card:hover .course-image img,
        .event-card:hover .event-image img,
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        /* تأثيرات بصرية إضافية */
        .hero-title .highlight {
            background: linear-gradient(45deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: pulse 2s ease-in-out infinite;
        }
        
        .stat-icon {
            transition: all 0.3s ease;
        }
        
        .stat-item:hover .stat-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        /* ============================================
           TEAM LEADERS SECTION - قسم قادة الفرق المحسّن
           ============================================ */
        .team-section {
            position: relative;
            padding: 5rem 0;
            background: linear-gradient(135deg, 
                rgba(248, 250, 252, 0.98) 0%, 
                rgba(255, 255, 255, 1) 50%,
                rgba(248, 250, 252, 0.98) 100%);
            overflow: hidden;
        }
        
        .team-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(107, 70, 193, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
            z-index: 1;
        }
        
        .team-section .container {
            position: relative;
            z-index: 2;
        }
        
        /* Top Leader Card Styles */
        .top-leader-card {
            background: linear-gradient(135deg, 
                rgba(107, 70, 193, 0.98) 0%, 
                rgba(139, 92, 246, 0.95) 25%,
                rgba(168, 85, 247, 0.92) 50%,
                rgba(192, 132, 252, 0.95) 75%,
                rgba(245, 158, 11, 0.98) 100%);
            border-radius: 30px;
            padding: 3rem 2.5rem;
            margin: 3rem 0 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(107, 70, 193, 0.4);
            animation: fadeInUp 1.2s ease-out;
            backdrop-filter: blur(20px);
            border: 3px solid rgba(255, 255, 255, 0.3);
            transform: perspective(1000px) rotateX(0deg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .top-leader-card:hover {
            transform: perspective(1000px) rotateX(-2deg) translateY(-10px);
            box-shadow: 0 40px 100px rgba(107, 70, 193, 0.5);
        }
        
        .top-leader-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                rgba(255, 215, 0, 0.1) 0%, 
                rgba(255, 255, 255, 0.05) 50%,
                rgba(255, 215, 0, 0.1) 100%);
            z-index: 1;
            animation: shimmer 3s ease-in-out infinite;
        }
        
        @keyframes shimmer {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }
        
        .leader-crown {
            position: absolute;
            top: -10px;
            right: 20px;
            z-index: 3;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
            animation: crownFloat 2s ease-in-out infinite;
        }
        
        @keyframes crownFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-5px) rotate(5deg); }
        }
        
        .leader-crown i {
            font-size: 1.8rem;
            color: white;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .leader-image {
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
            z-index: 2;
        }
        
        .leader-image img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid rgba(255, 255, 255, 0.3);
            object-fit: cover;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .leader-image:hover img {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }
        
        .leader-badge {
            position: absolute;
            bottom: 5px;
            right: 5px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid white;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
            z-index: 3;
        }
        
        .leader-badge i {
            font-size: 1rem;
            color: white;
        }
        
        .leader-info {
            z-index: 2;
            position: relative;
        }
        
        .leader-name {
            font-family: 'Tajawal', 'Almarai', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 0.8rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            background: linear-gradient(45deg, #FFF, #FCD34D, #FFF, #FCD34D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: nameGlow 3s ease-in-out infinite, gradientMove 4s ease infinite;
            position: relative;
            letter-spacing: 2px;
        }
        
        @keyframes nameGlow {
            0%, 100% { 
                filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
            }
            50% { 
                filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
            }
        }
        
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .leader-title {
            font-family: 'Tajawal', 'Cairo', sans-serif;
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }
        
        .leader-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .leader-stats .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            min-width: 120px;
        }
        
        .leader-stats .stat-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .leader-stats .stat-item i {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #FFD700;
            text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
        }
        
        .leader-stats .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.25rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .leader-stats .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }
        
        .leader-achievements {
            z-index: 2;
            position: relative;
        }
        
        .achievement-item {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 215, 0, 0.2);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            color: white;
            font-weight: 600;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .achievement-item:hover {
            background: rgba(255, 215, 0, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
        }
        
        .achievement-item i {
            font-size: 1.2rem;
            color: #FFD700;
            text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
        }
        
        /* تحسين التصميم المتجاوب */
        @media (max-width: 1200px) {
            .container {
                padding: 0 15px;
            }
        }
        
        @media (max-width: 768px) {
            /* Hero Mobile */
            .hero {
                min-height: auto;
                padding: 3rem 0;
                margin-top: 70px;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                padding: 0 1.5rem;
            }
            
            .hero-content {
                animation: fadeInUp 1s ease-out;
                text-align: center;
                padding: 2rem 1.5rem;
                background: rgba(255, 255, 255, 0.9);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
            }
            
            .hero-title {
                font-size: 2.8rem;
                line-height: 1.3;
            }
            
            .hero-description {
                font-size: 1.1rem;
                margin-bottom: 2rem;
                color: #2d3748;
                font-weight: 500;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero-buttons .btn {
                width: 100%;
                padding: 1rem 2rem;
                font-size: 1rem;
            }
            
            .hero-image {
                animation: fadeInUp 1s ease-out;
                animation-delay: 0.2s;
            }
            
            /* Section Titles Mobile */
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-description {
                font-size: 1rem;
            }
            
            /* Stats Mobile */
            .stats {
                padding: 3rem 0;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .stat-item {
                padding: 2rem 1.5rem;
            }
            
            .stat-icon {
                font-size: 2.5rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .stat-label {
                font-size: 1rem;
            }
            
            .course-card,
            .event-card,
            .team-member,
            .story-item {
                animation-delay: 0s !important;
            }
            
            /* Team Leaders Mobile */
            .team-section {
                padding: 3rem 0;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            /* Top Leader Card Mobile */
            .top-leader-card {
                padding: 2rem 1.5rem;
                margin: 2rem 0 3rem;
                border-radius: 25px;
            }
            
            .leader-crown {
                width: 50px;
                height: 50px;
                top: -8px;
                right: 15px;
            }
            
            .leader-crown i {
                font-size: 1.5rem;
            }
            
            .leader-image img {
                width: 100px;
                height: 100px;
            }
            
            .leader-badge {
                width: 30px;
                height: 30px;
            }
            
            .leader-badge i {
                font-size: 0.9rem;
            }
            
            .leader-name {
                font-size: 2rem;
            }
            
            .leader-title {
                font-size: 1rem;
            }
            
            .leader-stats {
                flex-direction: column;
                gap: 1rem;
            }
            
            .leader-stats .stat-item {
                min-width: 100px;
                padding: 0.8rem 1rem;
            }
            
            .leader-stats .stat-item i {
                font-size: 1.3rem;
            }
            
            .leader-stats .stat-value {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            /* Hero Small Mobile */
            .hero {
                padding: 2rem 0;
            }
            
            .hero-container {
                padding: 0 1rem;
            }
            
            .hero-content {
                padding: 1.5rem 1rem;
                background: rgba(255, 255, 255, 0.92);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
            }
            
            .hero-title {
                font-size: 2.2rem;
                line-height: 1.2;
            }
            
            .hero-title::after {
                width: 80px;
                height: 4px;
            }
            
            .hero-description {
                font-size: 1rem;
                line-height: 1.6;
                color: #2d3748;
                font-weight: 500;
            }
            
            .hero-buttons .btn {
                padding: 0.9rem 1.5rem;
                font-size: 0.95rem;
            }
            
            /* Section Titles Small Mobile */
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-title::after {
                width: 60px;
                height: 3px;
            }
            
            .section-description {
                font-size: 0.95rem;
            }
            
            /* Stats Small Mobile */
            .stats {
                padding: 2.5rem 0;
            }
            
            .stat-item {
                padding: 1.5rem 1rem;
            }
            
            .stat-icon {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .stat-label {
                font-size: 0.9rem;
            }
            
            /* Team Leaders Small Mobile */
            .team-section {
                padding: 2.5rem 0;
            }
            
            .team-grid {
                gap: 1.5rem;
            }
            
            .member-image {
                width: 120px;
                height: 120px;
            }
            
            .member-name {
                font-size: 1.3rem;
            }
            
            /* Top Leader Card Small Mobile */
            .top-leader-card {
                padding: 1.5rem 1rem;
                margin: 1.5rem 0 2rem;
                border-radius: 20px;
            }
            
            .leader-crown {
                width: 45px;
                height: 45px;
                top: -5px;
                right: 10px;
            }
            
            .leader-crown i {
                font-size: 1.3rem;
            }
            
            .leader-image img {
                width: 80px;
                height: 80px;
            }
            
            .leader-badge {
                width: 25px;
                height: 25px;
                bottom: 3px;
                right: 3px;
            }
            
            .leader-badge i {
                font-size: 0.8rem;
            }
            
            .leader-name {
                font-size: 1.8rem;
            }
            
            .leader-title {
                font-size: 0.9rem;
            }
            
            .leader-stats .stat-item {
                min-width: 80px;
                padding: 0.6rem 0.8rem;
            }
            
            .leader-stats .stat-item i {
                font-size: 1.1rem;
            }
            
            .leader-stats .stat-value {
                font-size: 1.3rem;
            }
            
            .leader-stats .stat-label {
                font-size: 0.8rem;
            }
            
            .achievement-item {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
            
            .achievement-item i {
                font-size: 1rem;
            }
        }
        
        /* تحسين الأداء */
        .course-card,
        .event-card,
        .team-member,
        .story-item {
            will-change: transform;
        }
        
        /* تأثيرات التمرير */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* قسم الدعم الفني */
        .support-section {
            background: linear-gradient(135deg, rgb(68, 43, 110) 0%, rgb(81, 13, 146) 100%);
            padding: 4rem 0;
            color: white;
            text-align: center;
        }
        
        .support-content {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .support-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }
        
        .support-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .support-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-whatsapp {
            background: rgb(61, 21, 135);
            color: white;
            border: 2px solid rgb(52, 38, 77);
        }
        
        .btn-whatsapp:hover {
            background: #128C7E;
            border-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
        }
        
        .btn-phone {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-phone:hover {
            background: white;
            color: #25D366;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }
        
        /* زر واتساب العائم */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
            animation: float 3s ease-in-out infinite;
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: #25D366;
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .whatsapp-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .whatsapp-btn:hover::before {
            left: 100%;
        }
        
        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
            text-decoration: none;
            color: white;
        }
        
        .whatsapp-btn i {
            font-size: 1.5rem;
        }
        
        .whatsapp-text {
            font-size: 0.9rem;
        }
        
        /* انيميشن للزر العائم */
        @keyframes pulse-whatsapp {
            0% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
            }
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
        }
        
        .whatsapp-btn {
            animation: pulse-whatsapp 2s ease-in-out infinite;
        }
        
        /* Media Slideshow Styles */
        .media-slideshow-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .media-slideshow-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(107, 70, 193, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
            z-index: 1;
            animation: backgroundPulse 10s ease-in-out infinite;
        }
        
        @keyframes backgroundPulse {
            0%, 100% { opacity: 0.05; }
            50% { opacity: 0.1; }
        }
        
        .media-slideshow-section .container {
            position: relative;
            z-index: 2;
        }
        
        .slideshow-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
            background: #fff;
            transform: perspective(1000px) rotateX(0deg);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            border: 4px solid rgba(255, 215, 0, 0.3);
        }
        
        .slideshow-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #FFA500);
            border-radius: 27px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.6s ease;
        }
        
        .slideshow-container:hover {
            transform: perspective(1000px) rotateX(-3deg);
            box-shadow: 0 50px 100px rgba(0, 0, 0, 0.45);
            border-color: rgba(255, 215, 0, 0.5);
        }
        
        .slideshow-container:hover::before {
            opacity: 0.8;
        }
        
        .slideshow-wrapper {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            border-radius: 25px;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
            transform: translateX(100%) scale(0.85) rotateY(15deg);
            border-radius: 25px;
            overflow: hidden;
            filter: blur(2px) brightness(0.7);
        }
        
        .slide.active {
            opacity: 1;
            transform: translateX(0) scale(1) rotateY(0deg);
            z-index: 3;
            filter: blur(0px) brightness(1);
        }
        
        .slide.prev {
            transform: translateX(-100%) scale(0.85) rotateY(-15deg);
            opacity: 0;
            filter: blur(2px) brightness(0.7);
        }
        
        .slide.next-preparing {
            transform: translateX(50%) scale(0.92) rotateY(8deg);
            opacity: 0.4;
            z-index: 1;
            filter: blur(1px) brightness(0.8);
        }
        
        .slide.prev-preparing {
            transform: translateX(-50%) scale(0.92) rotateY(-8deg);
            opacity: 0.4;
            z-index: 1;
            filter: blur(1px) brightness(0.8);
        }
        
        .slide img,
        .slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: all 0.8s ease;
            filter: brightness(0.95) contrast(1.15) saturate(1.1);
        }
        
        .slide.active img,
        .slide.active video {
            transform: scale(1.08);
            filter: brightness(1.05) contrast(1.1) saturate(1.2);
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(107, 70, 193, 0.85) 0%, 
                rgba(139, 92, 246, 0.75) 25%,
                rgba(168, 85, 247, 0.65) 50%,
                rgba(192, 132, 252, 0.75) 75%,
                rgba(245, 158, 11, 0.85) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            backdrop-filter: blur(4px) saturate(1.2);
            transform: scale(1.1);
        }
        
        .slide:hover .slide-overlay {
            opacity: 1;
            backdrop-filter: blur(6px) saturate(1.5);
            transform: scale(1);
        }
        
        .slide-content {
            text-align: center;
            color: white;
            padding: 2.5rem;
            max-width: 700px;
            transform: translateY(40px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
        }
        
        .slide:hover .slide-content {
            transform: translateY(0) scale(1);
        }
        
        .slide-content h3 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            background: linear-gradient(45deg, #FFF, #FCD34D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideTextIn 0.8s ease-out 0.3s both;
        }
        
        .slide-content p {
            font-size: 1.3rem;
            opacity: 0.95;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.6;
            animation: slideTextIn 0.8s ease-out 0.5s both;
        }
        
        @keyframes slideTextIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        /* Navigation Arrows */
        .slideshow-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
            border: 3px solid rgba(107, 70, 193, 0.3);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #6B46C1;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 10;
            backdrop-filter: blur(20px) saturate(1.2);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            opacity: 0.9;
        }
        
        .slideshow-nav:hover {
            background: linear-gradient(135deg, #6B46C1, #8B5CF6);
            color: white;
            transform: translateY(-50%) scale(1.2) rotate(8deg);
            box-shadow: 0 20px 50px rgba(107, 70, 193, 0.6);
            border-color: rgba(255, 255, 255, 0.4);
            opacity: 1;
        }
        
        .slideshow-nav:active {
            transform: translateY(-50%) scale(1.05) rotate(0deg);
        }
        
        .slideshow-nav.prev {
            left: 25px;
            animation: slideInLeft 0.6s ease-out;
        }
        
        .slideshow-nav.next {
            right: 25px;
            animation: slideInRight 0.6s ease-out;
        }
        
        .slideshow-nav i {
            transition: all 0.3s ease;
        }
        
        .slideshow-nav:hover i {
            transform: scale(1.1);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateY(-50%) translateX(-30px);
            }
            to {
                opacity: 0.8;
                transform: translateY(-50%) translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateY(-50%) translateX(30px);
            }
            to {
                opacity: 0.8;
                transform: translateY(-50%) translateX(0);
            }
        }
        
        /* Dots Navigation */
        .slideshow-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 18px;
            z-index: 10;
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 30px;
            backdrop-filter: blur(15px) saturate(1.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            animation: slideInUp 0.8s ease-out 0.5s both;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }
        
        .dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.7);
            background: transparent;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
        }
        
        .dot::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #6B46C1, #8B5CF6, #A855F7, #F59E0B);
            border-radius: 50%;
            transform: scale(0);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }
        
        .dot::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .dot.active::before,
        .dot:hover::before {
            transform: scale(1);
            animation: rotateDot 2s linear infinite;
        }
        
        .dot.active::after {
            transform: translate(-50%, -50%) scale(1);
        }
        
        .dot.active {
            border-color: transparent;
            transform: scale(1.2);
        }
        
        .dot:hover {
            transform: scale(1.1);
        }
        
        @keyframes rotateDot {
            0% { transform: scale(1) rotate(0deg); }
            100% { transform: scale(1) rotate(360deg); }
        }
        
        /* Video Controls */
        .video-control {
            position: absolute;
            top: 25px;
            right: 25px;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
            border: 2px solid rgba(255, 255, 255, 0.3);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .slide[data-type="video"] .video-control {
            opacity: 0.8;
            visibility: visible;
            animation: videoControlIn 0.6s ease-out 0.3s both;
        }
        
        @keyframes videoControlIn {
            from {
                opacity: 0;
                transform: scale(0.5) rotate(-180deg);
            }
            to {
                opacity: 0.8;
                transform: scale(1) rotate(0deg);
            }
        }
        
        .video-control:hover {
            background: linear-gradient(135deg, rgba(107, 70, 193, 0.9), rgba(139, 92, 246, 0.8));
            border-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.15);
            opacity: 1;
            box-shadow: 0 12px 35px rgba(107, 70, 193, 0.4);
        }
        
        .video-control:active {
            transform: scale(1.05);
        }
        
        .video-control i {
            transition: all 0.3s ease;
        }
        
        .video-control:hover i {
            transform: scale(1.1);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        
        /* Progress Bar for Videos */
        .video-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            z-index: 10;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .slide[data-type="video"]:hover .video-progress {
            opacity: 1;
        }
        
        .video-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #6B46C1, #8B5CF6, #F59E0B);
            width: 0%;
            transition: width 0.1s ease;
            border-radius: 2px;
        }
        
        /* Slide Loading Effect */
        .slide-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 15;
            opacity: 0;
            pointer-events: none;
        }
        
        .slide.loading .slide-loading {
            opacity: 1;
        }
        
        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid #6B46C1;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Loading Animation */
        .slide.loading {
            position: relative;
        }
        
        .slide.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid #6B46C1;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        /* Slide Effects - تأثيرات جهنمية للشرائح */
        .slide-effects {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }
        
        /* Particle Effects */
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, #FFD700, #FFA500);
            border-radius: 50%;
            animation: particleFloat 8s infinite linear;
            box-shadow: 0 0 10px #FFD700;
        }
        
        .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 6s;
        }
        
        .particle:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: 2s;
            animation-duration: 8s;
        }
        
        .particle:nth-child(3) {
            top: 40%;
            left: 50%;
            animation-delay: 4s;
            animation-duration: 7s;
        }
        
        @keyframes particleFloat {
            0% {
                transform: translateY(0px) translateX(0px) scale(1);
                opacity: 1;
            }
            25% {
                transform: translateY(-30px) translateX(20px) scale(1.2);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-60px) translateX(-15px) scale(0.8);
                opacity: 0.6;
            }
            75% {
                transform: translateY(-90px) translateX(25px) scale(1.1);
                opacity: 0.4;
            }
            100% {
                transform: translateY(-120px) translateX(0px) scale(0.5);
                opacity: 0;
            }
        }
        
        /* Sparkle Effects */
        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: linear-gradient(45deg, #FFD700, #FFFFFF, #FFD700);
            border-radius: 50%;
            animation: sparkleTwinkle 3s infinite ease-in-out;
            box-shadow: 0 0 15px #FFD700;
        }
        
        .sparkle:nth-child(1) {
            top: 30%;
            left: 20%;
            animation-delay: 0s;
        }
        
        .sparkle:nth-child(2) {
            top: 70%;
            left: 70%;
            animation-delay: 1s;
        }
        
        .sparkle:nth-child(3) {
            top: 50%;
            left: 40%;
            animation-delay: 2s;
        }
        
        @keyframes sparkleTwinkle {
            0%, 100% {
                transform: scale(0.5) rotate(0deg);
                opacity: 0;
            }
            50% {
                transform: scale(1.5) rotate(180deg);
                opacity: 1;
            }
        }
        
        /* Glow Effects */
        .glow {
            position: absolute;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(107, 70, 193, 0.3), transparent);
            border-radius: 50%;
            animation: glowPulse 4s infinite ease-in-out;
            filter: blur(20px);
        }
        
        .glow:nth-child(1) {
            top: 20%;
            left: 30%;
            animation-delay: 0s;
        }
        
        .glow:nth-child(2) {
            top: 60%;
            left: 60%;
            animation-delay: 1.5s;
        }
        
        .glow:nth-child(3) {
            top: 80%;
            left: 20%;
            animation-delay: 3s;
        }
        
        @keyframes glowPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.7;
            }
        }
        
        /* Energy Effects */
        .energy {
            position: absolute;
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, #00FFFF, #0080FF, transparent);
            animation: energyFlow 2s infinite linear;
            box-shadow: 0 0 20px #00FFFF;
        }
        
        .energy:nth-child(1) {
            top: 10%;
            left: 25%;
            animation-delay: 0s;
            animation-duration: 1.5s;
        }
        
        .energy:nth-child(2) {
            top: 40%;
            left: 75%;
            animation-delay: 0.5s;
            animation-duration: 2s;
        }
        
        .energy:nth-child(3) {
            top: 70%;
            left: 50%;
            animation-delay: 1s;
            animation-duration: 1.8s;
        }
        
        @keyframes energyFlow {
            0% {
                transform: translateY(-50px) scaleY(0);
                opacity: 0;
            }
            50% {
                transform: translateY(0) scaleY(1);
                opacity: 1;
            }
            100% {
                transform: translateY(50px) scaleY(0);
                opacity: 0;
            }
        }
        
        /* Magic Effects */
        .magic {
            position: absolute;
            width: 8px;
            height: 8px;
            background: conic-gradient(from 0deg, #FFD700, #FF6B6B, #4ECDC4, #45B7D1, #FFD700);
            border-radius: 50%;
            animation: magicSpin 5s infinite linear;
            box-shadow: 0 0 25px rgba(255, 107, 107, 0.8);
        }
        
        .magic:nth-child(1) {
            top: 25%;
            left: 15%;
            animation-delay: 0s;
        }
        
        .magic:nth-child(2) {
            top: 65%;
            left: 85%;
            animation-delay: 1.5s;
        }
        
        .magic:nth-child(3) {
            top: 45%;
            left: 55%;
            animation-delay: 3s;
        }
        
        @keyframes magicSpin {
            0% {
                transform: rotate(0deg) scale(1);
                opacity: 1;
            }
            25% {
                transform: rotate(90deg) scale(1.3);
                opacity: 0.8;
            }
            50% {
                transform: rotate(180deg) scale(0.7);
                opacity: 0.6;
            }
            75% {
                transform: rotate(270deg) scale(1.2);
                opacity: 0.8;
            }
            100% {
                transform: rotate(360deg) scale(1);
                opacity: 1;
            }
        }
        
        /* Slide Buttons Enhancement */
        .slide-buttons {
            margin-top: 1.5rem;
            animation: slideTextIn 0.8s ease-out 0.7s both;
        }
        
        .slide-buttons .btn {
            background: linear-gradient(135deg, #6B46C1, #8B5CF6);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 1rem 2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(107, 70, 193, 0.3);
        }
        
        .slide-buttons .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }
        
        .slide-buttons .btn:hover::before {
            left: 100%;
        }
        
        .slide-buttons .btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(107, 70, 193, 0.5);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .slide-buttons .btn:active {
            transform: translateY(-1px) scale(1.02);
        }
        
        /* Enhanced Slide Content */
        .slide-content h3 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-shadow: 0 6px 25px rgba(0, 0, 0, 0.7);
            background: linear-gradient(45deg, #FFF, #FCD34D, #FFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideTextIn 0.8s ease-out 0.2s both;
            position: relative;
        }
        
        .slide-content h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #FFD700, #FFA500);
            border-radius: 2px;
            animation: slideTextIn 0.8s ease-out 0.4s both;
        }
        
        .slide-content p {
            font-size: 1.4rem;
            opacity: 0.95;
            text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
            line-height: 1.7;
            animation: slideTextIn 0.8s ease-out 0.6s both;
            margin-bottom: 0;
        }
        
        /* تحسينات للهواتف */
        @media (max-width: 768px) {
            .support-title {
                font-size: 2rem;
            }
            
            .support-description {
                font-size: 1rem;
            }
            
            .support-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .whatsapp-float {
                bottom: 15px;
                left: 15px;
            }
            
            .whatsapp-btn {
                padding: 0.8rem 1.2rem;
            }
            
            .whatsapp-text {
                font-size: 0.8rem;
            }
            
            /* Slideshow Mobile Styles */
            .media-slideshow-section {
                padding: 3rem 0;
            }
            
            .media-slideshow-section::before {
                animation: backgroundPulseMobile 8s ease-in-out infinite;
            }
            
            @keyframes backgroundPulseMobile {
                0%, 100% { opacity: 0.03; }
                50% { opacity: 0.08; }
            }
            
            .slideshow-container {
                border-radius: 20px;
                margin: 0 10px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            }
            
            .slideshow-container:hover {
                transform: perspective(1000px) rotateX(0deg);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            }
            
            .slideshow-wrapper {
                height: 350px;
                border-radius: 20px;
            }
            
            .slide {
                border-radius: 20px;
                transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }
            
            .slide-content {
                padding: 1.5rem;
                max-width: 90%;
            }
            
            .slide-content h3 {
                font-size: 2rem;
                margin-bottom: 0.8rem;
                background: linear-gradient(45deg, #FFF, #FCD34D);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
            
            .slide-content p {
                font-size: 1.1rem;
                line-height: 1.5;
            }
            
            .slideshow-nav {
                width: 55px;
                height: 55px;
                font-size: 1.4rem;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }
            
            .slideshow-nav:hover {
                transform: translateY(-50%) scale(1.1);
            }
            
            .slideshow-nav.prev {
                left: 15px;
            }
            
            .slideshow-nav.next {
                right: 15px;
            }
            
            .slideshow-dots {
                bottom: 20px;
                padding: 8px 16px;
                gap: 12px;
            }
            
            .dot {
                width: 12px;
                height: 12px;
                border-width: 1.5px;
            }
            
            .dot.active {
                transform: scale(1.15);
            }
            
            .video-control {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                top: 20px;
                right: 20px;
            }
            
            .video-progress {
                height: 3px;
            }
            
            /* Enhanced touch interactions */
            .slideshow-container {
                touch-action: pan-y pinch-zoom;
            }
            
            .slide {
                user-select: none;
                -webkit-user-select: none;
                -webkit-touch-callout: none;
            }
            
            /* Improved slide transitions for mobile */
            .slide.active {
                transform: translateX(0) scale(1);
                filter: brightness(1) contrast(1);
            }
            
            .slide.next-preparing {
                transform: translateX(30%) scale(0.96);
                opacity: 0.4;
            }
            
            .slide.prev-preparing {
                transform: translateX(-30%) scale(0.96);
                opacity: 0.4;
            }
        }
        
        @media (max-width: 480px) {
            .support-section {
                padding: 3rem 0;
            }
            
            .support-title {
                font-size: 1.8rem;
            }
            
            .whatsapp-btn {
                padding: 0.7rem 1rem;
            }
            
            .whatsapp-btn i {
                font-size: 1.3rem;
            }
            
            /* Extra small mobile slideshow adjustments */
            .media-slideshow-section {
                padding: 2.5rem 0;
            }
            
            /* Mobile Slide Effects Adjustments */
            .slide-content h3 {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
            }
            
            .slide-content p {
                font-size: 1rem;
                line-height: 1.5;
            }
            
            .slide-buttons .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
            
            /* Reduce effects intensity on mobile */
            .particle, .sparkle, .magic {
                width: 4px;
                height: 4px;
            }
            
            .glow {
                width: 60px;
                height: 60px;
            }
            
            .energy {
                width: 1px;
                height: 25px;
            }
            
            .slideshow-container {
                margin: 0 5px;
                border-radius: 18px;
            }
            
            .slideshow-wrapper {
                height: 300px;
                border-radius: 18px;
            }
            
            .slide {
                border-radius: 18px;
            }
            
            .slide-content {
                padding: 1rem;
            }
            
            .slide-content h3 {
                font-size: 1.6rem;
                margin-bottom: 0.6rem;
            }
            
            .slide-content p {
                font-size: 0.95rem;
                line-height: 1.4;
            }
            
            .slideshow-nav {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
            
            .slideshow-nav.prev {
                left: 10px;
            }
            
            .slideshow-nav.next {
                right: 10px;
            }
            
            .slideshow-dots {
                bottom: 15px;
                padding: 6px 12px;
                gap: 10px;
            }
            
            .dot {
                width: 10px;
                height: 10px;
                border-width: 1px;
            }
            
            .video-control {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
                top: 15px;
                right: 15px;
            }
            
            .video-progress {
                height: 2px;
            }
        }
        
        /* Modern Footer Styles */
        .footer {
            background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 25%, #A855F7 50%, #C084FC 75%, #F59E0B 100%);
            color: white;
            padding: 4rem 0 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(107, 70, 193, 0.9) 0%, rgba(245, 158, 11, 0.1) 100%);
            z-index: 1;
        }
        
        .footer .container {
            position: relative;
            z-index: 2;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        /* Footer Brand Section */
        .footer-brand {
            max-width: 400px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-logo .logo-img {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .footer-logo .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, #F59E0B, #FCD34D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-description {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        /* Social Media Links */
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .social-link:hover::before {
            transform: translateX(100%);
        }
        
        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .social-link.facebook:hover {
            background: linear-gradient(45deg, #1877F2, #42A5F5);
            border-color: #1877F2;
        }
        
        .social-link.instagram:hover {
            background: linear-gradient(45deg, #E4405F, #F77737, #FCAF45);
            border-color: #E4405F;
        }
        
        .social-link.youtube:hover {
            background: linear-gradient(45deg, #FF0000, #FF6B6B);
            border-color: #FF0000;
        }
        
        .social-link i {
            font-size: 1.2rem;
            z-index: 1;
            position: relative;
        }
        
        /* Footer Sections */
        .footer-section {
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }
        
        .footer-section:nth-child(1) { animation-delay: 0.1s; }
        .footer-section:nth-child(2) { animation-delay: 0.2s; }
        .footer-section:nth-child(3) { animation-delay: 0.3s; }
        .footer-section:nth-child(4) { animation-delay: 0.4s; }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #FCD34D;
            position: relative;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(45deg, #F59E0B, #FCD34D);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding-right: 1.5rem;
        }
        
        .footer-link::before {
            content: '→';
            position: absolute;
            right: 0;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            color: #F59E0B;
        }
        
        .footer-link:hover {
            color: #FCD34D;
            transform: translateX(5px);
        }
        
        .footer-link:hover::before {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Contact Info */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            color: #FCD34D;
            transform: translateX(5px);
        }
        
        .contact-item i {
            width: 20px;
            color: #F59E0B;
            font-size: 1rem;
        }
        
        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 2rem;
            text-align: center;
        }
        
        .footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }
            
            .footer-brand {
                grid-column: 1 / -1;
                max-width: none;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .footer {
                padding: 3rem 0 1.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .footer-brand {
                grid-column: 1;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        @media (max-width: 480px) {
            .footer {
                padding: 2.5rem 0 1rem;
            }
            
            .footer-logo {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .footer-logo .logo-text {
                font-size: 1.5rem;
            }
            
            .social-link {
                width: 45px;
                height: 45px;
            }
            
            .social-link i {
                font-size: 1.1rem;
            }
        }