
        :root {
            --primary-color: #1a3a6d;
            --secondary-color: #2c5aa0;
            --accent-color: #f39c12;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --success-color: #28a745;
            --gray-color: #6c757d;
            --rtl-font: 'Cairo', 'Arial', sans-serif;
            --ltr-font: 'Segoe UI', 'Roboto', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--rtl-font);
            line-height: 1.6;
            color: #333;
            background-color: #f5f7fa;
            transition: all 0.3s ease;
        }
        
        body[dir="ltr"] {
            font-family: var(--ltr-font);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        
        /* Header Styles */
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            width: 60px;
            height: 60px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--primary-color);
            font-size: 24px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: bold;
        }
        
        .language-switcher {
            display: flex;
            gap: 10px;
        }
        
        .lang-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .lang-btn.active {
            background: white;
            color: var(--primary-color);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 58, 109, 0.9), rgba(26, 58, 109, 0.8)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=1470') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 60px 20px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        #main-title {
            font-size: 42px;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            color:white;
        }
        
        #subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .progress-container {
            background: rgba(255, 255, 255, 0.2);
            height: 20px;
            border-radius: 10px;
            margin: 20px 0;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background: var(--accent-color);
            width: 80%;
            border-radius: 10px;
            transition: width 1s ease-in-out;
        }
        
        #progress-text {
            font-weight: bold;
            margin-top: 10px;
            font-size: 18px;
        }
        
        /* Sections Styling */
        section {
            padding: 60px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About Section */
.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr; /* نسبة 60% نص، 40% صورة */
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}

/* تكبير حجم النصوص قليلاً وتحسين الشكل */
.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.about-text .highlight {
    background-color: #f1f5fb;
    padding: 15px;
    border-right: 4px solid #005aa7;
    border-radius: 8px;
    margin: 20px 0;
}

    
/* الصورة */
.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


        
        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
            }
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .highlight {
            background: rgba(44, 90, 160, 0.05);
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }
        
        body[dir="rtl"] .highlight {
            border-left: none;
            border-right: 4px solid var(--accent-color);
            border-radius: 8px 0 0 8px;
        }
        
        .contact-info2 {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--secondary-color);
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            color:white;
        }
        
        .contact-info2 i {
            color: var(--accent-color);
            font-size: 20px;
        }
        
        /* Benefits Section */
        .benefits-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .benefits-section h3 {
            font-size: 12px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            padding: 30px 20px;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            width: 70px;
            height: 70px;
            background: rgba(44, 90, 160, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .benefit-icon i {
            font-size: 30px;
            color: var(--secondary-color);
        }
        
        .benefit-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        /* Timeline Section */
        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 0;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--secondary-color);
            left: 50%;
            margin-left: -2px;
        }
        
        body[dir="rtl"] .timeline:before {
            left: auto;
            right: 50%;
            margin-right: -2px;
        }
        
        .timeline li {
            margin-bottom: 50px;
            position: relative;
            list-style: none;
        }
        
        .timeline li:last-child {
            margin-bottom: 0;
        }
        
        .timeline-year {
            background: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            position: absolute;
            top: 0;
            font-weight: bold;
            left: 50%;
            transform: translateX(-50%);
        }
        
        body[dir="rtl"] .timeline-year {
            left: auto;
            right: 50%;
            transform: translateX(50%);
        }
        
        .timeline-content {
            width: calc(50% - 40px);
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        
        .timeline-content:before {
            content: '';
            position: absolute;
            top: 20px;
            width: 20px;
            height: 20px;
            background: white;
            transform: rotate(45deg);
        }
        
        .timeline li:nth-child(odd) .timeline-content {
            margin-left: auto;
        }
        
        .timeline li:nth-child(odd) .timeline-content:before {
            right: -10px;
            border-right: 1px solid #eee;
            border-top: 1px solid #eee;
        }
        
        .timeline li:nth-child(even) .timeline-content {
            margin-right: auto;
        }
        
        .timeline li:nth-child(even) .timeline-content:before {
            left: -10px;
            border-left: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        body[dir="rtl"] .timeline li:nth-child(odd) .timeline-content {
            margin-right: auto;
            margin-left: 0;
        }
        
        body[dir="rtl"] .timeline li:nth-child(odd) .timeline-content:before {
            right: auto;
            left: -10px;
            border-right: none;
            border-top: none;
            border-left: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        body[dir="rtl"] .timeline li:nth-child(even) .timeline-content {
            margin-left: auto;
            margin-right: 0;
        }
        
        body[dir="rtl"] .timeline li:nth-child(even) .timeline-content:before {
            left: auto;
            right: -10px;
            border-left: none;
            border-bottom: none;
            border-right: 1px solid #eee;
            border-top: 1px solid #eee;
        }
        
        .timeline-content h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        /* Partners Section */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            justify-items: center;
            align-items: center;
        }
        
        
           
        .gs1-timeline-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }
        
        .gs1-timeline-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 20px;
        }
        
        .gs1-timeline-title {
            font-size: 2.8rem;
            color: #1a3a6d;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .gs1-timeline-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(to right, #f39c12, #e74c3c);
            border-radius: 3px;
        }
        
        .gs1-timeline-subtitle {
            font-size: 1.3rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .gs1-timeline {
            position: relative;
            padding: 40px 0;
        }
        
        .gs1-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 6px;
            background: linear-gradient(to bottom, #1a3a6d, #2c5aa0);
            left: 50%;
            margin-left: -3px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(44, 90, 160, 0.3);
        }
        
        .gs1-timeline-item {
            margin-bottom: 70px;
            position: relative;
            list-style: none;
            display: flex;
            justify-content: flex-end;
            padding-right: 30px;
        }
        
        .gs1-timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 30px;
        }
        
        .gs1-timeline-year {
            position: absolute;
            top: 0;
            background: linear-gradient(135deg, #1a3a6d, #2c5aa0);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(26, 58, 109, 0.4);
            z-index: 1;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gs1-timeline-item:nth-child(even) .gs1-timeline-year {
            left: auto;
            right: 50%;
            transform: translateX(50%);
        }
        
        .gs1-timeline-content {
            width: calc(50% - 60px);
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.4s ease;
            border-left: 5px solid #f39c12;
        }
        
        .gs1-timeline-item:nth-child(even) .gs1-timeline-content {
            border-left: none;
            border-right: 5px solid #f39c12;
        }
        
        .gs1-timeline-content::before {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background: #2c5aa0;
            border: 4px solid white;
            border-radius: 50%;
            top: 30px;
            left: -43px;
            box-shadow: 0 0 10px rgba(44, 90, 160, 0.5);
        }
        
        .gs1-timeline-item:nth-child(even) .gs1-timeline-content::before {
            left: auto;
            right: -43px;
        }
        
        .gs1-timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .gs1-timeline-content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  color: #002f6c;
  margin-bottom: 10px;
  font-weight: bold;
}

.gs1-timeline-content h3 i {
  font-size: 1.2rem;
  color: #ff6b00;
  min-width: 20px;
  float: right;
}
        
        .gs1-timeline-content p {
            color: #555;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        .gs1-timeline-content::after {
            content: '';
            position: absolute;
            top: 30px;
            left: -15px;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-right: 15px solid white;
        }
        
        .gs1-timeline-item:nth-child(even) .gs1-timeline-content::after {
            left: auto;
            right: -15px;
            border-right: none;
            border-left: 15px solid white;
        }
        
        /* Animation for timeline items */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gs1-timeline-item {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        .gs1-timeline-item:nth-child(1) { animation-delay: 0.2s; }
        .gs1-timeline-item:nth-child(2) { animation-delay: 0.4s; }
        .gs1-timeline-item:nth-child(3) { animation-delay: 0.6s; }
        .gs1-timeline-item:nth-child(4) { animation-delay: 0.8s; }
        .gs1-timeline-item:nth-child(5) { animation-delay: 1s; }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .gs1-timeline::before {
                left: 30px;
            }
            
            .gs1-timeline-item,
            .gs1-timeline-item:nth-child(even) {
                justify-content: flex-start;
                padding-right: 0;
                padding-left: 70px;
            }
            
            .gs1-timeline-year {
                left: 30px;
                transform: none;
            }
            
            .gs1-timeline-item:nth-child(even) .gs1-timeline-year {
                left: 30px;
                right: auto;
                transform: none;
            }
            
            .gs1-timeline-content {
                width: 100%;
            }
            
            .gs1-timeline-content::before {
                left: -43px;
            }
            
            .gs1-timeline-content::after {
                left: -15px;
                border-right: 15px solid white;
                border-left: none;
            }
            
            .gs1-timeline-item:nth-child(even) .gs1-timeline-content::before,
            .gs1-timeline-item:nth-child(even) .gs1-timeline-content::after {
                left: -43px;
                right: auto;
                border-left: none;
                border-right: 15px solid white;
            }
        }
        
        @media (max-width: 768px) {
            .gs1-timeline-title {
                font-size: 2.2rem;
            }
            
            .gs1-timeline-subtitle {
                font-size: 1.1rem;
            }
            
            .gs1-timeline-content {
                padding: 20px;
            }
            
            .gs1-timeline-content h3 {
                font-size: 1.3rem;
            }
        }
        
        .gs1-timeline-footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: #6c757d;
            font-size: 1.1rem;
        }
        
        .gs1-logo {
            display: inline-block;
            background: linear-gradient(135deg, #1a3a6d, #2c5aa0);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin: 0 10px;
            vertical-align: middle;
        }

        
        .partner-logo {
            width: 150px;
            height: 80px;
            background: #f0f4f8;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--gray-color);
            font-size: 14px;
        }
        
        /* Contact Section */
        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--dark-color);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }
        
        .submit-btn {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px auto 0;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
        }
        
        /* FAQ Section */
        .faq-section {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            font-size: 18px;
            color: var(--primary-color);
            background: rgba(44, 90, 160, 0.03);
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        .faq-answer p {
            line-height: 1.8;
        }

        
        /* Responsive Design */
        @media (max-width: 992px) {
            .timeline-content {
                width: calc(100% - 40px);
                margin: 0 auto 50px !important;
            }
            
            .timeline-content:before {
                display: none;
            }
            
            .timeline:before {
                left: 30px;
            }
            
            body[dir="rtl"] .timeline:before {
                right: 30px;
                left: auto;
            }
            
            .timeline-year {
                left: 30px;
                transform: none;
            }
            
            body[dir="rtl"] .timeline-year {
                right: 30px;
                left: auto;
                transform: none;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .logo {
                justify-content: center;
            }
            
            .hero {
                padding: 40px 20px;
            }
            
            #main-title {
                font-size: 32px;
            }
            
            #subtitle {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }
        