:root {
            --primary-dark: #0a1f3d;
            --primary-color: #4EC0A7;
            --secondary-color: #3b82f6;
            --accent-color: #5C4DB3;
            --accent-light: #fcd34d;
            --text-color: #1e293b;
            --light-color: #f8fafc;
            --dark-color: #0f172a;
            --gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
            --gradient-accent: #4EC0A7;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Almarai', sans-serif;
        }
        
        body {
            direction: rtl;
            background-color: #f1f5f9;
            overflow-x: hidden;
        }
        html {
  scroll-behavior: smooth;
}
        /* تصميم الشريط العلوي */
        .top-bar {
            background: var(--gradient);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        
        .top-bar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .social-icons a {
            color: white;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            color: var(--accent-light);
            transform: translateY(-2px);
        }
        
        .contact-info {
            display: flex;
            align-items: center;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-left: 20px;
        }
        
        .contact-item i {
            margin-left: 8px;
            color: var(--accent-light);
        }
        
        /* تصميم الهيدر الرئيسي */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100px;
    position: relative;
    transition: height 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.logo {
    height: 70px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.logo:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
}

.logo-left {
    margin-left: 20px;
}

.logo-right {
    margin-right: 20px;
}

.nav-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 1.05rem;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.nav-link:hover::before {
    transform: translateX(0);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: all 0.4s ease;
}

.nav-link:hover::after {
    transform: translateY(-50%) scale(1);
}

.nav-link i {
    margin-left: 8px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.nav-link:hover i {
    color: var(--accent-color);
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    transform: translateY(20px) rotateX(-30deg);
    transform-origin: top center;
    perspective: 1000px;
    padding: 15px 0;
    border-top: 3px solid var(--accent-color);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px) rotateX(0);
}

.dropdown-item {
    padding: 12px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-accent);
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.dropdown-item:hover::before {
    transform: translateY(0);
}

.dropdown-link {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.dropdown-link:hover {
    color: var(--primary-color);
    padding-right: 15px;
}

.dropdown-link i {
    margin-left: 10px;
    font-size: 0.8rem;
    color: var(--accent-color);
    min-width: 20px;
    text-align: center;
}

/* زر القائمة للجوال */
.mobile-menu-btn {
    display: none;
    background: var(--gradient);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(26, 58, 110, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
    outline: none;
}

.mobile-menu-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 15px 30px rgba(26, 58, 110, 0.4);
}

.mobile-menu-btn:focus {
    box-shadow: 0 0 0 3px rgba(26, 58, 110, 0.3);
}

/* أزرار الهيدر */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.donate-btn {
    background: var(--gradient-accent);
    color: var(--dark-color);
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    outline: none;
}

.donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.donate-btn:hover::before {
    opacity: 1;
}

.donate-btn span {
    position: relative;
    z-index: 1;
}

.donate-btn i {
    margin-left: 10px;
    position: relative;
    z-index: 1;
}

.donate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
}

.donate-btn:focus {
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

/* طبقة التعتيم عند فتح القائمة */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* تأثيرات التمرير */
.header.scrolled {
    height: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.header.scrolled .header-container {
    height: 80px;
}

.header.scrolled .logo {
    height: 50px;
}

/* موجات زخرفية */
.wave-decoration {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23f8fafc" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23f8fafc" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23f8fafc"/></svg>') repeat-x;
    background-size: 1200px 100%;
    z-index: -1;
}

/* تصميم الجوال */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 20px;
    }
    
    .nav-link {
        padding: 15px 15px;
    }
}

@media (max-width: 992px) {
    .header-container {
        height: 90px;
        padding: 0 15px;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
        transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-container.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        margin-top: 50px;
    }
    
    .nav-item {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 18px;
        border-radius: 10px;
        background-color: #f8fafc;
        margin-bottom: 5px;
        justify-content: space-between;
    }
    
    .nav-link::before, .nav-link::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: 5px;
        padding: 0;
        border: none;
        border-radius: 10px;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        background-color: #f1f5f9;
    }
    
    .nav-item.active .dropdown-menu {
        display: block;
        max-height: 1000px;
        padding: 10px 0;
    }
    
    .dropdown-item {
        padding: 15px 25px;
    }
    
    .dropdown-link {
        font-size: 0.95rem;
    }
    
    .mobile-menu-btn {
        display: flex;
        position: absolute;
        right: 15px;
    }
    
    .logo {
        height: 60px;
    }
    
    .header-actions {
        margin-right: auto;
        margin-left: 20px;
    }
    
    .donate-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .logo-right {
        display: none;
    }
    
    .nav-container.active .logo-right {
        display: block;
        margin: 20px auto;
        max-width: 150px;
    }
    
    .nav-container.active .logo-left {
        display: block;
        margin: 20px auto;
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .logo-left {
        margin-right: 220px; 
        padding: 10px;               
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .donate-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .header-container {
        height: 80px;
    }
    
    .logo {
        height: 50px;
    }
    
    .mobile-menu-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .donate-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .header-actions {
        display: none;
    }
    
    .logo-left {
        margin-right: auto;
    }
}

/* تأثيرات الحركة والرسوم المتحركة */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.donate-btn {
    animation: pulse 2s infinite;
}

.logo:hover {
    animation: float 1.5s ease-in-out infinite;
}

/* تأثيرات العناصر المنسدلة */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px) rotateX(-30deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.dropdown-item {
    animation: slideIn 0.4s ease forwards;
    opacity: 0;
    transform-origin: top center;
}

.dropdown-item:nth-child(1) { animation-delay: 0.1s; }
.dropdown-item:nth-child(2) { animation-delay: 0.15s; }
.dropdown-item:nth-child(3) { animation-delay: 0.2s; }
.dropdown-item:nth-child(4) { animation-delay: 0.25s; }
.dropdown-item:nth-child(5) { animation-delay: 0.3s; }
.dropdown-item:nth-child(6) { animation-delay: 0.35s; }
.dropdown-item:nth-child(7) { animation-delay: 0.4s; }

        /* logo end */






        /* start web */




        /* slider - start */
 .hero-slider {
            position: relative;
            width: 100%;
            height: 80vh;
            min-height: 600px;
            overflow: hidden;
            background-color: var(--primary-dark);
        }
        
        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 31, 61, 0.6);
            z-index: 1;
        }
        
        .slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 10;
        }
        
        .slide.next {
            opacity: 0;
            transform: scale(1.1);
            z-index: 9;
        }
        
        .slide.prev {
            opacity: 0;
            transform: scale(0.9);
            z-index: 8;
        }
        
        .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
            max-width: 900px;
            color: white;
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s ease 0.5s;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            display: inline-block;
        }
        
        .slide-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 1s ease 1s;
        }
        
        .slide.active .slide-title::after {
            transform: scaleX(1);
        }
        
        .slide-text {
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 30px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .slide-btn {
            display: inline-block;
            padding: 15px 35px;
            background: var(--gradient-accent);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.5s ease;
            box-shadow: 0 10px 20px rgba(92, 77, 179, 0.3);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }
        
        .slide-btn::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%); */
            opacity: 0;
            transition: all 0.5s ease;
        }
        
        .slide-btn:hover::before {
            opacity: 1;
        }
        
        .slide-btn span {
            position: relative;
            z-index: 1;
        }
        
        .slide-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(92, 77, 179, 0.4);
        }
        
        .slider-nav {
            position: absolute;
            bottom: 40px;
            right: 50%;
            transform: translateX(50%);
            display: flex;
            z-index: 20;
        }
        
        .slider-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .slider-dot::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-accent);
            transform: translateX(-100%);
            transition: transform 4s linear;
        }
        
        .slider-dot.active {
            transform: scale(1.3);
        }
        
        .slider-dot.active::before {
            transform: translateX(0);
        }
        
        .slider-arrows {
            position: absolute;
            top: 80%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 20;
        }
        
        .slider-arrow {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .slider-arrow:hover {
            background: var(--accent-color);
            transform: scale(1.1);
        }
        
        /* تأثيرات إضافية */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            right: 0;
            z-index: 1;
            overflow: hidden;
        }
        
        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
            }
        }
        
        /* التكيف مع الشاشات الصغيرة */
        @media (max-width: 992px) {
            .hero-slider {
                height: 70vh;
                min-height: 500px;
            }
            
            .slide-title {
                font-size: 3rem;
            }
            
            .slide-text {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-slider {
                height: 60vh;
                min-height: 400px;
            }
            
            .slide-title {
                font-size: 2.5rem;
            }
            
            .slide-text {
                font-size: 1rem;
            }
            
            .slide-btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .slider-arrow {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-slider {
                height: 50vh;
                min-height: 300px;
            }
            
            .slide-title {
                font-size: 2rem;
            }
            
            .slider-nav {
                bottom: 20px;
            }
        }
        
        /* slider - start */


            /* About us - start */

 /* أنماط قسم من نحن */
    .about-section {
        position: relative;
        padding: 100px 0;
        background-color: var(--light-color);
        overflow: hidden;
    }
    
    .about-container {
        display: flex;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        position: relative;
        z-index: 2;
    }
    
    .geometric-shape {
        position: absolute;
        top: -150px;
        left: -150px;
        width: 500px;
        height: 500px;
        z-index: -1;
        opacity: 0.1;
        transform: rotate(45deg);
    }
    
    .shape-part {
        position: absolute;
        border-radius: 50%;
        filter: blur(30px);
    }
    
    .shape-1 {
        width: 300px;
        height: 300px;
        top: 0;
        left: 0;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
        top: 150px;
        left: 150px;
        opacity: 0.7;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
        top: 250px;
        left: 250px;
        opacity: 0.5;
    }
    
    .about-content {
        flex: 1;
        padding-left: 50px;
    }
    
    .section-header {
        margin-bottom: 50px;
        position: relative;
    }
    
    .section-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--primary-dark);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .title-decoration {
        display: flex;
        align-items: center;
    }
    
    .deco-line {
        width: 100px;
        height: 4px;
        border-radius: 2px;
    }
    
    .deco-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin-right: 15px;
    }
    
    .about-text {
        margin-bottom: 50px;
    }
    
    .about-paragraph {
        font-size: 1.3rem;
        line-height: 1.8;
        color: var(--text-color);
        margin-bottom: 25px;
        position: relative;
        padding-right: 30px;
    }
    
    .highlight {
        font-size: 1.4rem;
        position: relative;
    }
    
    .highlight-icon {
        position: absolute;
        right: -10px;
        top: -10px;
        font-size: 1.8rem;
    }
    
    .mission-box {
        border-right: 4px solid;
        padding: 25px;
        margin: 40px 0;
        position: relative;
        background: white;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: -30px;
        top: -30px;
        font-size: 1.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .mission-text {
        font-size: 1.2rem;
        line-height: 1.7;
        color: var(--text-color);
        font-style: italic;
    }
    
    .about-stats {
        display: flex;
        gap: 30px;
        margin-top: 50px;
    }
    
    .stat-item {
        text-align: center;
        flex: 1;
    }
    
    .stat-number {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 1.2rem;
        color: var(--primary-dark);
        font-weight: 600;
    }
    
    .about-image {
        width: 45%;
        position: relative;
        margin-right: 50px;
    }
    
    .image-frame {
        border-right: 10px solid;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        height: 700px;
    }
    
    .image-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .image-frame:hover img {
        transform: scale(1.05);
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
    
    .image-caption {
        position: absolute;
        bottom: -25px;
        right: 50px;
        padding: 15px 30px;
        border-radius: 50px;
        color: white;
        font-weight: 600;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .image-caption i {
        font-size: 1.2rem;
    }
    
    .about-waves {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100px;
        z-index: 1;
    }
    
    /* التكيف مع الشاشات المتوسطة */
    @media (max-width: 1200px) {
        .about-container {
            flex-direction: column;
        }
        
        .about-content {
            padding-left: 0;
            margin-bottom: 50px;
        }
        
        .about-image {
            width: 100%;
            margin-right: 0;
        }
        
        .section-title {
            font-size: 3rem;
        }
        
        .about-paragraph {
            font-size: 1.2rem;
        }
    }
    
    /* التكيف مع الشاشات الصغيرة */
    @media (max-width: 768px) {
        .about-section {
            padding: 70px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
        }
        
        .about-stats {
            flex-direction: column;
            gap: 20px;
        }
        
        .mission-box {
            padding: 20px 15px 20px 25px;
        }
        
        .mission-icon {
            width: 50px;
            height: 50px;
            right: -25px;
            top: -25px;
            font-size: 1.2rem;
        }
        
        .image-frame {
            height: 400px;
        }
    }
    
    /* تأثيرات الحركة */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .about-content {
        animation: fadeInUp 1s ease forwards;
    }
    
    .about-image {
        animation: fadeInUp 1s ease 0.3s forwards;
        opacity: 0;
    }
            /* About us - End */


    /* news - start */
/* أنماط قسم الأخبار */
.news-section {
    padding: 5rem 2rem;
    position: relative;
    background-color: var(--light-color);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    right: 0;
    width: 50%;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-decoration {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 300px;
    height: 60px;
}

.deco-circle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
}

.deco-wave {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 120 20" xmlns="http://www.w3.org/2000/svg"><path d="M0,10 C20,0 40,20 60,10 C80,0 100,20 120,10 L120,20 L0,20 Z" fill="%235C4DB3" opacity="0.1"/></svg>');
    background-size: 120px 20px;
    background-repeat: repeat-x;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-article {
    display: flex;
    margin-bottom: 6rem;
    position: relative;
    flex-direction: column;
}

.reverse-layout {
    flex-direction: column-reverse;
}

.news-media {
    position: relative;
    flex: 1;
    min-height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.3;
    mix-blend-mode: multiply;
}

.date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--light-color);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.date-badge .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.date-badge .month {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
    margin-top: 0.2rem;
}

.media-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.deco-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.deco-shape.shape-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -30px;
    border: 15px solid var(--accent-light);
}

.deco-shape.shape-2 {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: -20px;
    border: 10px solid var(--primary-color);
}

.news-content {
    flex: 1;
    position: relative;
    z-index: 1;
    margin-top: -50px;
    padding: 0 2rem;
}

.reverse-layout .news-content {
    margin-top: 0;
    margin-bottom: -50px;
}

.content-inner {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-article:hover .content-inner {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.news-excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover i {
    transform: translateX(-5px);
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.view-all {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(92, 77, 179, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-all i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(92, 77, 179, 0.4);
}

.view-all:hover i {
    transform: translateX(-5px);
}

/* تأثيرات الحركة */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* التصميم المتجاوب */
@media (min-width: 768px) {
    .news-article {
        flex-direction: row;
        margin-bottom: 8rem;
    }
    
    .reverse-layout {
        flex-direction: row-reverse;
    }
    
    .news-content {
        margin-top: 50px;
        margin-right: -50px;
        padding: 0;
    }
    
    .reverse-layout .news-content {
        margin-right: 0;
        margin-left: -50px;
        margin-bottom: 0;
    }
    
    .content-inner {
        padding: 2.5rem;
    }
    
    .news-title {
        font-size: 1.8rem;
    }
}

@media (min-width: 992px) {
    .section-title {
        font-size: 3rem;
    }
    
    .news-article {
        margin-bottom: 10rem;
    }
    
    .content-inner {
        padding: 3rem;
    }
}

    /* news - End */



        /* programs - Start */
 /* أنماط مبتكرة */
    .innovative-programs {
        position: relative;
        padding: 100px 0;
        background-color: var(--light-color);
        overflow: hidden;
        perspective: 1000px;
    }
    
    .dynamic-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    
    .floating-shapes {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .shape-3d {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        opacity: 0.15;
        animation: float 15s infinite ease-in-out;
    }
    
    .shape-1 {
        width: 300px;
        height: 300px;
        background: var(--primary-color);
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }
    
    .shape-2 {
        width: 400px;
        height: 400px;
        background: var(--accent-color);
        bottom: 5%;
        right: 10%;
        animation-delay: 3s;
    }
    
    .shape-3 {
        width: 250px;
        height: 250px;
        background: var(--secondary-color);
        top: 50%;
        left: 30%;
        animation-delay: 6s;
    }
    
    .shape-4 {
        width: 350px;
        height: 350px;
        background: var(--accent-light);
        top: 30%;
        right: 20%;
        animation-delay: 9s;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-50px) rotate(5deg); }
    }
    
    .neo-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        z-index: 1;
    }
    
    .magnetic-heading {
        text-align: center;
        margin-bottom: 80px;
        position: relative;
    }
    
    .magnetic-text {
        font-size: 4rem;
        font-weight: 800;
        color: var(--primary-dark);
        margin: 0;
        position: relative;
        display: inline-block;
        cursor: default;
        text-shadow: 3px 3px 0 rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }
    
    .magnetic-text:hover {
        animation: magnetic 0.5s ease;
    }
    
    @keyframes magnetic {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        75% { transform: translateX(5px); }
    }
    
    .magnetic-underline {
        width: 150px;
        height: 8px;
        background: var(--gradient-accent);
        margin: 20px auto 0;
        border-radius: 4px;
        transform-origin: center;
        transition: transform 0.3s ease;
    }
    
    .magnetic-heading:hover .magnetic-underline {
        transform: scaleX(1.2);
    }
    
    .typewriter-message {
        text-align: center;
        margin: 50px auto;
        max-width: 800px;
        background: rgba(255,255,255,0.8);
        backdrop-filter: blur(10px);
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid rgba(255,255,255,0.3);
    }
    
    .typing-text {
        font-size: 1.5rem;
        color: var(--text-color);
        font-weight: 600;
        line-height: 1.6;
        margin: 0;
        position: relative;
    }
    
    .typing-text::after {
        content: '|';
        animation: blink 1s infinite;
        color: var(--primary-color);
    }
    
    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }
    
    /* تصميم دائري للخدمات */
    .radial-services {
        position: relative;
        width: 600px;
        height: 600px;
        margin: 0 auto 100px;
    }
    
    .radial-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        background: white;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        z-index: 2;
        border: 5px solid var(--light-color);
    }
    
    .center-icon {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .center-title {
        font-size: 1.2rem;
        color: var(--dark-color);
        margin: 0;
    }
    
    .radial-items {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .radial-item {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120px;
        height: 120px;
        margin-left: -60px;
        margin-top: -60px;
        transform: rotate(var(--angle)) translate(250px) rotate(calc(-1 * var(--angle)));
        transition: all 0.5s ease;
    }
    
    .radial-item:hover {
        transform: rotate(var(--angle)) translate(250px) rotate(calc(-1 * var(--angle))) scale(1.1);
        z-index: 3;
    }
    
    .item-content {
        width: 100%;
        height: 100%;
        background: white;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        border: 3px solid var(--light-color);
    }
    
    .radial-item:hover .item-content {
        background: var(--primary-dark);
        color: white;
    }
    
    .radial-item i {
        font-size: 1.8rem;
        margin-bottom: 8px;
        color: var(--primary-color);
    }
    
    .radial-item:hover i {
        color: var(--accent-light);
    }
    
    .radial-item span {
        font-size: 0.9rem;
        text-align: center;
        padding: 0 10px;
    }
    
    /* تصميم متعرج للبرامج */
    .zigzag-programs {
        margin-top: 150px;
    }
    
    .zigzag-title {
        text-align: center;
        font-size: 2rem;
        color: var(--dark-color);
        margin-bottom: 50px;
        position: relative;
    }
    
    .zigzag-title::before,
    .zigzag-title::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 100px;
        height: 3px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    }
    
    .zigzag-title::before {
        right: 110%;
    }
    
    .zigzag-title::after {
        left: 110%;
    }
    
    .zigzag-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .zigzag-card {
        position: relative;
        width: 80%;
        margin: 0 auto;
    }
    
    .zigzag-card.reverse {
        align-self: flex-end;
    }
    
    .card-3d {
        width: 100%;
        height: 300px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 1s;
    }
    

    
    .card-front,
    .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .card-front {
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-end;
    }
    
    .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    }
    
    .card-title {
        position: relative;
        color: white;
        font-size: 1.8rem;
        padding: 30px;
        margin: 0;
        z-index: 1;
    }
    
    .card-back {
        background: white;
        transform: rotateY(180deg);
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .card-back p {
        font-size: 1.1rem;
        color: var(--text-color);
        margin-bottom: 30px;
    }
    
    .neo-btn {
        background: var(--gradient);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .neo-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    /* التكيف مع الشاشات الصغيرة */
    @media (max-width: 1024px) {
        .radial-services {
            width: 500px;
            height: 500px;
        }
        
        .radial-item {
            transform: rotate(var(--angle)) translate(200px) rotate(calc(-1 * var(--angle)));
        }
    }
    
    @media (max-width: 768px) {
        .magnetic-text {
            font-size: 3rem;
        }
        
        .typing-text {
            font-size: 1.2rem;
        }
        
        .radial-services {
            width: 100%;
            height: auto;
            margin-bottom: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .radial-center {
            position: relative;
            top: auto;
            left: auto;
            transform: none;
            margin-bottom: 30px;
        }
        
        .radial-items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            width: 100%;
            height: auto;
        }
        
        .radial-item {
            position: relative;
            top: auto;
            left: auto;
            transform: none !important;
            margin: 0;
            width: 100%;
            height: 100px;
        }
        
        .item-content {
            flex-direction: row;
            justify-content: flex-start;
            padding: 0 20px;
            border-radius: 10px;
        }
        
        .radial-item i {
            margin-bottom: 0;
            margin-left: 10px;
        }
        
        .zigzag-card,
        .zigzag-card.reverse {
            width: 100%;
            align-self: center;
        }
        
        .zigzag-title::before,
        .zigzag-title::after {
            width: 50px;
        }
    }
    
    @media (max-width: 480px) {
        .magnetic-text {
            font-size: 2.5rem;
        }
        
        .radial-items {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .card-3d {
            height: 250px;
        }
    }

        /* programs - End */


    /* Speech of the Chairman of the Council start */
        .president-message {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            overflow: hidden;
        }

        .decorative-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .decorative-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            filter: blur(20px);
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .message-header {
            position: relative;
            text-align: center;
            margin-bottom: 3rem;
            z-index: 1;
        }

        .message-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .message-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .president-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .president-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .president-details {
            text-align: right;
        }

        .president-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }

        .president-position {
            font-size: 1rem;
            color: var(--accent-color);
            font-weight: 500;
        }

        .message-content {
            position: relative;
            background-color: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            z-index: 1;
            line-height: 2;
            font-size: 1.1rem;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .message-content p {
            margin-bottom: 1.5rem;
            position: relative;
            padding-right: 1.5rem;
        }

        .message-content p::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0.8em;
            width: 8px;
            height: 8px;
            background: var(--primary-color);
            border-radius: 50%;
        }

        .highlight {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        .quote {
            font-style: italic;
            padding: 1.5rem;
            margin: 2rem 0;
            border-right: 4px solid var(--accent-color);
            background-color: rgba(92, 77, 179, 0.05);
            border-radius: 0 10px 10px 0;
            position: relative;
        }

        .quote::before {
            content: '\201C';
            font-size: 5rem;
            position: absolute;
            right: 1rem;
            top: -1rem;
            color: rgba(92, 77, 179, 0.1);
            font-family: serif;
            line-height: 1;
        }

        .signature {
            text-align: left;
            margin-top: 3rem;
            position: relative;
        }

        .signature-image {
            height: 80px;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .signature-name {
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--primary-dark);
        }

        .signature-position {
            color: var(--accent-color);
            font-size: 0.9rem;
        }

        .visual-timeline {
            position: relative;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            margin: 3rem 0;
            border-radius: 2px;
        }

        .timeline-marker {
            position: absolute;
            width: 15px;
            height: 15px;
            background: white;
            border: 3px solid var(--accent-color);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }

        .timeline-marker:nth-child(1) { left: 10%; }
        .timeline-marker:nth-child(2) { left: 30%; background: var(--primary-color); border-color: var(--primary-dark); }
        .timeline-marker:nth-child(3) { left: 50%; background: var(--accent-light); border-color: var(--accent-color); }
        .timeline-marker:nth-child(4) { left: 70%; background: var(--secondary-color); border-color: var(--primary-dark); }
        .timeline-marker:nth-child(5) { left: 90%; background: var(--accent-color); border-color: var(--accent-light); }

        @media (max-width: 768px) {
            .message-title {
                font-size: 2rem;
            }
            
            .message-content {
                padding: 2rem 1.5rem;
            }
            
            .president-info {
                flex-direction: column;
                text-align: center;
            }
            
            .president-details {
                text-align: center;
            }
            
            .quote {
                padding: 1rem;
            }
        }

        /* تأثيرات خاصة للكلمات المهمة */
        .word-animation {
            display: inline-block;
            position: relative;
        }

        .word-animation::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .word-animation:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* تأثيرات دخول عند التمرير */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }

    /* Speech of the Chairman of the Council end */



    /* Our partners start */


    /* أنماط شريحة الشركاء */
.partners-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light-color);
    overflow: hidden;
}

.section-wave-top, .section-wave-bottom {
    position: absolute;
    width: 100%;
    height: 100px;
    background-size: cover;
    z-index: 1;
}

.section-wave-top {
    top: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%230a1f3d"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%230a1f3d"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%230a1f3d"></path></svg>');
}

.section-wave-bottom {
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%230a1f3d"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%230a1f3d"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%230a1f3d"></path></svg>');
    transform: rotate(180deg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 1.5rem;
    line-height: 1.6;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.decoration-line {
    height: 2px;
    width: 100px;
    background: var(--gradient);
    margin: 0 1rem;
}

.decoration-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partners-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.partner-card {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    transition: all 0.5s ease;
}

.partner-logo-container {
    position: relative;
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: all 0.5s ease;
    z-index: 3;
    overflow: hidden;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.logo-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.partner-radial-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 2;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-card:hover .logo-hover-effect {
    opacity: 0.1;
}

.partner-card:hover .partner-radial-gradient {
    opacity: 0.3;
}

.partner-card:hover .partner-logo-container {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.partners-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.partners-cta p {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(92, 77, 179, 0.4);
}

.cta-button i {
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(92, 77, 179, 0.6);
}

.cta-button:hover i {
    transform: translateX(-5px);
}

/* تأثيرات الفقاعات العائمة */
.partners-section::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.partners-section::after {
    content: "";
    position: absolute;
    bottom: 15%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: var(--accent-light);
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* التكيف مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .partners-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
    
    .partner-card {
        height: 150px;
    }
    
    .decoration-line {
        width: 50px;
    }
    
    .decoration-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}


    /* Our partners End */



    /* رسالتنا البداية */
 /* تصميم القسم الرئيسي */
        .vision-mission-section {
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .section-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            position: relative;
        }

        .section-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 100px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* تصميم البطاقات */
        .cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .card {
            flex: 1 1 300px;
            max-width: 400px;
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 10px;
            background: var(--gradient);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: white;
            position: relative;
            z-index: 1;
        }

        .card-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: inherit;
            z-index: -1;
            opacity: 0.2;
            transform: scale(1.5);
        }

        .vision .card-icon {
            background: var(--accent-color);
        }

        .mission .card-icon {
            background: var(--primary-color);
        }

        .values .card-icon {
            background: var(--secondary-color);
        }

        .card h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
            position: relative;
            padding-bottom: 10px;
        }

        .card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .card p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        /* تصميم قائمة القيم */
        .values-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .value-item {
            background: rgba(255, 255, 255, 0.7);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }

        .value-item:hover {
            transform: translateY(-5px);
            background: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .value-item i {
            display: block;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--accent-color);
        }

        /* العناصر العائمة */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite linear;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            background: var(--primary-color);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 10%;
            right: 5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            background: var(--accent-color);
            border-radius: 50%;
            bottom: 15%;
            left: 10%;
            animation-delay: 3s;
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            background: var(--secondary-color);
            border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
            top: 50%;
            right: 20%;
            animation-delay: 6s;
        }

        .shape-4 {
            width: 250px;
            height: 250px;
            background: var(--accent-light);
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            bottom: 5%;
            right: 15%;
            animation-delay: 9s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-50px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* تأثيرات خاصة للقيم */
        .values .card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
        }

        /* التكيف مع الشاشات الصغيرة */
        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 2.5rem;
            }
            
            .card {
                flex: 1 1 100%;
                max-width: 100%;
            }
            
            .values-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .section-header h1 {
                font-size: 2rem;
            }
            
            .values-list {
                grid-template-columns: 1fr;
            }
            
            .card {
                padding: 1.5rem;
            }
            
            .card-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        /* تأثيرات إضافية */
        .glow-effect {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(92, 77, 179, 0.2) 0%, rgba(92, 77, 179, 0) 70%);
            filter: blur(20px);
            z-index: 0;
        }

        .glow-1 {
            top: -50px;
            right: -50px;
        }

        .glow-2 {
            bottom: -50px;
            left: -50px;
            background: radial-gradient(circle, rgba(78, 192, 167, 0.2) 0%, rgba(78, 192, 167, 0) 70%);
        }
    /* رسالتنا النهاية */














    
    /* اهدافنا البداية */

/* أهدافنا */
.goals-section {
    position: relative;
    padding: 5rem 2rem;
    background-color: var(--light-color);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.decoration-line {
    width: 80px;
    height: 3px;
    background: var(--gradient);
}

.decoration-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.goals-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.goal-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.goal-number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(10, 31, 61, 0.05);
    line-height: 1;
}

.goal-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.goal-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.goal-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.goal-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.3s ease;
}

.goal-card:hover .goal-wave {
    opacity: 1;
}

/* الديكورات */
.goals-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(78, 192, 167, 0.1) 0%, rgba(92, 77, 179, 0.1) 100%);
}

.deco-circle.big {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
}

.deco-circle.medium {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.deco-circle.small {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
}

.deco-wave {
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%235C4DB3" opacity=".05"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%235C4DB3" opacity=".1"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%234EC0A7" opacity=".1"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

/* تأثيرات الحركة */
[data-aos] {
    transition: all 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
    opacity: 0;
}

[data-aos].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* التكيف مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .goals-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .goal-card {
        padding: 1.5rem;
    }
}
    /* اهدافنا النهاية */



        
    /* الاعضاء البداية */
  /* أنماط القسم الرئيسي */
        .team-section {
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 70%;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--accent-color);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* تصميم أعضاء مجلس الإدارة */
        .board-members {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 6rem;
            position: relative;
        }

        .board-member-card {
            width: 300px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            margin-bottom: 2rem;
        }

        .board-member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .member-image {
            height: 250px;
            background: var(--gradient);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .member-image::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="white" stroke-width="2" stroke-dasharray="5,5" opacity="0.3"/></svg>');
            background-size: 20px 20px;
            opacity: 0.3;
        }

        .member-image i {
            font-size: 6rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .member-details {
            padding: 1.5rem;
            text-align: center;
            position: relative;
        }

        .member-details::before {
            content: '';
            position: absolute;
            top: -20px;
            right: 50%;
            transform: translateX(50%);
            width: 40px;
            height: 40px;
            background: white;
            transform: rotate(45deg);
            z-index: -1;
        }

        .member-name {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--primary-dark);
            font-weight: 700;
        }

        .member-position {
            font-size: 1rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .member-bio {
            font-size: 0.9rem;
            color: var(--text-color);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        /* تصميم الأعضاء المؤسسين */
        .founders-section {
            background: var(--gradient);
            padding: 4rem 2rem;
            border-radius: 30px;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .founders-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="white" stroke-width="2" stroke-dasharray="8,8" opacity="0.2"/></svg>');
            background-size: 30px 30px;
            opacity: 0.3;
        }

        .founders-title {
            color: white;
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .founders-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 3px;
            background: var(--accent-light);
        }

        .founders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .founder-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .founder-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .founder-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
            transition: all 0.5s ease;
            opacity: 0;
        }

        .founder-card:hover::before {
            opacity: 1;
            transform: rotate(0deg);
            top: 0;
            right: 0;
        }

        .founder-name {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .founder-role {
            color: var(--accent-light);
            font-size: 0.9rem;
        }

        /* تأثيرات الخلفية */
        .bg-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(92, 77, 179, 0.1);
            z-index: 1;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            background: rgba(78, 192, 167, 0.1);
        }

        /* تأثيرات الحركة */


        /* التكيف مع الشاشات الصغيرة */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .board-member-card {
                width: 100%;
                max-width: 350px;
            }
            
            .founders-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .founders-grid {
                grid-template-columns: 1fr;
            }
        }


    
    /* الاعضاء النهاية */









    












    /* قسم معرض الصور */
.gallery-section {
    padding: 5rem 2rem;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.deco-line {
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.5;
}

.deco-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin: 0 10px;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.gallery-event {
    perspective: 1000px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
    height: 100%;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: white;
    font-size: 2rem;
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.event-details {
    padding: 1.5rem;
}

.event-title {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.event-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.event-date::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.9rem;
}

.event-stats {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.event-stats span {
    display: flex;
    align-items: center;
}

.event-stats i {
    margin-left: 5px;
    color: var(--primary-color);
}

.event-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.event-card:hover .event-hover-effect {
    opacity: 0.1;
}

/* نافذة عرض الصور */
.gallery-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-modal.active .modal-container {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem;
    background: var(--primary-dark);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-close i {
    font-size: 1.2rem;
}

.modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.main-image-container {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.image-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.nav-btn {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 20px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.thumbnail-container {
    display: flex;
    padding: 1rem;
    overflow-x: auto;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.thumbnail-container::-webkit-scrollbar {
    height: 5px;
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

.thumbnail-item {
    min-width: 100px;
    height: 80px;
    margin-left: 10px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:first-child {
    margin-left: 0;
}

.thumbnail-item:hover, .thumbnail-item.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* تأثيرات متحركة */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* التجاوب مع الشاشات الصغيرة */
@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 1rem;
    }
    
    .modal-container {
        width: 95%;
    }
    
    .main-image-container {
        height: 50vh;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
}

    /* قسم معرض الصور */


        /* الأعضاء الداعمين البداية */

/* قسم الأعضاء الداعمين - تصميم أنيق */
.elegant-supporters {
    padding: 4rem 1rem;
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.section-description {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.supporter-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.supporter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.supporter-badge {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.supporter-content {
    flex-grow: 1;
}

.supporter-name {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.supporter-position {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* التكيف مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .supporters-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .elegant-supporters {
        padding: 3rem 1rem;
    }
    
    .supporter-item {
        padding: 1rem;
    }
    
    .supporter-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .supporter-name {
        font-size: 1rem;
    }
    
    .supporter-position {
        font-size: 0.8rem;
    }
}
        /* الأعضاء الداعمين النهاية */





        /* أنماط قسم التواصل */
.contact-section {
    position: relative;
    padding: 4rem 0;
    background-color: var(--light-color);
    overflow: hidden;
}

.contact-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.1;
    z-index: 1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -300px;
    left: -300px;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
    animation: float 12s infinite ease-in-out reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 10%;
    animation: float 8s infinite ease-in-out;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.decoration-line {
    width: 80px;
    height: 3px;
    background: var(--gradient);
    margin: 0 15px;
}

.decoration-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.phone-card {
    border-top: 4px solid var(--secondary-color);
}

.email-card {
    border-top: 4px solid var(--accent-color);
}

.location-card {
    border-top: 4px solid var(--primary-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.email-card .card-icon {
    background: var(--gradient-accent);
}

.location-card .card-icon {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card-note {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: bold;
}

.card-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
    z-index: -1;
}

.social-media {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.social-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.social-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.twitter i {
    background-color: #000000;
}

.instagram i {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.snapchat i {
    background-color: #FFFC00;
    color: #000 !important;
}

.social-icon span {
    font-size: 1rem;
    font-weight: 600;
}

.bank-accounts {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bank-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.bank-header h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 0 1rem;
}

.bank-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.account-card {
    display: flex;
    align-items: center;
    background: var(--light-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bank-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.bank-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.account-details {
    flex: 1;
}

.account-details h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.account-number {
    display: flex;
    align-items: center;
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
}

.account-number span {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--text-color);
    flex: 1;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-btn:hover {
    background: var(--primary-dark);
}

.account-qr {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
}

.account-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.location-map {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.location-map h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* التجاوب مع أحجام الشاشات المختلفة */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .account-card {
        flex-direction: column;
        text-align: center;
    }
    
    .bank-logo, .account-qr {
        margin: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .account-number {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .account-number span {
        text-align: center;
    }
}














/* ال footer */
/* أنماط الفوتر */
.footer {
    position: relative;
    background-color: var(--primary-dark);
    color: var(--light-color);
    font-family: 'Tajawal', sans-serif;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    transform: rotate(180deg);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.footer-section {
    padding: 20px;
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--primary-color);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-details i {
    color: var(--accent-light);
    width: 20px;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent-light);
    padding-right: 5px;
}

.footer-section ul li a i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.newsletter p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Tajawal', sans-serif;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: 2px solid var(--accent-color);
}

.subscribe-btn {
    padding: 12px 20px;
    background: var(--gradient-accent);
    color: var(--dark-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Tajawal', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.payment-methods {
    margin-top: 30px;
}

.payment-methods p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--dark-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* تأثيرات الحركة */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* التكيف مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}