 

        /* --- START: Preloader and Page Reveal Styles --- */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #111; /* Dark background */
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 2.8s ease-in-out, visibility 0.8s ease-in-out;
        }
        .preloader-logo {
            max-width: 250px;
            animation: pulse 1.8s infinite ease-in-out;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(1); opacity: 0.7; }
        }
        #preloader.preloader-hidden {
            opacity: 0;
            visibility: hidden;
        }
        /* Hide content initially */
        header, main, footer {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 1.4s ease-out 0.8s, transform 1.4s ease-out 0.8s;
        }
        /* Show content when body has 'loaded' class */
        body.loaded header,
        body.loaded main,
        body.loaded footer {
            opacity: 1;
            transform: translateY(0);
        }
        /* --- END: Preloader and Page Reveal Styles --- */


        /* Styles from File 1 */
        body { font-family: 'Cairo', sans-serif; scroll-behavior: smooth; background-color: #f8f9fa; }
        .hero-bg { background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80'); }
        .cta-bg { background-image: linear-gradient(to right, rgba(122, 32, 54, 0.95), rgba(154, 44, 65, 0.95)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1500&q=80'); }
        .card-hover { transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; }
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        }
        .typed-cursor { font-size: 4rem; color: #9A2C41; animation: blink 0.7s infinite; }
        @keyframes blink { 50% { opacity: 0; } }
        .glow-button { transition: all 0.3s ease-in-out; }
        .glow-button:hover { box-shadow: 0 0 10px #9A2C41, 0 0 30px #9A2C41; }
        .tab-content { transition: opacity 0.3s ease-in-out, max-height 0.4s ease-in-out; }

        /* Styles from File 2 */
        :root { --primary-dark: #7A2036; --primary-light: #9A2C41; --secondary: #9A2C41; --dark: #1E1E1E; --light: #F5F5F5; --gray: #888; --light-gray: #eaeaea; --gold: #D4AF37; --silver: #C0C0C0; }
        .new-section-container { width: 90%; max-width: 1400px; margin: 0px auto; padding: 20px; }
        .new-section { padding: 100px 0px; position: relative; font-family: 'Tajawal', sans-serif; }
        .section-header { text-align: center; margin-bottom: 70px; }
        .section-header h2 { font-size: 2.8rem; color: var(--primary-dark); margin-bottom: 20px; position: relative; display: inline-block; text-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px; }
        .section-header h2::after { content: ""; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 100px; height: 4px; background: linear-gradient(to right, var(--gold), var(--primary-light)); border-radius: 2px; }
        .section-header p { color: var(--gray); max-width: 800px; margin: 25px auto 0px; font-size: 1.2rem; line-height: 1.8; }
        
        #about .content { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
        .about-text { flex: 1 1 50%; min-width: 300px; }
        .about-image { flex: 1 1 40%; min-width: 300px; border-radius: 10px; overflow: hidden; box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 40px; height: auto; position: relative; }
        .about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
        .about-image:hover img { transform: scale(1.05); }
        .about-text p { margin-bottom: 25px; font-size: 1.15rem; line-height: 1.9; text-align: justify; }
        .vision-mission { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 40px; }
        .vm-card { flex: 1 1 300px; background: white; padding: 35px; border-radius: 10px; box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 30px; border-top: 4px solid var(--primary-light); transition: 0.4s; position: relative; overflow: hidden; }
        .vm-card:hover { transform: translateY(-10px); box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 40px; }
        .vm-card h3 { color: var(--primary-dark); margin-bottom: 20px; font-size: 1.6rem; display: flex; align-items: center; }
        .vm-card h3 i { margin-left: 10px; color: var(--secondary); background: rgba(154, 44, 65, 0.1); width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }

        #services { background: linear-gradient(rgb(249, 249, 249), rgb(240, 240, 240)); }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
        .service-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 25px; transition: 0.4s; border-top: 4px solid var(--primary-light); display: flex; flex-direction: column; height: 100%; position: relative; z-index: 1; }
        .service-card::before { content: ""; position: absolute; top: 0px; left: 0px; width: 100%; height: 0px; background: linear-gradient(to bottom, var(--primary-light), var(--primary-dark)); transition: 0.5s; z-index: -1; }
        .service-card:hover::before { height: 100%; }
        .service-card:hover { transform: translateY(-10px); box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 40px; }
        .service-card:hover .service-content h3, .service-card:hover .service-content p, .service-card:hover .service-icon i { color: white; }
        .service-content { padding: 30px; flex: 1 1 0%; text-align: center; }
        .service-icon { font-size: 3.5rem; color: var(--primary-light); margin-bottom: 25px; text-align: center; transition: 0.4s; }
        .service-content h3 { color: var(--primary-dark); margin-bottom: 20px; font-size: 1.6rem; text-align: center; transition: 0.4s; }
        .service-content p { text-align: center; color: var(--gray); line-height: 1.8; transition: 0.4s; }

        #values { background: linear-gradient(rgba(122, 32, 54, 0.9), rgba(122, 32, 54, 0.9)) fixed, url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80"); color: white; position: relative; overflow: hidden; background-attachment: fixed; }
        #values::before { content: ""; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(122, 32, 54, 0.8)); }
        .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; position: relative; z-index: 2; }
        .value-card { text-align: center; padding: 35px 25px; background: rgba(255, 255, 255, 0.1); border-radius: 12px; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); transition: 0.4s; box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 30px; }
        .value-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.15); box-shadow: rgba(0, 0, 0, 0.3) 0px 15px 40px; }
        .value-card i { font-size: 3rem; color: var(--light); margin-bottom: 25px; background: rgba(212, 175, 55, 0.1); width: 80px; height: 80px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.4s; }
        .value-card:hover i { transform: scale(1.1); background: rgba(212, 175, 55, 0.2); }
        .value-card h3 { margin: 20px 0px; font-size: 1.6rem; color: var(--light); }
        .value-card ul { text-align: right; list-style-position: inside; padding-right: 20px; list-style: none; }
        .value-card li { margin-bottom: 15px; position: relative; padding-right: 25px; font-size: 1.1rem; line-height: 1.8; }
        .value-card li::before { content: "•"; position: absolute; right: 0px; top: 0px; width: 10px; height: 10px; color: var(--light); }
        .value-card p {line-height: 1.8; font-size: 1.1rem;}
        
        
       /* قائمة وسائل التواصل الاجتماعي الجانبية */
.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-sidebar a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-sidebar a:hover::before {
    transform: scale(1);
}

.social-sidebar a:hover {
    transform: scale(1.1);
    color: white;
}

/* ألوان وسائل التواصل الاجتماعي */
.social-facebook {
    color: #1877f2;
}

.social-facebook::before {
    background: #1877f2;
}

.social-twitter {
    color: #1da1f2;
}

.social-twitter::before {
    background: #1da1f2;
}

.social-instagram {
    color: #e4405f;
}

.social-instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-linkedin {
    color: #0077b5;
}

.social-linkedin::before {
    background: #0077b5;
}

.social-youtube {
    color: #ff0000;
}

.social-youtube::before {
    background: #ff0000;
}

.social-whatsapp {
    color: #25d366;
}

.social-whatsapp::before {
    background: #25d366;
}

/* --- الأنماط الجديدة --- */
.social-snapchat {
    color: #FFFC00; /* أصفر سناب شات */
}

.social-snapchat::before {
    background: #FFFC00;
}

.social-tiktok {
    color: #000000; /* أسود تيك توك */
}

.social-tiktok::before {
    /* تدرج لوني يجمع بين ألوان تيك توك */
    background: linear-gradient(45deg, #ff0050, #00f2ea, #000000);
}
/* --- نهاية الأنماط الجديدة --- */


/* قسم الشركاء */
.partners-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    margin-top: 50px;
    overflow: hidden;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #7a2036;
    margin-bottom: 20px;
    position: relative;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.partners-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-slider {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 15px;
    padding: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partners-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 60px;
    align-items: center;
}

.partner-logo {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* تحريك الشعارات */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* إيقاف التحريك عند التمرير */
.partners-track:hover {
    animation-play-state: paused;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .social-sidebar {
        right: 10px;
        padding: 15px 8px;
        gap: 10px;
    }
    
    .social-sidebar a {
        width: 40px;
        height: 40px;
    }
    
    .partners-title {
        font-size: 2rem;
    }
    
    .partners-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .partner-logo {
        width: 120px;
        height: 80px;
        padding: 15px;
    }
    
    .partners-track {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .social-sidebar {
        right: 5px;
        padding: 10px 5px;
        gap: 8px;
    }
    
    .social-sidebar a {
        width: 35px;
        height: 35px;
    }
    
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-title {
        font-size: 1.8rem;
    }
    
    .partner-logo {
        width: 100px;
        height: 70px;
        padding: 10px;
    }
    
    .partners-track {
        gap: 30px;
    }
}

/* تأثيرات إضافية */
.social-sidebar a svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.social-sidebar a:hover svg {
    transform: scale(1.1);
}

/* تدرج خلفية قسم الشركاء */
.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain )"/></svg>');
    pointer-events: none;
}

/* تأثير الظهور التدريجي */
.partners-section {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تأثير النبض للشعارات */
.partner-logo {
    animation: pulse 3s ease-in-out infinite;
}

.partner-logo:nth-child(2n) {
    animation-delay: 0.5s;
}

.partner-logo:nth-child(3n) {
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}
  
        
        
        
