/**
 * Dalilak Scholarship Data
 * Re-exports types and helpers from scholarshipTypes.ts for backward compatibility
 * Data entries below use the enhanced schema
 */
import type { ScholarshipDetail, ScholarshipTag, ContentStatus, RelatedService, ScholarshipFAQ } from "./scholarshipTypes";
export type { ScholarshipDetail, ScholarshipTag, ContentStatus, RelatedService, ScholarshipFAQ };
export {
  computeScholarshipStatus,
  getStatusLabelAr,
  getStatusLabelEn,
  getStatusColor,
  getStatusDotColor,
  sortScholarshipsByPriority,
  getActiveScholarships,
  getVisibleScholarships,
  getUniqueCountries,
  getUniqueFundingTypes,
  getScholarshipsByTag,
  getScholarshipsByLevel,
  getScholarshipsByCountry,
} from "./scholarshipTypes";

// Backward-compatible alias
export function getScholarshipStatus(deadline: string): "open" | "closing" | "closed" | "upcoming" {
  const today = new Date();
  const deadlineDate = new Date(deadline);
  const diffDays = Math.ceil((deadlineDate.getTime() - today.getTime()) / (1000 * 60 * 60 * 24));
  if (diffDays < 0) return "closed";
  if (diffDays <= 14) return "closing";
  if (diffDays > 180) return "upcoming";
  return "open";
}

export const scholarships: ScholarshipDetail[] = [
  {
    id: 1,
    slug: "turkish-government-scholarship",
    titleAr: "منحة الحكومة التركية (Türkiye Bursları)",
    titleEn: "Turkish Government Scholarship (Türkiye Bursları)",
    countryAr: "تركيا",
    countryEn: "Turkey",
    flag: "🇹🇷",
    levelAr: "بكالوريوس / ماجستير / دكتوراه",
    levelEn: "Bachelor / Master / PhD",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "جميع التخصصات",
    fieldEn: "All Fields",
    deadline: "2027-02-20",
    descAr: "تغطي الرسوم الدراسية والسكن والتأمين الصحي وراتب شهري وتذاكر الطيران وسنة تحضيرية للغة التركية",
    descEn: "Covers tuition, accommodation, health insurance, monthly stipend, flights, and a preparatory Turkish language year",
    status: "open",
    link: "https://turkiyeburslari.gov.tr",
    image: "https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "منحة الحكومة التركية (Türkiye Bursları) هي واحدة من أقوى وأشمل برامج المنح الدراسية في العالم. تُقدم سنوياً من قبل الحكومة التركية وتستهدف الطلاب الدوليين المتميزين من جميع أنحاء العالم، بما في ذلك الدول العربية. تتميز هذه المنحة بأنها ممولة بالكامل وتشمل التنسيب الجامعي التلقائي، مما يعني أنك لن تحتاج للتقديم على الجامعات بشكل منفصل. تركيا وجهة مثالية للطلاب العرب بفضل التقارب الثقافي والديني، وجودة التعليم العالي، وتكاليف المعيشة المعقولة مقارنة بأوروبا.",
    overviewEn: "The Turkish Government Scholarship (Türkiye Bursları) is one of the most comprehensive scholarship programs globally. Offered annually by the Turkish government, it targets outstanding international students worldwide, including Arab countries. This fully-funded scholarship includes automatic university placement, meaning you won't need to apply to universities separately. Turkey is an ideal destination for Arab students due to cultural and religious proximity, quality higher education, and reasonable living costs compared to Europe.",
    benefitsAr: [
      "تغطية كاملة للرسوم الدراسية طوال فترة الدراسة",
      "راتب شهري: 3,500 ليرة تركية للبكالوريوس، 5,000 للماجستير، 6,500 للدكتوراه",
      "سكن جامعي مجاني أو بدل سكن",
      "تأمين صحي حكومي شامل",
      "تذكرة طيران ذهاباً وإياباً (مرة واحدة)",
      "سنة تحضيرية كاملة لتعلم اللغة التركية مجاناً",
      "التنسيب الجامعي التلقائي في جامعات حكومية مرموقة"
    ],
    benefitsEn: [
      "Full tuition coverage for the entire study period",
      "Monthly stipend: 3,500 TL for Bachelor's, 5,000 for Master's, 6,500 for PhD",
      "Free university dormitory or housing allowance",
      "Comprehensive government health insurance",
      "Round-trip flight ticket (one-time)",
      "Free one-year Turkish language preparatory course",
      "Automatic university placement at prestigious public universities"
    ],
    eligibilityAr: [
      "ألا تكون مواطناً تركياً أو قد فقدت الجنسية التركية",
      "العمر: أقل من 21 سنة للبكالوريوس، 30 للماجستير، 35 للدكتوراه",
      "المعدل الأكاديمي: 70% فأعلى للبكالوريوس، 75% للماجستير والدكتوراه",
      "90% فأعلى لتخصصات العلوم الصحية (طب، صيدلة، طب أسنان)",
      "ألا تكون مسجلاً حالياً في جامعة تركية بنفس المرحلة الدراسية",
      "الطلاب العرب مؤهلون ومرحب بهم للتقديم"
    ],
    eligibilityEn: [
      "Must not be a Turkish citizen or have lost Turkish citizenship",
      "Age: Under 21 for Bachelor's, 30 for Master's, 35 for PhD",
      "Academic GPA: 70%+ for Bachelor's, 75%+ for Master's and PhD",
      "90%+ for health sciences (Medicine, Pharmacy, Dentistry)",
      "Must not be currently enrolled at a Turkish university at the same level",
      "Arab students are eligible and welcome to apply"
    ],
    documentsAr: [
      "صورة شخصية حديثة بخلفية بيضاء",
      "نسخة من جواز السفر أو الهوية الوطنية",
      "الشهادات الأكاديمية (ثانوية عامة أو شهادة جامعية) مترجمة للتركية أو الإنجليزية",
      "كشف الدرجات الأكاديمي",
      "خطاب النوايا (Motivation Letter) - مهم جداً",
      "خطابات توصية (1-2 خطاب من أساتذة أو مشرفين)",
      "شهادات لغة إن وجدت (IELTS, TOEFL, TÖMER)",
      "شهادات خبرة أو أنشطة تطوعية إن وجدت",
      "مقترح بحثي (للدكتوراه فقط)"
    ],
    documentsEn: [
      "Recent passport-size photo with white background",
      "Copy of passport or national ID",
      "Academic certificates (high school or university degree) translated to Turkish or English",
      "Academic transcript",
      "Motivation Letter - very important",
      "Recommendation letters (1-2 from professors or supervisors)",
      "Language certificates if available (IELTS, TOEFL, TÖMER)",
      "Work experience or volunteer activity certificates if available",
      "Research proposal (PhD only)"
    ],
    stepsAr: [
      { title: "إنشاء حساب", desc: "قم بزيارة موقع المنحة الرسمي turkiyeburslari.gov.tr وأنشئ حساباً شخصياً باستخدام بريدك الإلكتروني" },
      { title: "تعبئة الطلب", desc: "املأ جميع أقسام الطلب بعناية، بما في ذلك معلوماتك الشخصية وخلفيتك الأكاديمية وخبراتك" },
      { title: "رفع المستندات", desc: "قم بمسح جميع المستندات المطلوبة ضوئياً (scan) وارفعها بصيغة PDF بجودة عالية" },
      { title: "اختيار التخصصات", desc: "يمكنك اختيار ما يصل إلى 12 تخصصاً وجامعة. حاول التنويع بين الجامعات الكبرى والمدن المختلفة" },
      { title: "كتابة خطاب النوايا", desc: "اشرح فيه لماذا اخترت تركيا، ولماذا تستحق هذه المنحة، وما هي أهدافك المستقبلية. هذا أهم جزء في الطلب" },
      { title: "المراجعة والتقديم", desc: "راجع طلبك جيداً للتأكد من خلوه من الأخطاء ثم قم بتقديمه قبل الموعد النهائي" }
    ],
    stepsEn: [
      { title: "Create an Account", desc: "Visit turkiyeburslari.gov.tr and create a personal account using your email address" },
      { title: "Fill the Application", desc: "Complete all sections carefully, including personal information, academic background, and experiences" },
      { title: "Upload Documents", desc: "Scan all required documents and upload them in high-quality PDF format" },
      { title: "Select Programs", desc: "You can choose up to 12 programs and universities. Diversify between major universities and different cities" },
      { title: "Write Motivation Letter", desc: "Explain why you chose Turkey, why you deserve this scholarship, and your future goals. This is the most important part" },
      { title: "Review and Submit", desc: "Review your application thoroughly for errors and submit before the deadline" }
    ],
    tipsAr: [
      "ابدأ التحضير مبكراً — لا تنتظر آخر أسبوع للتقديم",
      "اكتب خطاب نوايا شخصي ومميز — تجنب النسخ من الإنترنت",
      "اذكر أنشطتك التطوعية والمجتمعية — المنحة تقدر القيادة والمبادرة",
      "اختر تخصصات متنوعة — لا تضع كل خياراتك في تخصص واحد",
      "تحضر جيداً للمقابلة — اقرأ عن تركيا وعن التخصص الذي اخترته",
      "استخدم خدمة مراجعة الطلبات من دليلك للحصول على ملاحظات احترافية"
    ],
    tipsEn: [
      "Start preparing early — don't wait until the last week to apply",
      "Write a personal and unique motivation letter — avoid copying from the internet",
      "Mention volunteer and community activities — the scholarship values leadership and initiative",
      "Choose diverse programs — don't put all options in one field",
      "Prepare well for the interview — read about Turkey and your chosen field",
      "Use Dalilak's application review service for professional feedback"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "10 يناير 2026" },
      { label: "آخر موعد للتقديم", date: "20 فبراير 2026" },
      { label: "تقييم الطلبات", date: "مارس - أبريل 2026" },
      { label: "المقابلات الشخصية", date: "أبريل - يونيو 2026" },
      { label: "إعلان النتائج", date: "يوليو 2026" },
      { label: "بدء الدراسة", date: "سبتمبر 2026" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "January 10, 2026" },
      { label: "Application Deadline", date: "February 20, 2026" },
      { label: "Application Review", date: "March - April 2026" },
      { label: "Interviews", date: "April - June 2026" },
      { label: "Results Announcement", date: "July 2026" },
      { label: "Study Begins", date: "September 2026" }
    ],
    relatedBlogSlugs: [
      "turkish-scholarship-2026-yemeni-guide",
      "turkish-scholarship-interview-tips",
      "turkish-universities-recognized-yemen",
      "english-taught-scholarships-turkey-2026",
      "motivation-letter-scholarship-guide"
    ],
    openingDate: "2027-01-10",
    expectedOpeningMonth: 1,
    lastChecked: "2026-05-01",
    officialSourceUrl: "https://turkiyeburslari.gov.tr",
    contentStatus: "published",
    tags: ["fully-funded", "all-levels", "all-fields", "includes-stipend", "includes-housing", "includes-travel", "includes-insurance", "language-prep", "recurring-annual"],
    relatedServices: ["application-review", "motivation-letter", "consultation"],
    faqAr: [
      { questionAr: "هل يمكنني التقديم بدون شهادة لغة؟", questionEn: "Can I apply without a language certificate?", answerAr: "نعم، شهادة اللغة ليست إلزامية للتقديم. المنحة توفر سنة تحضيرية لتعلم التركية.", answerEn: "Yes, a language certificate is not mandatory. The scholarship provides a preparatory year for Turkish language." },
      { questionAr: "كم عدد الجامعات التي يمكنني اختيارها؟", questionEn: "How many universities can I choose?", answerAr: "يمكنك اختيار حتى 12 تخصصاً وجامعة في طلب واحد.", answerEn: "You can choose up to 12 programs and universities in one application." },
      { questionAr: "هل المنحة متاحة لجميع الجنسيات العربية؟", questionEn: "Is the scholarship available for all Arab nationalities?", answerAr: "نعم، المنحة مفتوحة لجميع الجنسيات غير التركية بما فيها جميع الدول العربية.", answerEn: "Yes, the scholarship is open to all non-Turkish nationalities including all Arab countries." }
    ],
  },
  {
    id: 2,
    slug: "chevening-scholarship-uk",
    titleAr: "منحة تشيفنينغ البريطانية",
    titleEn: "Chevening Scholarship (UK)",
    countryAr: "بريطانيا",
    countryEn: "United Kingdom",
    flag: "🇬🇧",
    levelAr: "ماجستير",
    levelEn: "Master's",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "جميع التخصصات",
    fieldEn: "All Fields",
    deadline: "2026-11-05",
    descAr: "منحة حكومية بريطانية مرموقة تغطي كامل تكاليف الدراسة والمعيشة في بريطانيا لمدة عام واحد",
    descEn: "Prestigious UK government scholarship covering full tuition and living costs for one year",
    status: "open",
    link: "https://www.chevening.org",
    image: "https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "منحة تشيفنينغ هي برنامج المنح الدراسية الرائد للحكومة البريطانية، وتُعد من أعرق المنح في العالم. تستهدف القادة المستقبليين وصناع التغيير من جميع أنحاء العالم لدراسة الماجستير في أي جامعة بريطانية. تتميز المنحة بشبكة خريجين عالمية تضم أكثر من 50,000 خريج في مناصب قيادية حول العالم. تمثل تشيفنينغ فرصة استثنائية للحصول على تعليم بريطاني عالمي المستوى وبناء شبكة علاقات دولية قوية.",
    overviewEn: "Chevening is the UK government's flagship scholarship program and one of the most prestigious globally. It targets future leaders and change-makers worldwide to study a Master's at any UK university. The scholarship features a global alumni network of over 50,000 graduates in leadership positions. Chevening represents an exceptional opportunity for world-class British education and building a strong international network.",
    benefitsAr: [
      "تغطية كاملة للرسوم الدراسية في أي جامعة بريطانية",
      "بدل معيشة شهري يغطي السكن والطعام والمواصلات",
      "تذكرة طيران ذهاباً وإياباً إلى بريطانيا",
      "بدل وصول لتغطية تكاليف الاستقرار الأولي",
      "بدل أطروحة أو مشروع تخرج",
      "بدل سفر للمشاركة في فعاليات تشيفنينغ",
      "الانضمام لشبكة خريجي تشيفنينغ العالمية"
    ],
    benefitsEn: [
      "Full tuition coverage at any UK university",
      "Monthly living allowance covering accommodation, food, and transport",
      "Return flight to the UK",
      "Arrival allowance for initial settling costs",
      "Thesis or dissertation grant",
      "Travel grant for Chevening events",
      "Access to the global Chevening alumni network"
    ],
    eligibilityAr: [
      "أن تكون من دولة مؤهلة (تشمل الدول العربية)",
      "حاصل على شهادة بكالوريوس تعادل درجة 2:1 البريطانية",
      "خبرة عملية لا تقل عن سنتين (2,800 ساعة)",
      "التقديم على 3 برامج ماجستير مختلفة في جامعات بريطانية",
      "العودة إلى بلدك لمدة سنتين على الأقل بعد انتهاء المنحة",
      "إجادة اللغة الإنجليزية (IELTS 6.5 أو ما يعادله)",
      "إظهار صفات قيادية وخطة واضحة للمساهمة في مجتمعك"
    ],
    eligibilityEn: [
      "Must be from an eligible country (includes Arab countries)",
      "Hold a bachelor's degree equivalent to a UK 2:1",
      "Minimum 2 years work experience (2,800 hours)",
      "Apply to 3 different Master's programs at UK universities",
      "Return to your country for at least 2 years after the scholarship",
      "English proficiency (IELTS 6.5 or equivalent)",
      "Demonstrate leadership qualities and a clear plan to contribute to your community"
    ],
    documentsAr: [
      "جواز سفر ساري المفعول",
      "شهادة البكالوريوس وكشف الدرجات",
      "شهادة إجادة اللغة الإنجليزية (IELTS/TOEFL)",
      "خطابات توصية (2 خطاب)",
      "السيرة الذاتية المحدثة",
      "إثبات خبرة العمل",
      "مقالات التقديم (4 مقالات قصيرة)"
    ],
    documentsEn: [
      "Valid passport",
      "Bachelor's degree certificate and transcript",
      "English language certificate (IELTS/TOEFL)",
      "Two recommendation letters",
      "Updated CV/Resume",
      "Proof of work experience",
      "Application essays (4 short essays)"
    ],
    stepsAr: [
      { title: "التحقق من الأهلية", desc: "تأكد من استيفائك لجميع شروط الأهلية قبل البدء في التقديم" },
      { title: "اختيار البرامج", desc: "ابحث واختر 3 برامج ماجستير في جامعات بريطانية مختلفة تناسب أهدافك المهنية" },
      { title: "التقديم عبر الموقع", desc: "أنشئ حساباً على موقع تشيفنينغ واملأ نموذج التقديم بعناية مع كتابة المقالات الأربعة" },
      { title: "القبول الجامعي", desc: "قدم على البرامج الثلاثة التي اخترتها واحصل على قبول غير مشروط من واحدة على الأقل" },
      { title: "المقابلة", desc: "إذا تم ترشيحك، ستُدعى لمقابلة شخصية. حضّر جيداً لإظهار قدراتك القيادية ورؤيتك المستقبلية" },
      { title: "النتائج والسفر", desc: "في حال القبول، ستتلقى عرضاً رسمياً وتبدأ إجراءات التأشيرة والسفر" }
    ],
    stepsEn: [
      { title: "Check Eligibility", desc: "Ensure you meet all eligibility criteria before starting your application" },
      { title: "Choose Programs", desc: "Research and select 3 Master's programs at different UK universities aligned with your career goals" },
      { title: "Apply Online", desc: "Create an account on the Chevening website and carefully complete the application form with 4 essays" },
      { title: "University Admission", desc: "Apply to your 3 chosen programs and secure an unconditional offer from at least one" },
      { title: "Interview", desc: "If shortlisted, you'll be invited for an interview. Prepare to showcase your leadership and future vision" },
      { title: "Results and Travel", desc: "If accepted, you'll receive a formal offer and begin visa and travel arrangements" }
    ],
    tipsAr: [
      "ركز على إبراز تجربتك القيادية في مقالات التقديم",
      "اختر برامج ماجستير مرتبطة بخطتك المهنية بوضوح",
      "ابدأ التحضير لاختبار IELTS مبكراً — تحتاج 6.5 على الأقل",
      "تواصل مع خريجي تشيفنينغ العرب للحصول على نصائح",
      "اكتب عن كيف ستستخدم المنحة لخدمة مجتمعك بعد عودتك"
    ],
    tipsEn: [
      "Focus on highlighting your leadership experience in application essays",
      "Choose Master's programs clearly linked to your career plan",
      "Start IELTS preparation early — you need at least 6.5",
      "Connect with Arab Chevening alumni for advice",
      "Write about how you'll use the scholarship to serve your community upon return"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "أغسطس 2025" },
      { label: "آخر موعد للتقديم", date: "5 نوفمبر 2025" },
      { label: "المقابلات", date: "فبراير - مارس 2026" },
      { label: "إعلان النتائج", date: "يونيو 2026" },
      { label: "بدء الدراسة", date: "سبتمبر 2026" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "August 2025" },
      { label: "Application Deadline", date: "November 5, 2025" },
      { label: "Interviews", date: "February - March 2026" },
      { label: "Results Announcement", date: "June 2026" },
      { label: "Study Begins", date: "September 2026" }
    ],
    relatedBlogSlugs: [
      "chevening-scholarship-2026-arab-guide",
      "motivation-letter-scholarship-guide",
      "ielts-preparation-guide-yemeni-students",
      "study-uk-guide-yemeni-students"
    ],
    openingDate: "2026-08-01",
    expectedOpeningMonth: 9,
    lastChecked: "2026-05-01",
    officialSourceUrl: "https://www.chevening.org/scholarships",
    contentStatus: "published",
    tags: ["fully-funded", "masters", "includes-stipend", "includes-travel", "includes-insurance", "recurring-annual"],
    relatedServices: ["application-review", "motivation-letter", "consultation"],
    faqAr: [
      { questionAr: "هل يمكنني التقديم بدون خبرة عمل؟", questionEn: "Can I apply without work experience?", answerAr: "لا، يشترط وجود خبرة عملية لا تقل عن سنتين (2,800 ساعة) قبل التقديم.", answerEn: "No, a minimum of 2 years work experience (2,800 hours) is required before applying." },
      { questionAr: "هل يجب العودة لبلدي بعد المنحة؟", questionEn: "Do I have to return to my country after the scholarship?", answerAr: "نعم، يشترط العودة لبلدك لمدة سنتين على الأقل بعد انتهاء الدراسة.", answerEn: "Yes, you must return to your country for at least 2 years after completing your studies." }
    ],
  },
  {
    id: 3,
    slug: "daad-scholarship-germany",
    titleAr: "منحة DAAD الألمانية",
    titleEn: "DAAD Scholarship (Germany)",
    countryAr: "ألمانيا",
    countryEn: "Germany",
    flag: "🇩🇪",
    levelAr: "ماجستير / دكتوراه",
    levelEn: "Master / PhD",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "جميع التخصصات",
    fieldEn: "All Fields",
    deadline: "2026-10-15",
    descAr: "منحة ألمانية تشمل راتب شهري وتأمين صحي وبدل سفر ودورة لغة ألمانية",
    descEn: "German scholarship including monthly stipend, health insurance, travel allowance, and German language course",
    status: "open",
    link: "https://www.daad.de",
    image: "https://images.unsplash.com/photo-1467269204594-9661b134dd2b?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "منحة DAAD (الهيئة الألمانية للتبادل الأكاديمي) هي أكبر منظمة تمويل أكاديمي في العالم. تقدم سنوياً آلاف المنح للطلاب الدوليين للدراسة في ألمانيا. تتميز ألمانيا بنظام تعليمي عالمي المستوى، وجامعات مصنفة ضمن أفضل الجامعات عالمياً، بالإضافة إلى أن معظم برامج الماجستير والدكتوراه متاحة باللغة الإنجليزية. تمثل ألمانيا فرصة استثنائية للحصول على تعليم متقدم في بيئة بحثية رائدة.",
    overviewEn: "DAAD (German Academic Exchange Service) is the world's largest academic funding organization. It annually offers thousands of scholarships for international students to study in Germany. Germany features a world-class education system with globally ranked universities, and most Master's and PhD programs are available in English. Germany represents an exceptional opportunity for advanced education in a leading research environment.",
    benefitsAr: [
      "راتب شهري: 934 يورو للماجستير، 1,300 يورو للدكتوراه",
      "تأمين صحي شامل",
      "بدل سفر حسب بلد المنشأ",
      "دورة لغة ألمانية مجانية (2-6 أشهر)",
      "بدل بحث ومواد دراسية",
      "إعفاء من الرسوم الدراسية (معظم الجامعات الألمانية مجانية أصلاً)",
      "دعم إضافي للعائلة إن وجدت"
    ],
    benefitsEn: [
      "Monthly stipend: €934 for Master's, €1,300 for PhD",
      "Comprehensive health insurance",
      "Travel allowance based on country of origin",
      "Free German language course (2-6 months)",
      "Research and study materials allowance",
      "Tuition waiver (most German universities are tuition-free anyway)",
      "Additional family support if applicable"
    ],
    eligibilityAr: [
      "شهادة بكالوريوس بتقدير جيد جداً على الأقل",
      "خبرة عملية لا تقل عن سنتين (لبعض البرامج)",
      "إجادة اللغة الإنجليزية (IELTS 6.0+) أو الألمانية (B1+)",
      "خطة بحثية واضحة (للدكتوراه)",
      "ألا يكون قد مضى أكثر من 6 سنوات على التخرج",
      "الالتزام بالعودة إلى بلدك بعد انتهاء الدراسة"
    ],
    eligibilityEn: [
      "Bachelor's degree with at least a very good grade",
      "Minimum 2 years work experience (for some programs)",
      "English proficiency (IELTS 6.0+) or German (B1+)",
      "Clear research plan (for PhD)",
      "No more than 6 years since graduation",
      "Commitment to return to your home country after studies"
    ],
    documentsAr: [
      "نموذج طلب DAAD المكتمل",
      "السيرة الذاتية بتنسيق Europass",
      "خطاب الدافع (Motivation Letter)",
      "الشهادات الأكاديمية مع الترجمة المعتمدة",
      "خطابات توصية أكاديمية (2 خطاب)",
      "شهادة لغة (IELTS/TOEFL أو شهادة ألمانية)",
      "مقترح بحثي (للدكتوراه)"
    ],
    documentsEn: [
      "Completed DAAD application form",
      "CV in Europass format",
      "Motivation Letter",
      "Academic certificates with certified translation",
      "Academic recommendation letters (2)",
      "Language certificate (IELTS/TOEFL or German certificate)",
      "Research proposal (for PhD)"
    ],
    stepsAr: [
      { title: "البحث عن البرنامج", desc: "استخدم قاعدة بيانات DAAD للبحث عن برامج الماجستير أو الدكتوراه المناسبة في ألمانيا" },
      { title: "التحقق من المواعيد", desc: "كل برنامج له مواعيد تقديم مختلفة — تحقق من الموعد النهائي لبرنامجك المحدد" },
      { title: "تحضير المستندات", desc: "جهز جميع المستندات المطلوبة مع الترجمات المعتمدة" },
      { title: "التقديم عبر بوابة DAAD", desc: "أنشئ حساباً على بوابة DAAD وقدم طلبك إلكترونياً مع رفع جميع المستندات" },
      { title: "انتظار النتائج", desc: "عملية التقييم تستغرق عدة أشهر. قد يُطلب منك مقابلة أو معلومات إضافية" },
      { title: "إجراءات التأشيرة", desc: "بعد القبول، ابدأ إجراءات الحصول على تأشيرة الدراسة الألمانية" }
    ],
    stepsEn: [
      { title: "Find a Program", desc: "Use the DAAD database to search for suitable Master's or PhD programs in Germany" },
      { title: "Check Deadlines", desc: "Each program has different application deadlines — verify the deadline for your specific program" },
      { title: "Prepare Documents", desc: "Gather all required documents with certified translations" },
      { title: "Apply via DAAD Portal", desc: "Create an account on the DAAD portal and submit your application online with all documents" },
      { title: "Wait for Results", desc: "The evaluation process takes several months. You may be asked for an interview or additional information" },
      { title: "Visa Procedures", desc: "After acceptance, begin the process of obtaining a German student visa" }
    ],
    tipsAr: [
      "ابحث عن برامج باللغة الإنجليزية إذا لم تكن تجيد الألمانية",
      "تعلم أساسيات اللغة الألمانية — حتى لو كان البرنامج بالإنجليزية",
      "اكتب خطاب دافع يربط بين تخصصك وأهداف التنمية في بلدك",
      "استخدم تنسيق Europass للسيرة الذاتية — هذا ما تفضله DAAD",
      "قدم مبكراً — بعض البرامج تغلق قبل الموعد النهائي الرسمي"
    ],
    tipsEn: [
      "Look for English-taught programs if you don't speak German",
      "Learn basic German — even if the program is in English",
      "Write a motivation letter connecting your field to your country's development goals",
      "Use Europass CV format — this is what DAAD prefers",
      "Apply early — some programs close before the official deadline"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "يوليو 2025" },
      { label: "آخر موعد للتقديم", date: "15 أكتوبر 2025" },
      { label: "إعلان النتائج", date: "مارس 2026" },
      { label: "دورة اللغة", date: "أبريل - سبتمبر 2026" },
      { label: "بدء الدراسة", date: "أكتوبر 2026" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "July 2025" },
      { label: "Application Deadline", date: "October 15, 2025" },
      { label: "Results Announcement", date: "March 2026" },
      { label: "Language Course", date: "April - September 2026" },
      { label: "Study Begins", date: "October 2026" }
    ],
    relatedBlogSlugs: [
      "daad-scholarship-yemen-guide",
      "study-germany-guide-yemeni-students",
      "motivation-letter-scholarship-guide",
      "academic-cv-writing-guide"
    ],
    openingDate: "2026-06-01",
    expectedOpeningMonth: 10,
    lastChecked: "2026-05-01",
    officialSourceUrl: "https://www.daad.de/en/study-and-research-in-germany/scholarships/",
    contentStatus: "published",
    tags: ["fully-funded", "masters", "phd", "research", "includes-stipend", "includes-insurance", "includes-travel", "recurring-annual"],
    relatedServices: ["application-review", "motivation-letter", "consultation"],
    faqAr: [
      { questionAr: "هل يجب أن أتقن الألمانية للتقديم؟", questionEn: "Do I need to know German to apply?", answerAr: "ليس بالضرورة. هناك برامج كثيرة تُدرّس بالإنجليزية بالكامل.", answerEn: "Not necessarily. Many programs are taught entirely in English." },
      { questionAr: "هل يمكنني العمل أثناء الدراسة؟", questionEn: "Can I work while studying?", answerAr: "نعم، يُسمح بالعمل بدوام جزئي حتى 120 يوماً كاملاً أو 240 نصف يوم سنوياً.", answerEn: "Yes, part-time work is allowed up to 120 full days or 240 half days per year." }
    ],
  },
  {
    id: 4,
    slug: "fulbright-scholarship-usa",
    titleAr: "منحة فولبرايت الأمريكية",
    titleEn: "Fulbright Scholarship (USA)",
    countryAr: "أمريكا",
    countryEn: "United States",
    flag: "🇺🇸",
    levelAr: "ماجستير / دكتوراه",
    levelEn: "Master / PhD",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "جميع التخصصات",
    fieldEn: "All Fields",
    deadline: "2027-02-01",
    descAr: "أعرق برنامج منح أمريكي يغطي الدراسة والمعيشة والتأمين الصحي وتذاكر الطيران",
    descEn: "America's premier scholarship program covering tuition, living, health insurance, and flights",
    status: "open",
    link: "https://foreign.fulbrightonline.org",
    image: "https://images.unsplash.com/photo-1501466044931-62695aada8e9?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "برنامج فولبرايت هو أعرق وأشهر برنامج منح دراسية أمريكي، تأسس عام 1946 ويُدار من قبل وزارة الخارجية الأمريكية. يهدف البرنامج إلى تعزيز التفاهم المتبادل بين الشعوب من خلال التبادل الأكاديمي والثقافي. يضم البرنامج أكثر من 400,000 خريج حول العالم، بينهم 62 حائزاً على جائزة نوبل. تمثل فولبرايت فرصة ذهبية للدراسة في أفضل الجامعات الأمريكية.",
    overviewEn: "The Fulbright Program is America's most prestigious scholarship, established in 1946 and administered by the U.S. Department of State. It aims to promote mutual understanding through academic and cultural exchange. The program has over 400,000 alumni worldwide, including 62 Nobel laureates. Fulbright represents a golden opportunity to study at top American universities.",
    benefitsAr: [
      "تغطية كاملة للرسوم الدراسية",
      "راتب شهري للمعيشة يختلف حسب المدينة",
      "تأمين صحي شامل طوال فترة المنحة",
      "تذاكر طيران ذهاباً وإياباً",
      "بدل كتب ومواد دراسية",
      "دعم لحضور المؤتمرات الأكاديمية",
      "برنامج توجيهي وشبكة خريجين عالمية"
    ],
    benefitsEn: [
      "Full tuition coverage",
      "Monthly living stipend varying by city",
      "Comprehensive health insurance throughout the scholarship",
      "Round-trip airfare",
      "Book and study materials allowance",
      "Support for attending academic conferences",
      "Orientation program and global alumni network"
    ],
    eligibilityAr: [
      "أن تكون من دولة مؤهلة (تشمل الدول العربية)",
      "حاصل على شهادة بكالوريوس بتقدير جيد جداً",
      "إجادة اللغة الإنجليزية (TOEFL iBT 80+ أو IELTS 6.5+)",
      "خبرة عملية أو بحثية مميزة",
      "صفات قيادية ومشاركة مجتمعية فعالة",
      "الالتزام بالعودة إلى بلدك لمدة سنتين بعد المنحة (شرط J-1)",
      "عدم الحصول على إقامة دائمة أو جنسية أمريكية"
    ],
    eligibilityEn: [
      "Must be from an eligible country (includes Arab countries)",
      "Hold a bachelor's degree with a very good GPA",
      "English proficiency (TOEFL iBT 80+ or IELTS 6.5+)",
      "Distinguished work or research experience",
      "Leadership qualities and active community involvement",
      "Commitment to return to your home country for 2 years after the scholarship (J-1 requirement)",
      "Must not hold U.S. permanent residency or citizenship"
    ],
    documentsAr: [
      "نموذج طلب فولبرايت المكتمل",
      "السيرة الذاتية المفصلة",
      "بيان الغرض (Statement of Purpose)",
      "خطة الدراسة المقترحة",
      "3 خطابات توصية أكاديمية ومهنية",
      "الشهادات الأكاديمية وكشوف الدرجات",
      "نتيجة اختبار TOEFL أو IELTS",
      "جواز سفر ساري المفعول"
    ],
    documentsEn: [
      "Completed Fulbright application form",
      "Detailed CV/Resume",
      "Statement of Purpose",
      "Proposed study plan",
      "3 academic and professional recommendation letters",
      "Academic certificates and transcripts",
      "TOEFL or IELTS score",
      "Valid passport"
    ],
    stepsAr: [
      { title: "التواصل مع مكتب فولبرايت", desc: "تواصل مع مكتب فولبرايت المسؤول عن بلدك للحصول على أحدث المعلومات والمواعيد" },
      { title: "تحضير اختبار اللغة", desc: "سجل واستعد لاختبار TOEFL أو IELTS — تحتاج درجة عالية للقبول" },
      { title: "كتابة بيان الغرض", desc: "اكتب بياناً مقنعاً يوضح أهدافك الأكاديمية والمهنية وكيف ستخدم مجتمعك" },
      { title: "جمع خطابات التوصية", desc: "اطلب 3 خطابات من أساتذة ومشرفين يعرفون قدراتك جيداً" },
      { title: "تقديم الطلب", desc: "قدم طلبك عبر بوابة فولبرايت الإلكترونية مع جميع المستندات المطلوبة" },
      { title: "المقابلة والنتائج", desc: "إذا تم ترشيحك، ستُدعى لمقابلة. النتائج تُعلن عادة بعد عدة أشهر" }
    ],
    stepsEn: [
      { title: "Contact Fulbright Office", desc: "Reach out to the Fulbright office responsible for your country for the latest information and deadlines" },
      { title: "Prepare Language Test", desc: "Register and prepare for TOEFL or IELTS — you need a high score for acceptance" },
      { title: "Write Statement of Purpose", desc: "Write a compelling statement about your academic and career goals and how you'll serve your community" },
      { title: "Gather Recommendations", desc: "Request 3 letters from professors and supervisors who know your abilities well" },
      { title: "Submit Application", desc: "Submit your application through the Fulbright online portal with all required documents" },
      { title: "Interview and Results", desc: "If shortlisted, you'll be invited for an interview. Results are usually announced after several months" }
    ],
    tipsAr: [
      "ابدأ التحضير قبل سنة كاملة من الموعد النهائي",
      "ركز على إبراز تأثيرك المجتمعي في بلدك",
      "اختر تخصصاً يرتبط بحاجات التنمية في بلدك",
      "تدرب على المقابلة باللغة الإنجليزية مع أصدقاء أو مرشدين",
      "استخدم خدمة مراجعة الطلبات من دليلك للحصول على ملاحظات احترافية"
    ],
    tipsEn: [
      "Start preparing a full year before the deadline",
      "Focus on highlighting your community impact in your home country",
      "Choose a field related to your country's development needs",
      "Practice the interview in English with friends or mentors",
      "Use Dalilak's application review service for professional feedback"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "أكتوبر 2025" },
      { label: "آخر موعد للتقديم", date: "1 فبراير 2026" },
      { label: "المقابلات", date: "أبريل - مايو 2026" },
      { label: "إعلان النتائج", date: "يوليو 2026" },
      { label: "بدء الدراسة", date: "أغسطس - سبتمبر 2026" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "October 2025" },
      { label: "Application Deadline", date: "February 1, 2026" },
      { label: "Interviews", date: "April - May 2026" },
      { label: "Results Announcement", date: "July 2026" },
      { label: "Study Begins", date: "August - September 2026" }
    ],
    relatedBlogSlugs: [
      "fulbright-scholarship-yemeni-guide",
      "top-10-fully-funded-scholarships-usa-2026",
      "motivation-letter-scholarship-guide",
      "toefl-vs-ielts-which-better"
    ],
    openingDate: "2026-04-01",
    expectedOpeningMonth: 2,
    lastChecked: "2026-05-01",
    officialSourceUrl: "https://foreign.fulbrightonline.org/",
    contentStatus: "published",
    tags: ["fully-funded", "masters", "phd", "includes-stipend", "includes-travel", "includes-insurance", "recurring-annual"],
    relatedServices: ["application-review", "motivation-letter", "consultation"],
    faqAr: [
      { questionAr: "هل فولبرايت متاحة لجميع التخصصات؟", questionEn: "Is Fulbright available for all fields?", answerAr: "نعم، فولبرايت تدعم جميع التخصصات الأكاديمية تقريباً.", answerEn: "Yes, Fulbright supports virtually all academic fields." },
      { questionAr: "ما هو معدل القبول في فولبرايت؟", questionEn: "What is the acceptance rate for Fulbright?", answerAr: "معدل القبول يتراوح بين 15-20% حسب البلد والتخصص.", answerEn: "The acceptance rate ranges between 15-20% depending on country and field." }
    ],
  },
  {
    id: 5,
    slug: "malaysia-international-scholarship",
    titleAr: "منحة حكومة ماليزيا (MIS)",
    titleEn: "Malaysia International Scholarship (MIS)",
    countryAr: "ماليزيا",
    countryEn: "Malaysia",
    flag: "🇲🇾",
    levelAr: "ماجستير / دكتوراه",
    levelEn: "Master / PhD",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "جميع التخصصات",
    fieldEn: "All Fields",
    deadline: "2026-07-31",
    descAr: "منحة حكومية ماليزية تغطي الرسوم والسكن وراتب شهري وتأمين صحي",
    descEn: "Malaysian government scholarship covering tuition, accommodation, monthly allowance, and health insurance",
    status: "closing",
    link: "https://biasiswa.mohe.gov.my",
    image: "https://images.unsplash.com/photo-1596422846543-75c6fc197f07?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "منحة الحكومة الماليزية الدولية (MIS) هي منحة مرموقة تقدمها وزارة التعليم العالي الماليزية للطلاب الدوليين المتميزين. تتميز ماليزيا بكونها وجهة دراسية مثالية للطلاب العرب بفضل البيئة الإسلامية المحافظة، والتعليم عالي الجودة باللغة الإنجليزية، وتكاليف المعيشة المعقولة، والجالية العربية الكبيرة الموجودة هناك.",
    overviewEn: "The Malaysia International Scholarship (MIS) is a prestigious scholarship offered by Malaysia's Ministry of Higher Education for outstanding international students. Malaysia is an ideal study destination for Arab students due to its conservative Islamic environment, quality English-medium education, reasonable living costs, and the large Arab community there.",
    benefitsAr: [
      "إعفاء كامل من الرسوم الدراسية",
      "راتب شهري للمعيشة",
      "بدل سكن أو سكن جامعي",
      "تأمين صحي شامل",
      "تذكرة طيران سنوية",
      "بدل كتب ومراجع",
      "بدل تجهيز أطروحة"
    ],
    benefitsEn: [
      "Full tuition fee waiver",
      "Monthly living allowance",
      "Accommodation allowance or university housing",
      "Comprehensive health insurance",
      "Annual flight ticket",
      "Book and reference allowance",
      "Thesis preparation allowance"
    ],
    eligibilityAr: [
      "العمر أقل من 40 سنة للماجستير و45 للدكتوراه",
      "معدل تراكمي لا يقل عن 3.0/4.0 أو ما يعادله",
      "إجادة اللغة الإنجليزية (IELTS 6.0+ أو TOEFL 550+)",
      "قبول من جامعة ماليزية معترف بها",
      "عدم الحصول على منحة ماليزية أخرى حالياً",
      "حالة صحية جيدة"
    ],
    eligibilityEn: [
      "Under 40 years for Master's and 45 for PhD",
      "Minimum CGPA of 3.0/4.0 or equivalent",
      "English proficiency (IELTS 6.0+ or TOEFL 550+)",
      "Admission from a recognized Malaysian university",
      "Not currently receiving another Malaysian scholarship",
      "Good health condition"
    ],
    documentsAr: [
      "نموذج طلب MIS المكتمل",
      "شهادات أكاديمية مصدقة",
      "كشف درجات أكاديمي",
      "شهادة لغة إنجليزية",
      "خطاب قبول من جامعة ماليزية",
      "مقترح بحثي (للدكتوراه)",
      "خطابات توصية (2 خطاب)",
      "جواز سفر ساري المفعول",
      "تقرير طبي"
    ],
    documentsEn: [
      "Completed MIS application form",
      "Certified academic certificates",
      "Academic transcript",
      "English language certificate",
      "Admission letter from a Malaysian university",
      "Research proposal (for PhD)",
      "Recommendation letters (2)",
      "Valid passport",
      "Medical report"
    ],
    stepsAr: [
      { title: "الحصول على قبول جامعي", desc: "تقدم أولاً على جامعة ماليزية واحصل على خطاب قبول قبل التقديم على المنحة" },
      { title: "تحضير المستندات", desc: "جهز جميع المستندات المطلوبة مع التصديقات اللازمة" },
      { title: "التقديم عبر الموقع", desc: "قدم طلبك عبر بوابة المنح الماليزية الإلكترونية" },
      { title: "انتظار التقييم", desc: "يتم تقييم الطلبات من قبل لجنة مختصة في وزارة التعليم العالي" },
      { title: "إجراءات التأشيرة", desc: "بعد القبول، ابدأ إجراءات الحصول على تأشيرة الطالب الماليزية" }
    ],
    stepsEn: [
      { title: "Get University Admission", desc: "First apply to a Malaysian university and get an admission letter before applying for the scholarship" },
      { title: "Prepare Documents", desc: "Gather all required documents with necessary certifications" },
      { title: "Apply Online", desc: "Submit your application through the Malaysian scholarship online portal" },
      { title: "Wait for Evaluation", desc: "Applications are evaluated by a specialized committee at the Ministry of Higher Education" },
      { title: "Visa Procedures", desc: "After acceptance, begin the process of obtaining a Malaysian student visa" }
    ],
    tipsAr: [
      "تواصل مع الجالية العربية في ماليزيا للحصول على نصائح عملية",
      "اختر جامعة مصنفة عالمياً مثل UM أو USM أو UKM",
      "ابدأ بالتقديم على الجامعة أولاً — القبول الجامعي شرط أساسي",
      "ماليزيا بيئة مثالية للطلاب المسلمين — الطعام الحلال متوفر في كل مكان"
    ],
    tipsEn: [
      "Connect with the Arab community in Malaysia for practical advice",
      "Choose a globally ranked university like UM, USM, or UKM",
      "Apply to the university first — admission is a prerequisite",
      "Malaysia is ideal for Muslim students — halal food is available everywhere"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "مايو 2025" },
      { label: "آخر موعد للتقديم", date: "31 يوليو 2025" },
      { label: "إعلان النتائج", date: "أكتوبر 2025" },
      { label: "بدء الدراسة", date: "فبراير 2026" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "May 2025" },
      { label: "Application Deadline", date: "July 31, 2025" },
      { label: "Results Announcement", date: "October 2025" },
      { label: "Study Begins", date: "February 2026" }
    ],
    relatedBlogSlugs: [
      "malaysia-international-scholarship-2026",
      "study-malaysia-yemeni-guide",
      "scholarships-no-ielts-2026"
    ],
    openingDate: "2026-03-01",
    expectedOpeningMonth: 1,
    lastChecked: "2026-05-01",
    officialSourceUrl: "https://biasiswa.mohe.gov.my/INTER/index.php",
    contentStatus: "published",
    tags: ["fully-funded", "masters", "phd", "includes-stipend", "includes-housing", "includes-travel", "includes-insurance", "recurring-annual"],
    relatedServices: ["application-review", "consultation"],
    faqAr: [
      { questionAr: "هل ماليزيا مناسبة للطلاب العرب؟", questionEn: "Is Malaysia suitable for Arab students?", answerAr: "نعم، ماليزيا بلد إسلامي متعدد الثقافات مع مجتمع عربي كبير وطعام حلال متوفر في كل مكان.", answerEn: "Yes, Malaysia is a multicultural Muslim country with a large Arab community and halal food available everywhere." }
    ],
  },
  {
    id: 6,
    slug: "king-abdulaziz-university-scholarship",
    titleAr: "منحة جامعة الملك عبدالعزيز",
    titleEn: "King Abdulaziz University Scholarship",
    countryAr: "السعودية",
    countryEn: "Saudi Arabia",
    flag: "🇸🇦",
    levelAr: "بكالوريوس / ماجستير",
    levelEn: "Bachelor / Master",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "تخصصات متعددة",
    fieldEn: "Various Fields",
    deadline: "2026-09-30",
    descAr: "منحة للطلاب الدوليين تشمل السكن والراتب الشهري والرسوم الدراسية والتأمين الصحي",
    descEn: "Scholarship for international students including housing, stipend, tuition, and health insurance",
    status: "open",
    link: "https://www.kau.edu.sa",
    image: "https://images.unsplash.com/photo-1586724237569-f3d0c1dee8c6?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "جامعة الملك عبدالعزيز في جدة هي واحدة من أعرق الجامعات السعودية والعربية، وتحتل مراتب متقدمة في التصنيفات العالمية. تقدم الجامعة منحاً دراسية سخية للطلاب الدوليين، وتعتبر وجهة مفضلة للطلاب العرب بفضل القرب الجغرافي والثقافي واللغوي. الدراسة باللغة العربية تجعلها خياراً مثالياً لمن لا يجيد الإنجليزية.",
    overviewEn: "King Abdulaziz University in Jeddah is one of the most prestigious Saudi and Arab universities, ranking highly in global rankings. The university offers generous scholarships for international students and is a preferred destination for Arab students due to geographic, cultural, and linguistic proximity. Arabic-medium instruction makes it ideal for those not proficient in English.",
    benefitsAr: [
      "إعفاء كامل من الرسوم الدراسية",
      "راتب شهري للطلاب",
      "سكن جامعي مجاني",
      "تأمين صحي شامل",
      "تذكرة طيران سنوية",
      "مكافأة تفوق للمتميزين",
      "الدراسة باللغة العربية"
    ],
    benefitsEn: [
      "Full tuition waiver",
      "Monthly student stipend",
      "Free university housing",
      "Comprehensive health insurance",
      "Annual flight ticket",
      "Excellence bonus for outstanding students",
      "Arabic-medium instruction"
    ],
    eligibilityAr: [
      "أن يكون الطالب غير سعودي الجنسية",
      "ألا يزيد العمر عن 25 سنة للبكالوريوس",
      "الحصول على شهادة ثانوية عامة بمعدل لا يقل عن 80%",
      "اجتياز اختبار القدرات والتحصيلي (للبكالوريوس)",
      "حسن السيرة والسلوك",
      "اللياقة الطبية",
      "ألا يكون قد فُصل من جامعة سعودية سابقاً"
    ],
    eligibilityEn: [
      "Must not be a Saudi citizen",
      "Under 25 years for Bachelor's",
      "High school certificate with minimum 80% GPA",
      "Pass aptitude and achievement tests (for Bachelor's)",
      "Good conduct and behavior",
      "Medical fitness",
      "Must not have been dismissed from a Saudi university"
    ],
    documentsAr: [
      "شهادة الثانوية العامة مصدقة",
      "كشف درجات الثانوية",
      "جواز سفر ساري المفعول",
      "صور شخصية",
      "شهادة حسن سيرة وسلوك",
      "تقرير طبي",
      "شهادة ميلاد"
    ],
    documentsEn: [
      "Certified high school certificate",
      "High school transcript",
      "Valid passport",
      "Personal photos",
      "Good conduct certificate",
      "Medical report",
      "Birth certificate"
    ],
    stepsAr: [
      { title: "زيارة بوابة القبول", desc: "ادخل على بوابة القبول الإلكترونية لجامعة الملك عبدالعزيز" },
      { title: "إنشاء حساب وتعبئة الطلب", desc: "أنشئ حساباً واملأ نموذج طلب المنحة بجميع البيانات المطلوبة" },
      { title: "رفع المستندات", desc: "ارفع جميع المستندات المطلوبة بصيغة PDF واضحة" },
      { title: "انتظار القبول", desc: "يتم مراجعة الطلبات والإعلان عن النتائج عبر البوابة" },
      { title: "إجراءات السفر", desc: "بعد القبول، أكمل إجراءات التأشيرة والسفر إلى جدة" }
    ],
    stepsEn: [
      { title: "Visit Admission Portal", desc: "Go to King Abdulaziz University's electronic admission portal" },
      { title: "Create Account and Apply", desc: "Create an account and fill out the scholarship application with all required data" },
      { title: "Upload Documents", desc: "Upload all required documents in clear PDF format" },
      { title: "Wait for Admission", desc: "Applications are reviewed and results announced through the portal" },
      { title: "Travel Procedures", desc: "After acceptance, complete visa and travel arrangements to Jeddah" }
    ],
    tipsAr: [
      "قدم مبكراً — المقاعد محدودة والتنافس عالي",
      "تأكد من تصديق شهاداتك من الجهات المختصة في بلدك",
      "جدة مدينة ساحلية جميلة وقريبة من مكة المكرمة",
      "الجالية العربية في جدة كبيرة جداً — ستجد دعماً مجتمعياً"
    ],
    tipsEn: [
      "Apply early — seats are limited and competition is high",
      "Make sure your certificates are certified by relevant authorities in your country",
      "Jeddah is a beautiful coastal city close to Makkah",
      "The Arab community in Jeddah is very large — you'll find community support"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "يونيو 2025" },
      { label: "آخر موعد للتقديم", date: "30 سبتمبر 2025" },
      { label: "إعلان النتائج", date: "ديسمبر 2025" },
      { label: "بدء الدراسة", date: "فبراير 2026" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "June 2025" },
      { label: "Application Deadline", date: "September 30, 2025" },
      { label: "Results Announcement", date: "December 2025" },
      { label: "Study Begins", date: "February 2026" }
    ],
    relatedBlogSlugs: [
      "king-abdulaziz-university-scholarship-guide-2026",
      "top-15-fully-funded-scholarships-yemeni-2026",
      "choosing-major-comprehensive-guide",
      "academic-cv-writing-guide"
    ],
    openingDate: "2026-06-01",
    expectedOpeningMonth: 3,
    lastChecked: "2026-05-01",
    officialSourceUrl: "https://www.kau.edu.sa/",
    contentStatus: "published",
    tags: ["fully-funded", "all-levels", "includes-stipend", "includes-housing", "includes-insurance", "recurring-annual"],
    relatedServices: ["application-review", "consultation"],
    faqAr: [
      { questionAr: "هل يشترط اختبار قدرات للقبول؟", questionEn: "Is an aptitude test required for admission?", answerAr: "يعتمد على التخصص والمرحلة. بعض البرامج تتطلب اختبارات إضافية.", answerEn: "It depends on the program and level. Some programs require additional tests." }
    ],
  },
  {
    id: 7,
    slug: "egyptian-government-scholarship",
    titleAr: "منحة الحكومة المصرية",
    titleEn: "Egyptian Government Scholarship",
    countryAr: "مصر",
    countryEn: "Egypt",
    flag: "🇪🇬",
    levelAr: "بكالوريوس / ماجستير",
    levelEn: "Bachelor / Master",
    fundingAr: "ممولة جزئياً",
    fundingEn: "Partially Funded",
    fieldAr: "تخصصات متعددة",
    fieldEn: "Various Fields",
    deadline: "2026-08-15",
    descAr: "فرصة للدراسة في الجامعات المصرية بتكاليف مخفضة مع دعم للسكن والمعيشة",
    descEn: "Study at Egyptian universities with reduced costs and housing and living support",
    status: "open",
    link: "https://www.mohesr.gov.eg",
    image: "https://images.unsplash.com/photo-1572252009286-268acec5ca0a?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "تقدم الحكومة المصرية منحاً دراسية للطلاب العرب والأفارقة للدراسة في الجامعات المصرية العريقة مثل جامعة القاهرة وجامعة عين شمس وجامعة الأزهر. تتميز مصر بتكاليف معيشة منخفضة جداً مقارنة بالدول الأخرى، وبتاريخ أكاديمي عريق، وبقرب ثقافي ولغوي كبير من الدول العربية. تعتبر خياراً ممتازاً للطلاب الذين يفضلون الدراسة باللغة العربية.",
    overviewEn: "The Egyptian government offers scholarships for Arab and African students to study at prestigious Egyptian universities like Cairo University, Ain Shams University, and Al-Azhar University. Egypt features very low living costs, a rich academic history, and great cultural and linguistic proximity to Arab countries. It's an excellent option for students who prefer studying in Arabic.",
    benefitsAr: [
      "رسوم دراسية مخفضة للطلاب العرب",
      "بدل سكن في المدن الجامعية",
      "دعم للمعيشة الشهرية",
      "تأمين صحي جامعي",
      "إمكانية العمل بدوام جزئي",
      "شهادات معترف بها عربياً ودولياً"
    ],
    benefitsEn: [
      "Reduced tuition fees for Arab students",
      "University housing allowance",
      "Monthly living support",
      "University health insurance",
      "Part-time work opportunity",
      "Degrees recognized regionally and internationally"
    ],
    eligibilityAr: [
      "أن يكون الطالب من جنسية عربية أو أفريقية",
      "الحصول على شهادة ثانوية عامة بمعدل جيد",
      "اجتياز الفحص الطبي",
      "تصديق الشهادات من السفارة المصرية",
      "ألا يكون قد فُصل من جامعة مصرية سابقاً"
    ],
    eligibilityEn: [
      "Must be of Arab or African nationality",
      "High school certificate with a good GPA",
      "Pass medical examination",
      "Certificates certified by the Egyptian embassy",
      "Must not have been dismissed from an Egyptian university"
    ],
    documentsAr: [
      "شهادة الثانوية العامة مصدقة",
      "كشف درجات",
      "جواز سفر ساري المفعول",
      "صور شخصية",
      "شهادة ميلاد",
      "تقرير طبي",
      "شهادة حسن سيرة وسلوك"
    ],
    documentsEn: [
      "Certified high school certificate",
      "Transcript",
      "Valid passport",
      "Personal photos",
      "Birth certificate",
      "Medical report",
      "Good conduct certificate"
    ],
    stepsAr: [
      { title: "التواصل مع السفارة", desc: "تواصل مع السفارة المصرية في بلدك للحصول على نموذج التقديم" },
      { title: "تحضير المستندات", desc: "جهز جميع المستندات وصدقها من الجهات المختصة" },
      { title: "تقديم الطلب", desc: "قدم طلبك عبر السفارة أو البوابة الإلكترونية للتنسيق" },
      { title: "انتظار القبول", desc: "يتم مراجعة الطلبات وإعلان النتائج" },
      { title: "السفر والتسجيل", desc: "بعد القبول، سافر إلى مصر وأكمل إجراءات التسجيل في الجامعة" }
    ],
    stepsEn: [
      { title: "Contact the Embassy", desc: "Contact the Egyptian embassy in your country of residence for the application form" },
      { title: "Prepare Documents", desc: "Gather all documents and certify them from relevant authorities" },
      { title: "Submit Application", desc: "Submit your application through the embassy or online coordination portal" },
      { title: "Wait for Admission", desc: "Applications are reviewed and results announced" },
      { title: "Travel and Register", desc: "After acceptance, travel to Egypt and complete university registration" }
    ],
    tipsAr: [
      "مصر من أرخص الدول للمعيشة — ميزانية 200-300 دولار شهرياً كافية",
      "جامعة الأزهر خيار ممتاز لطلاب الشريعة والدراسات الإسلامية",
      "الجالية العربية في مصر كبيرة وداعمة",
      "استفد من فرص العمل الجزئي لتغطية المصاريف الإضافية"
    ],
    tipsEn: [
      "Egypt is one of the cheapest countries to live in — $200-300/month budget is sufficient",
      "Al-Azhar University is excellent for Sharia and Islamic studies",
      "The Arab community in Egypt is large and supportive",
      "Take advantage of part-time work opportunities to cover extra expenses"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "يونيو 2025" },
      { label: "آخر موعد للتقديم", date: "15 أغسطس 2025" },
      { label: "إعلان النتائج", date: "سبتمبر 2025" },
      { label: "بدء الدراسة", date: "أكتوبر 2025" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "June 2025" },
      { label: "Application Deadline", date: "August 15, 2025" },
      { label: "Results Announcement", date: "September 2025" },
      { label: "Study Begins", date: "October 2025" }
    ],
    relatedBlogSlugs: [
      "egyptian-government-scholarship-guide-2026",
      "top-15-fully-funded-scholarships-yemeni-2026",
      "cheapest-countries-study-abroad-arab",
      "choosing-major-comprehensive-guide"
    ],
    openingDate: "2026-05-01",
    expectedOpeningMonth: 6,
    lastChecked: "2026-05-01",
    officialSourceUrl: "https://www.mohesr.gov.eg/",
    contentStatus: "published",
    tags: ["fully-funded", "all-levels", "all-fields", "includes-stipend", "includes-housing", "recurring-annual"],
    relatedServices: ["application-review", "consultation"],
    faqAr: [
      { questionAr: "هل مصر وجهة جيدة للدراسة؟", questionEn: "Is Egypt a good study destination?", answerAr: "نعم، مصر تضم جامعات عريقة مثل القاهرة والأزهر وعين شمس، مع تكاليف معيشة منخفضة جداً.", answerEn: "Yes, Egypt has prestigious universities like Cairo, Al-Azhar, and Ain Shams, with very low living costs." }
    ],
  },
  {
    id: 8,
    slug: "stipendium-hungaricum-hungary",
    titleAr: "منحة حكومة المجر (Stipendium Hungaricum)",
    titleEn: "Stipendium Hungaricum (Hungary)",
    countryAr: "المجر",
    countryEn: "Hungary",
    flag: "🇭🇺",
    levelAr: "بكالوريوس / ماجستير / دكتوراه",
    levelEn: "Bachelor / Master / PhD",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "جميع التخصصات",
    fieldEn: "All Fields",
    deadline: "2027-01-15",
    descAr: "منحة حكومية مجرية تغطي الرسوم والسكن والتأمين الصحي وراتب شهري",
    descEn: "Hungarian government scholarship covering tuition, accommodation, insurance, and stipend",
    status: "upcoming",
    link: "https://stipendiumhungaricum.hu",
    image: "https://images.unsplash.com/photo-1549923746-c502d488b3ea?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "منحة Stipendium Hungaricum هي برنامج منح حكومي مجري يهدف إلى استقطاب الطلاب الدوليين المتميزين للدراسة في المجر. تتميز المجر بموقعها في قلب أوروبا، وجامعاتها العريقة، وتكاليف المعيشة المنخفضة مقارنة بغرب أوروبا. البرنامج يغطي جميع المراحل الدراسية ويوفر تجربة أكاديمية وثقافية غنية في بيئة أوروبية متنوعة.",
    overviewEn: "Stipendium Hungaricum is a Hungarian government scholarship program aimed at attracting outstanding international students to study in Hungary. Hungary is distinguished by its central European location, prestigious universities, and low living costs compared to Western Europe. The program covers all study levels and provides a rich academic and cultural experience in a diverse European environment.",
    benefitsAr: [
      "إعفاء كامل من الرسوم الدراسية",
      "بدل سكن أو سكن جامعي مجاني",
      "راتب شهري للمعيشة (حوالي 150,000 فورنت مجري)",
      "تأمين صحي شامل",
      "لا حاجة لاختبار IELTS (لبعض البرامج)",
      "برامج باللغة الإنجليزية في معظم التخصصات",
      "فرصة السفر في أوروبا بتأشيرة شنغن"
    ],
    benefitsEn: [
      "Full tuition fee waiver",
      "Housing allowance or free university dormitory",
      "Monthly living stipend (approximately 150,000 HUF)",
      "Comprehensive health insurance",
      "No IELTS required (for some programs)",
      "English-taught programs in most fields",
      "Opportunity to travel in Europe with Schengen visa"
    ],
    eligibilityAr: [
      "أن تكون من دولة شريكة (الدول العربية مؤهلة)",
      "شهادة ثانوية أو جامعية حسب المرحلة المطلوبة",
      "إجادة اللغة الإنجليزية (بعض البرامج لا تشترط IELTS)",
      "ألا تكون مواطناً مجرياً",
      "ألا تكون قد حصلت على هذه المنحة سابقاً لنفس المرحلة",
      "استيفاء شروط البرنامج المحدد الذي تقدم عليه"
    ],
    eligibilityEn: [
      "Must be from a partner country (Arab countries are eligible)",
      "High school or university degree depending on the level",
      "English proficiency (some programs don't require IELTS)",
      "Must not be a Hungarian citizen",
      "Must not have previously received this scholarship for the same level",
      "Meet the specific requirements of the chosen program"
    ],
    documentsAr: [
      "نموذج الطلب المكتمل عبر الإنترنت",
      "الشهادات الأكاديمية مع الترجمة المعتمدة",
      "كشف الدرجات",
      "خطاب الدافع",
      "السيرة الذاتية",
      "شهادة لغة (إن وجدت)",
      "خطاب توصية",
      "جواز سفر ساري المفعول",
      "شهادة طبية"
    ],
    documentsEn: [
      "Completed online application form",
      "Academic certificates with certified translation",
      "Transcript",
      "Motivation letter",
      "CV/Resume",
      "Language certificate (if available)",
      "Recommendation letter",
      "Valid passport",
      "Medical certificate"
    ],
    stepsAr: [
      { title: "اختيار البرنامج", desc: "تصفح البرامج المتاحة على موقع المنحة واختر ما يناسب تخصصك وأهدافك" },
      { title: "التقديم عبر البوابة", desc: "أنشئ حساباً على بوابة Stipendium Hungaricum وقدم طلبك إلكترونياً" },
      { title: "اختيار الجامعات", desc: "يمكنك اختيار حتى 3 برامج في جامعات مجرية مختلفة" },
      { title: "رفع المستندات", desc: "ارفع جميع المستندات المطلوبة بالتنسيقات المحددة" },
      { title: "انتظار النتائج", desc: "يتم تقييم الطلبات والإعلان عن النتائج عبر البوابة" },
      { title: "إجراءات التأشيرة", desc: "بعد القبول، قدم على تأشيرة الدراسة المجرية" }
    ],
    stepsEn: [
      { title: "Choose a Program", desc: "Browse available programs on the scholarship website and select one matching your field and goals" },
      { title: "Apply via Portal", desc: "Create an account on the Stipendium Hungaricum portal and submit your application online" },
      { title: "Select Universities", desc: "You can choose up to 3 programs at different Hungarian universities" },
      { title: "Upload Documents", desc: "Upload all required documents in the specified formats" },
      { title: "Wait for Results", desc: "Applications are evaluated and results announced through the portal" },
      { title: "Visa Procedures", desc: "After acceptance, apply for a Hungarian student visa" }
    ],
    tipsAr: [
      "المجر لا تشترط IELTS لبعض البرامج — ميزة كبيرة للطلاب العرب",
      "بودابست مدينة جميلة وآمنة وتكاليف المعيشة فيها معقولة",
      "استفد من تأشيرة شنغن للسفر في أوروبا خلال العطل",
      "تعلم بعض الكلمات المجرية الأساسية — ستساعدك في الحياة اليومية",
      "قدم على 3 برامج مختلفة لزيادة فرص القبول"
    ],
    tipsEn: [
      "Hungary doesn't require IELTS for some programs — a big advantage for Arab students",
      "Budapest is beautiful, safe, and has reasonable living costs",
      "Use your Schengen visa to travel across Europe during holidays",
      "Learn some basic Hungarian words — they'll help in daily life",
      "Apply to 3 different programs to increase your chances of acceptance"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "نوفمبر 2025" },
      { label: "آخر موعد للتقديم", date: "15 يناير 2026" },
      { label: "تقييم الطلبات", date: "فبراير - أبريل 2026" },
      { label: "إعلان النتائج", date: "يونيو 2026" },
      { label: "بدء الدراسة", date: "سبتمبر 2026" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "November 2025" },
      { label: "Application Deadline", date: "January 15, 2026" },
      { label: "Application Review", date: "February - April 2026" },
      { label: "Results Announcement", date: "June 2026" },
      { label: "Study Begins", date: "September 2026" }
    ],
    relatedBlogSlugs: [
      "stipendium-hungaricum-2026-arab-guide",
      "scholarships-no-ielts-2026",
      "top-15-fully-funded-scholarships-yemeni-2026",
      "motivation-letter-scholarship-guide"
    ],
    openingDate: "2026-11-15",
    expectedOpeningMonth: 11,
    lastChecked: "2026-05-01",
    officialSourceUrl: "https://stipendiumhungaricum.hu/",
    contentStatus: "published",
    tags: ["fully-funded", "all-levels", "all-fields", "includes-stipend", "includes-housing", "includes-insurance", "no-ielts", "recurring-annual"],
    relatedServices: ["application-review", "motivation-letter", "consultation"],
    faqAr: [
      { questionAr: "هل يمكنني التقديم بدون IELTS؟", questionEn: "Can I apply without IELTS?", answerAr: "نعم، بعض الجامعات تقبل شهادة لغة من الجامعة نفسها أو إثبات دراسة سابقة بالإنجليزية.", answerEn: "Yes, some universities accept their own language certificates or proof of previous English-medium education." }
    ],
  },
  {
    id: 9,
    slug: "mext-japan-scholarship",
    titleAr: "منحة الحكومة اليابانية (MEXT)",
    titleEn: "MEXT Japanese Government Scholarship",
    countryAr: "اليابان",
    countryEn: "Japan",
    flag: "🇯🇵",
    levelAr: "بكالوريوس / ماجستير / دكتوراه / بحث",
    levelEn: "Bachelor / Master / PhD / Research",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "جميع التخصصات",
    fieldEn: "All Fields",
    deadline: "2026-05-14",
    descAr: "منحة حكومية يابانية مرموقة تغطي الرسوم الدراسية وراتب شهري سخي وتذاكر الطيران والتأمين الصحي",
    descEn: "Prestigious Japanese government scholarship covering tuition, generous monthly stipend, flights, and health insurance",
    status: "open",
    link: "https://www.studyinjapan.go.jp/en/smap-stopj-applications-702.html",
    image: "https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "منحة الحكومة اليابانية (MEXT) هي واحدة من أسخى المنح الدراسية في العالم، تُقدم من وزارة التعليم والثقافة والرياضة والعلوم والتكنولوجيا اليابانية. تستهدف الطلاب الدوليين المتميزين من جميع أنحاء العالم بما في ذلك الدول العربية. تتميز براتب شهري مرتفع يصل إلى 143,000 ين ياباني (حوالي 1,000 دولار) وتغطية كاملة للرسوم. اليابان وجهة متميزة للتعليم التقني والهندسي والبحث العلمي المتقدم.",
    overviewEn: "The MEXT (Ministry of Education, Culture, Sports, Science and Technology) Scholarship is one of the most generous scholarships globally. It targets outstanding international students worldwide, including Arab countries. It features a high monthly stipend of up to 143,000 JPY (about $1,000) and full tuition coverage. Japan is an excellent destination for technical, engineering, and advanced scientific research education.",
    benefitsAr: [
      "إعفاء كامل من الرسوم الدراسية",
      "راتب شهري: 143,000 ين (بكالوريوس/ماجستير) أو 145,000 ين (دكتوراه)",
      "تذكرة طيران ذهاباً وإياباً",
      "سنة أو نصف سنة تحضيرية للغة اليابانية مجاناً",
      "إعفاء من رسوم التأشيرة",
      "سكن جامعي بأسعار مخفضة"
    ],
    benefitsEn: [
      "Full tuition fee waiver",
      "Monthly stipend: 143,000 JPY (Bachelor/Master) or 145,000 JPY (PhD)",
      "Round-trip airfare",
      "6-12 month free Japanese language preparatory course",
      "Visa fee exemption",
      "University dormitory at reduced rates"
    ],
    eligibilityAr: [
      "أن تكون من دولة مؤهلة (تشمل الدول العربية)",
      "العمر: أقل من 24 سنة للبكالوريوس، 35 للماجستير/الدكتوراه",
      "معدل أكاديمي جيد جداً",
      "الاستعداد لتعلم اللغة اليابانية",
      "صحة جيدة تسمح بالسفر والدراسة",
      "لا يشترط إجادة اللغة اليابانية مسبقاً"
    ],
    eligibilityEn: [
      "Must be from an eligible country (includes Arab countries)",
      "Age: Under 24 for Bachelor's, 35 for Master's/PhD",
      "Strong academic record",
      "Willingness to learn Japanese language",
      "Good health for travel and study",
      "Prior Japanese language knowledge not required"
    ],
    documentsAr: [
      "نموذج الطلب الرسمي",
      "شهادات أكاديمية مصدقة",
      "كشف درجات أكاديمي",
      "خطاب توصية من أستاذ أو مشرف",
      "شهادة صحية",
      "جواز سفر ساري المفعول",
      "صور شخصية",
      "مقترح بحثي (للدراسات العليا)",
      "شهادة لغة إنجليزية أو يابانية (إن وجدت)"
    ],
    documentsEn: [
      "Official application form",
      "Certified academic certificates",
      "Academic transcript",
      "Recommendation letter from professor or supervisor",
      "Health certificate",
      "Valid passport",
      "Passport photos",
      "Research proposal (for graduate studies)",
      "English or Japanese language certificate (if available)"
    ],
    stepsAr: [
      { title: "التقديم عبر السفارة", desc: "تقدم عبر السفارة اليابانية في بلدك أو أقرب سفارة مسؤولة" },
      { title: "اجتياز الاختبارات", desc: "اجتز اختبارات المنحة التي تشمل اللغة والتخصص الأكاديمي" },
      { title: "المقابلة الشخصية", desc: "حضور مقابلة في السفارة لتقييم دوافعك وأهدافك" },
      { title: "الترشيح للجامعات", desc: "بعد القبول المبدئي، يتم ترشيحك للجامعات اليابانية" },
      { title: "القبول النهائي", desc: "تحصل على القبول النهائي من الجامعة ووزارة التعليم اليابانية" },
      { title: "السفر والدراسة", desc: "تبدأ بسنة تحضيرية للغة اليابانية ثم الدراسة الأكاديمية" }
    ],
    stepsEn: [
      { title: "Apply via Embassy", desc: "Apply through the Japanese Embassy in your country or the nearest responsible embassy" },
      { title: "Pass Examinations", desc: "Take scholarship exams including language and academic subject tests" },
      { title: "Interview", desc: "Attend an embassy interview to assess your motivation and goals" },
      { title: "University Nomination", desc: "After preliminary acceptance, you'll be nominated to Japanese universities" },
      { title: "Final Acceptance", desc: "Receive final acceptance from the university and Japanese Ministry of Education" },
      { title: "Travel and Study", desc: "Begin with a Japanese language preparatory year then academic studies" }
    ],
    tipsAr: [
      "ابدأ التحضير مبكراً — التقديم يبدأ عادة في أبريل/مايو",
      "تعلم أساسيات اللغة اليابانية قبل التقديم لإظهار جديتك",
      "اكتب مقترحاً بحثياً قوياً ومحدداً (للدراسات العليا)",
      "تواصل مع أساتذة يابانيين في مجالك قبل التقديم",
      "اليابان متقدمة جداً في الهندسة والتكنولوجيا والعلوم — استفد من ذلك"
    ],
    tipsEn: [
      "Start preparing early — applications usually open in April/May",
      "Learn basic Japanese before applying to show your seriousness",
      "Write a strong and specific research proposal (for graduate studies)",
      "Contact Japanese professors in your field before applying",
      "Japan excels in engineering, technology, and sciences — leverage that"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "أبريل 2026" },
      { label: "آخر موعد للتقديم", date: "14 مايو 2026" },
      { label: "الاختبارات والمقابلات", date: "يونيو - يوليو 2026" },
      { label: "إعلان النتائج", date: "أغسطس - سبتمبر 2026" },
      { label: "بدء الدراسة", date: "أكتوبر 2026 أو أبريل 2027" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "April 2026" },
      { label: "Application Deadline", date: "May 14, 2026" },
      { label: "Exams and Interviews", date: "June - July 2026" },
      { label: "Results Announcement", date: "August - September 2026" },
      { label: "Study Begins", date: "October 2026 or April 2027" }
    ],
    relatedBlogSlugs: [
      "mext-japan-scholarship-complete-guide-2026",
      "top-15-fully-funded-scholarships-yemeni-2026",
      "motivation-letter-scholarship-guide",
      "toefl-vs-ielts-which-better"
    ],
    openingDate: "2026-04-01",
    expectedOpeningMonth: 4,
    lastChecked: "2026-04-30",
    officialSourceUrl: "https://www.mext.go.jp/en/policy/education/highered/title02/detail02/sdetail02/1373897.htm",
    contentStatus: "published",
    tags: ["fully-funded", "all-levels", "all-fields", "includes-stipend", "includes-travel", "includes-insurance", "language-prep", "recurring-annual"],
    relatedServices: ["application-review", "consultation"],
    faqAr: [
      { questionAr: "هل يجب أن أتعلم اليابانية قبل التقديم؟", questionEn: "Do I need to learn Japanese before applying?", answerAr: "لا، المنحة توفر فترة تعلم اللغة اليابانية قبل بدء الدراسة الأكاديمية.", answerEn: "No, the scholarship provides a Japanese language learning period before academic studies begin." }
    ],
  },
  {
    id: 10,
    slug: "global-korea-scholarship-gks",
    titleAr: "منحة حكومة كوريا الجنوبية (GKS/KGSP)",
    titleEn: "Global Korea Scholarship (GKS/KGSP)",
    countryAr: "كوريا الجنوبية",
    countryEn: "South Korea",
    flag: "🇰🇷",
    levelAr: "بكالوريوس / ماجستير / دكتوراه",
    levelEn: "Bachelor / Master / PhD",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "جميع التخصصات",
    fieldEn: "All Fields",
    deadline: "2027-03-31",
    descAr: "منحة حكومية كورية تغطي الرسوم والسكن وراتب شهري وتذاكر الطيران وسنة لغة كورية",
    descEn: "Korean government scholarship covering tuition, housing, monthly stipend, flights, and Korean language year",
    status: "open",
    link: "https://www.studyinkorea.go.kr",
    image: "https://images.unsplash.com/photo-1517154421773-0529f29ea451?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "منحة حكومة كوريا الجنوبية (GKS) المعروفة سابقاً بـ KGSP هي واحدة من أبرز المنح الدراسية في آسيا. تقدم أكثر من 2,000 مقعد سنوياً للطلاب الدوليين من 155 دولة بما فيها الدول العربية. تتميز بتغطية شاملة تشمل سنة كاملة لتعلم اللغة الكورية. كوريا الجنوبية رائدة عالمياً في التكنولوجيا والهندسة والذكاء الاصطناعي، مما يجعلها وجهة مثالية للطلاب الطموحين.",
    overviewEn: "The Global Korea Scholarship (GKS), formerly KGSP, is one of Asia's most prominent scholarships. It offers over 2,000 seats annually to international students from 155 countries including Arab countries. It features comprehensive coverage including a full year of Korean language training. South Korea is a global leader in technology, engineering, and AI, making it ideal for ambitious students.",
    benefitsAr: [
      "إعفاء كامل من الرسوم الدراسية",
      "راتب شهري: 1,000,000 وون (بكالوريوس) أو 1,500,000 وون (دراسات عليا)",
      "تذكرة طيران ذهاباً وإياباً",
      "سنة كاملة لتعلم اللغة الكورية مجاناً",
      "تأمين صحي شامل",
      "بدل استقرار عند الوصول: 200,000 وون",
      "بدل طباعة أطروحة: 100,000-500,000 وون"
    ],
    benefitsEn: [
      "Full tuition fee waiver",
      "Monthly stipend: 1,000,000 KRW (Bachelor) or 1,500,000 KRW (Graduate)",
      "Round-trip airfare",
      "One full year of free Korean language training",
      "Comprehensive health insurance",
      "Settlement allowance upon arrival: 200,000 KRW",
      "Thesis printing allowance: 100,000-500,000 KRW"
    ],
    eligibilityAr: [
      "أن تكون من دولة مؤهلة (تشمل الدول العربية)",
      "العمر: أقل من 25 سنة للبكالوريوس، 40 للدراسات العليا",
      "معدل تراكمي 80% فأعلى",
      "صحة جيدة",
      "لا يشترط إجادة اللغة الكورية مسبقاً",
      "ألا تكون قد حصلت على منحة GKS سابقاً"
    ],
    eligibilityEn: [
      "Must be from an eligible country (includes Arab countries)",
      "Age: Under 25 for Bachelor's, 40 for Graduate",
      "GPA of 80% or above",
      "Good health",
      "Prior Korean language knowledge not required",
      "Must not have previously received a GKS scholarship"
    ],
    documentsAr: [
      "نموذج الطلب الرسمي",
      "بيان الغرض (Statement of Purpose)",
      "خطة دراسية",
      "خطابات توصية (2 خطاب)",
      "شهادات أكاديمية مصدقة",
      "كشف درجات",
      "جواز سفر ساري",
      "شهادة لغة (إن وجدت)",
      "تقرير طبي"
    ],
    documentsEn: [
      "Official application form",
      "Statement of Purpose",
      "Study plan",
      "Recommendation letters (2)",
      "Certified academic certificates",
      "Academic transcript",
      "Valid passport",
      "Language certificate (if available)",
      "Medical report"
    ],
    stepsAr: [
      { title: "اختيار مسار التقديم", desc: "يمكنك التقديم عبر السفارة الكورية أو مباشرة عبر الجامعة الكورية" },
      { title: "تحضير المستندات", desc: "جهز جميع المستندات مع الترجمة والتصديق المطلوب" },
      { title: "تقديم الطلب", desc: "قدم طلبك عبر المسار المختار مع جميع المرفقات" },
      { title: "المراجعة والتقييم", desc: "يتم تقييم الطلبات على مرحلتين: مراجعة الملف ثم المقابلة" },
      { title: "إعلان النتائج", desc: "يتم إعلان النتائج وإرسال خطاب القبول للمقبولين" },
      { title: "سنة اللغة الكورية", desc: "تبدأ بسنة تحضيرية لتعلم اللغة الكورية ثم الدراسة الأكاديمية" }
    ],
    stepsEn: [
      { title: "Choose Application Track", desc: "You can apply through the Korean Embassy or directly through a Korean university" },
      { title: "Prepare Documents", desc: "Gather all documents with required translation and certification" },
      { title: "Submit Application", desc: "Submit your application through the chosen track with all attachments" },
      { title: "Review and Evaluation", desc: "Applications are evaluated in two stages: document review then interview" },
      { title: "Results Announcement", desc: "Results are announced and acceptance letters sent to successful applicants" },
      { title: "Korean Language Year", desc: "Begin with a preparatory year learning Korean then academic studies" }
    ],
    tipsAr: [
      "تقدم عبر مسار الجامعة ومسار السفارة معاً لزيادة فرصك",
      "اختر جامعات كورية مرموقة مثل SNU أو KAIST أو Yonsei",
      "اكتب خطة دراسية واضحة ومحددة",
      "كوريا متقدمة جداً في التكنولوجيا والهندسة — استفد من ذلك",
      "استخدم خدمة مراجعة الطلبات من دليلك للحصول على ملاحظات احترافية"
    ],
    tipsEn: [
      "Apply through both university and embassy tracks to increase chances",
      "Choose prestigious Korean universities like SNU, KAIST, or Yonsei",
      "Write a clear and specific study plan",
      "Korea excels in technology and engineering — leverage that",
      "Use Dalilak's application review service for professional feedback"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "فبراير 2026" },
      { label: "آخر موعد للتقديم", date: "31 مارس 2026" },
      { label: "المقابلات", date: "أبريل - مايو 2026" },
      { label: "إعلان النتائج", date: "يونيو - يوليو 2026" },
      { label: "سنة اللغة الكورية", date: "سبتمبر 2026" },
      { label: "بدء الدراسة الأكاديمية", date: "مارس 2027" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "February 2026" },
      { label: "Application Deadline", date: "March 31, 2026" },
      { label: "Interviews", date: "April - May 2026" },
      { label: "Results Announcement", date: "June - July 2026" },
      { label: "Korean Language Year", date: "September 2026" },
      { label: "Academic Study Begins", date: "March 2027" }
    ],
    relatedBlogSlugs: [
      "gks-korea-scholarship-guide-2027",
      "top-15-fully-funded-scholarships-yemeni-2026",
      "scholarships-no-ielts-2026",
      "motivation-letter-scholarship-guide"
    ],
    openingDate: "2026-09-01",
    expectedOpeningMonth: 2,
    lastChecked: "2026-05-01",
    officialSourceUrl: "https://www.studyinkorea.go.kr/",
    contentStatus: "published",
    tags: ["fully-funded", "all-levels", "all-fields", "includes-stipend", "includes-housing", "includes-travel", "includes-insurance", "language-prep", "recurring-annual"],
    relatedServices: ["application-review", "consultation"],
    faqAr: [
      { questionAr: "ما هي مسارات التقديم لمنحة كوريا؟", questionEn: "What are the application tracks for GKS?", answerAr: "هناك مساران: مسار السفارة ومسار الجامعة. يمكنك التقديم عبر كليهما لزيادة فرصك.", answerEn: "There are two tracks: Embassy track and University track. You can apply through both to increase your chances." }
    ],
  },
  {
    id: 11,
    slug: "islamic-university-madinah-scholarship",
    titleAr: "منحة الجامعة الإسلامية بالمدينة المنورة",
    titleEn: "Islamic University of Madinah Scholarship",
    countryAr: "السعودية",
    countryEn: "Saudi Arabia",
    flag: "🇸🇦",
    levelAr: "بكالوريوس / ماجستير / دكتوراه",
    levelEn: "Bachelor / Master / PhD",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "شريعة / لغة عربية / علوم إنسانية / حاسب",
    fieldEn: "Islamic Studies / Arabic / Humanities / Computer Science",
    deadline: "2026-06-30",
    descAr: "منحة شاملة للدراسة في المدينة المنورة تشمل السكن والراتب والتذاكر والتأمين الصحي",
    descEn: "Comprehensive scholarship to study in Madinah including housing, stipend, flights, and health insurance",
    status: "open",
    link: "https://www.iu.edu.sa",
    image: "https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "الجامعة الإسلامية بالمدينة المنورة من أعرق الجامعات الإسلامية في العالم، وتستقبل طلاباً من أكثر من 160 دولة. تقدم منحاً دراسية سخية للطلاب الدوليين تشمل تغطية كاملة للدراسة والمعيشة. تتميز بموقعها في المدينة المنورة وبيئتها الروحانية الفريدة. تقدم تخصصات متنوعة تشمل العلوم الشرعية واللغة العربية والحاسب الآلي والعلوم الإنسانية.",
    overviewEn: "The Islamic University of Madinah is one of the most prestigious Islamic universities globally, hosting students from over 160 countries. It offers generous scholarships for international students with full coverage for study and living. Located in the holy city of Madinah, it offers a unique spiritual environment. Programs include Islamic studies, Arabic language, computer science, and humanities.",
    benefitsAr: [
      "إعفاء كامل من الرسوم الدراسية",
      "راتب شهري مجزي",
      "سكن جامعي مجاني",
      "تذكرة طيران سنوية",
      "تأمين صحي شامل",
      "معهد تعليم اللغة العربية لغير الناطقين بها",
      "بيئة روحانية فريدة في المدينة المنورة"
    ],
    benefitsEn: [
      "Full tuition fee waiver",
      "Generous monthly stipend",
      "Free university housing",
      "Annual flight ticket",
      "Comprehensive health insurance",
      "Arabic Language Institute for non-native speakers",
      "Unique spiritual environment in Madinah"
    ],
    eligibilityAr: [
      "أن يكون مسلماً",
      "العمر: 17-25 سنة للبكالوريوس",
      "حاصل على شهادة الثانوية العامة أو ما يعادلها",
      "أن يكون حسن السيرة والسلوك",
      "أن يجتاز الفحص الطبي",
      "ألا يكون مفصولاً من جامعة سعودية"
    ],
    eligibilityEn: [
      "Must be Muslim",
      "Age: 17-25 for Bachelor's",
      "High school diploma or equivalent",
      "Good conduct and behavior",
      "Must pass medical examination",
      "Must not have been dismissed from a Saudi university"
    ],
    documentsAr: [
      "نموذج طلب الالتحاق",
      "شهادة الثانوية العامة مصدقة",
      "كشف درجات",
      "جواز سفر ساري المفعول",
      "صور شخصية",
      "شهادة حسن سيرة وسلوك",
      "تقرير طبي",
      "شهادة ميلاد"
    ],
    documentsEn: [
      "Admission application form",
      "Certified high school diploma",
      "Academic transcript",
      "Valid passport",
      "Passport photos",
      "Good conduct certificate",
      "Medical report",
      "Birth certificate"
    ],
    stepsAr: [
      { title: "التقديم الإلكتروني", desc: "قدم طلبك عبر بوابة القبول الإلكترونية للجامعة الإسلامية" },
      { title: "رفع المستندات", desc: "ارفع جميع المستندات المطلوبة بصيغة PDF واضحة" },
      { title: "انتظار المفاضلة", desc: "يتم تقييم الطلبات والمفاضلة بين المتقدمين" },
      { title: "القبول والتأشيرة", desc: "بعد القبول، تبدأ إجراءات استخراج التأشيرة الدراسية" },
      { title: "الوصول والتسجيل", desc: "تصل للمدينة المنورة وتبدأ إجراءات التسجيل والسكن" }
    ],
    stepsEn: [
      { title: "Online Application", desc: "Submit your application through the Islamic University's online admission portal" },
      { title: "Upload Documents", desc: "Upload all required documents in clear PDF format" },
      { title: "Wait for Selection", desc: "Applications are evaluated and candidates are selected" },
      { title: "Acceptance and Visa", desc: "After acceptance, begin student visa procedures" },
      { title: "Arrival and Registration", desc: "Arrive in Madinah and complete registration and housing procedures" }
    ],
    tipsAr: [
      "قدم مبكراً — المقاعد محدودة والطلب كبير",
      "حافظ على معدل أكاديمي مرتفع في الثانوية",
      "الجامعة مثالية لمن يريد التخصص في العلوم الشرعية واللغة العربية",
      "استفد من معهد اللغة العربية إذا كنت بحاجة لتطوير لغتك"
    ],
    tipsEn: [
      "Apply early — seats are limited and demand is high",
      "Maintain a high academic GPA in high school",
      "The university is ideal for those wanting to specialize in Islamic studies and Arabic",
      "Take advantage of the Arabic Language Institute if you need to improve your language"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "أبريل 2026" },
      { label: "آخر موعد للتقديم", date: "30 يونيو 2026" },
      { label: "إعلان النتائج", date: "أغسطس 2026" },
      { label: "بدء الدراسة", date: "سبتمبر 2026" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "April 2026" },
      { label: "Application Deadline", date: "June 30, 2026" },
      { label: "Results Announcement", date: "August 2026" },
      { label: "Study Begins", date: "September 2026" }
    ],
    relatedBlogSlugs: [
      "islamic-university-madinah-scholarship-guide-2026",
      "top-15-fully-funded-scholarships-yemeni-2026",
      "saudi-university-scholarships-yemeni-guide"
    ],
    openingDate: "2026-03-01",
    expectedOpeningMonth: 3,
    lastChecked: "2026-04-30",
    officialSourceUrl: "https://www.iu.edu.sa/",
    contentStatus: "published",
    tags: ["fully-funded", "undergraduate", "includes-stipend", "includes-housing", "includes-travel", "includes-insurance", "recurring-annual"],
    relatedServices: ["application-review", "consultation"],
    faqAr: [
      { questionAr: "ما التخصصات المتاحة في الجامعة الإسلامية؟", questionEn: "What programs are available at Islamic University?", answerAr: "تشمل العلوم الشرعية، اللغة العربية، الحاسب الآلي، والعلوم الإدارية.", answerEn: "Programs include Islamic Studies, Arabic Language, Computer Science, and Administrative Sciences." }
    ],
  },
  {
    id: 12,
    slug: "hbku-qatar-scholarship",
    titleAr: "منحة جامعة حمد بن خليفة - قطر (HBKU)",
    titleEn: "Hamad Bin Khalifa University Scholarship (HBKU)",
    countryAr: "قطر",
    countryEn: "Qatar",
    flag: "🇶🇦",
    levelAr: "ماجستير / دكتوراه",
    levelEn: "Master / PhD",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "علوم / هندسة / سياسات / إسلامية / إنسانية",
    fieldEn: "Sciences / Engineering / Policy / Islamic / Humanities",
    deadline: "2027-04-15",
    descAr: "منحة شاملة في قطر تغطي الرسوم والسكن والراتب والتأمين — لا تشترط IELTS",
    descEn: "Comprehensive Qatar scholarship covering tuition, housing, stipend, and insurance — no IELTS required",
    status: "open",
    link: "https://www.hbku.edu.qa",
    image: "https://images.unsplash.com/photo-1549944850-84e00be4203b?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "جامعة حمد بن خليفة (HBKU) هي جامعة بحثية رائدة في المدينة التعليمية بالدوحة، قطر. تقدم منحاً دراسية سخية للغاية للدراسات العليا تشمل تغطية كاملة. تتميز بأنها لا تشترط اختبار IELTS للقبول، مما يجعلها خياراً ممتازاً للطلاب العرب. الجامعة جزء من مؤسسة قطر وتضم كليات متميزة في العلوم والهندسة والسياسات والدراسات الإسلامية.",
    overviewEn: "Hamad Bin Khalifa University (HBKU) is a leading research university in Education City, Doha, Qatar. It offers very generous graduate scholarships with full coverage. Notably, it does not require IELTS for admission, making it an excellent option for Arab students. The university is part of Qatar Foundation and features distinguished colleges in sciences, engineering, policy, and Islamic studies.",
    benefitsAr: [
      "إعفاء كامل من الرسوم الدراسية",
      "راتب شهري مجزي",
      "سكن مجاني في المدينة التعليمية",
      "تأمين صحي شامل",
      "تذكرة طيران سنوية",
      "بيئة بحثية عالمية المستوى",
      "لا يشترط IELTS"
    ],
    benefitsEn: [
      "Full tuition fee waiver",
      "Generous monthly stipend",
      "Free housing in Education City",
      "Comprehensive health insurance",
      "Annual flight ticket",
      "World-class research environment",
      "No IELTS required"
    ],
    eligibilityAr: [
      "شهادة بكالوريوس بمعدل جيد جداً",
      "إجادة اللغة الإنجليزية (بدون اشتراط IELTS)",
      "خبرة بحثية أو مهنية (مفضلة)",
      "خطابات توصية قوية",
      "بيان غرض مقنع"
    ],
    eligibilityEn: [
      "Bachelor's degree with very good GPA",
      "English proficiency (no IELTS required)",
      "Research or professional experience (preferred)",
      "Strong recommendation letters",
      "Compelling statement of purpose"
    ],
    documentsAr: [
      "نموذج الطلب الإلكتروني",
      "شهادة البكالوريوس وكشف الدرجات",
      "بيان الغرض",
      "خطابات توصية (2-3)",
      "سيرة ذاتية أكاديمية",
      "جواز سفر ساري",
      "مقترح بحثي (للدكتوراه)"
    ],
    documentsEn: [
      "Online application form",
      "Bachelor's degree and transcript",
      "Statement of purpose",
      "Recommendation letters (2-3)",
      "Academic CV",
      "Valid passport",
      "Research proposal (for PhD)"
    ],
    stepsAr: [
      { title: "التقديم الإلكتروني", desc: "قدم طلبك عبر بوابة القبول الإلكترونية لجامعة HBKU" },
      { title: "رفع المستندات", desc: "ارفع جميع المستندات المطلوبة عبر البوابة" },
      { title: "المقابلة", desc: "قد تُدعى لمقابلة عبر الإنترنت أو حضورياً" },
      { title: "القبول", desc: "تحصل على خطاب القبول مع تفاصيل المنحة" },
      { title: "إجراءات السفر", desc: "تبدأ إجراءات التأشيرة والسكن" }
    ],
    stepsEn: [
      { title: "Online Application", desc: "Submit your application through HBKU's online admission portal" },
      { title: "Upload Documents", desc: "Upload all required documents through the portal" },
      { title: "Interview", desc: "You may be invited for an online or in-person interview" },
      { title: "Acceptance", desc: "Receive acceptance letter with scholarship details" },
      { title: "Travel Arrangements", desc: "Begin visa and housing procedures" }
    ],
    tipsAr: [
      "لا تحتاج IELTS — هذه ميزة كبيرة للطلاب العرب",
      "ركز على كتابة بيان غرض قوي ومحدد",
      "قطر قريبة جغرافياً من الدول العربية — ميزة إضافية",
      "الجامعة ممتازة في مجالات الطاقة والبيئة والسياسات",
      "استخدم خدمة مراجعة الطلبات من دليلك"
    ],
    tipsEn: [
      "No IELTS needed — a great advantage for Arab students",
      "Focus on writing a strong and specific statement of purpose",
      "Qatar is geographically close to Arab countries — an added benefit",
      "The university excels in energy, environment, and policy fields",
      "Use Dalilak's application review service"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "نوفمبر 2025" },
      { label: "آخر موعد للتقديم", date: "15 أبريل 2026" },
      { label: "المقابلات", date: "مايو 2026" },
      { label: "إعلان النتائج", date: "يونيو 2026" },
      { label: "بدء الدراسة", date: "أغسطس 2026" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "November 2025" },
      { label: "Application Deadline", date: "April 15, 2026" },
      { label: "Interviews", date: "May 2026" },
      { label: "Results Announcement", date: "June 2026" },
      { label: "Study Begins", date: "August 2026" }
    ],
    relatedBlogSlugs: [
      "hbku-qatar-scholarship-guide-2027",
      "scholarships-no-ielts-2026",
      "top-15-fully-funded-scholarships-yemeni-2026",
      "motivation-letter-scholarship-guide"
    ],
    openingDate: "2027-01-01",
    expectedOpeningMonth: 11,
    lastChecked: "2026-05-01",
    officialSourceUrl: "https://www.hbku.edu.qa/en/admissions",
    contentStatus: "published",
    tags: ["fully-funded", "masters", "phd", "includes-stipend", "includes-housing", "includes-insurance", "recurring-annual"],
    relatedServices: ["application-review", "motivation-letter", "consultation"],
    faqAr: [
      { questionAr: "ما مميزات الدراسة في قطر؟", questionEn: "What are the advantages of studying in Qatar?", answerAr: "بيئة عربية إسلامية، رواتب مجزية، مرافق عالمية المستوى، وفرص بحثية متميزة.", answerEn: "Arab-Islamic environment, generous stipends, world-class facilities, and excellent research opportunities." }
    ],
  },
  {
    id: 13,
    slug: "rawad-yemen-turkey-program",
    titleAr: "برنامج رواد اليمن - تركيا (الدفعة الرابعة)",
    titleEn: "Rawad Al-Yemen Program - Turkey (4th Cohort)",
    countryAr: "تركيا",
    countryEn: "Turkey",
    flag: "🇹🇷",
    levelAr: "بكالوريوس",
    levelEn: "Bachelor",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "جميع التخصصات",
    fieldEn: "All Fields",
    deadline: "2026-05-30",
    descAr: "برنامج خاص يدعم الطلاب المتقدمين على المنحة التركية بتدريب وإرشاد مكثف",
    descEn: "Special program supporting students applying for the Turkish scholarship with intensive training and mentoring",
    status: "open",
    link: "https://veysvakfi.org/yemen-pioneers-program-fourth-cohort-2026/",
    image: "https://images.unsplash.com/photo-1541339907198-e08756dedf3f?w=1200&h=600&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "برنامج رواد اليمن هو مبادرة فريدة تدعمها مؤسسة ويس التركية، تستهدف الطلاب المتقدمين على المنحة التركية. يوفر البرنامج تدريباً مكثفاً وإرشاداً أكاديمياً ودعماً شاملاً لزيادة فرص القبول في المنحة التركية. الدفعة الرابعة لعام 2026 مفتوحة الآن للتقديم.",
    overviewEn: "Rawad Al-Yemen (Yemen Pioneers) is a unique initiative supported by the Veys Foundation in Turkey, targeting students applying for the Turkish Government Scholarship. The program provides intensive training, academic mentoring, and comprehensive support to increase acceptance chances. The 4th cohort for 2026 is now open for applications.",
    benefitsAr: [
      "تدريب مكثف على التقديم للمنحة التركية",
      "إرشاد أكاديمي ومهني",
      "دعم في كتابة خطاب النوايا",
      "تحضير للمقابلة الشخصية",
      "شبكة خريجين عرب في تركيا",
      "دعم ما بعد القبول"
    ],
    benefitsEn: [
      "Intensive training for Turkish scholarship application",
      "Academic and career mentoring",
      "Support in writing motivation letter",
      "Interview preparation",
      "Arab alumni network in Turkey",
      "Post-acceptance support"
    ],
    eligibilityAr: [
      "أن يكون من الدول المؤهلة",
      "أن يكون مقدماً على المنحة التركية لعام 2026",
      "أن يكون حاصلاً على الثانوية العامة أو في السنة الأخيرة",
      "معدل أكاديمي جيد",
      "الالتزام بحضور التدريبات"
    ],
    eligibilityEn: [
      "Must be from an eligible country",
      "Must be applying for the 2026 Turkish scholarship",
      "Must have high school diploma or be in final year",
      "Good academic record",
      "Commitment to attend training sessions"
    ],
    documentsAr: [
      "نموذج طلب البرنامج",
      "إثبات التقديم على المنحة التركية",
      "شهادة الثانوية العامة",
      "جواز سفر أو هوية",
      "صورة شخصية"
    ],
    documentsEn: [
      "Program application form",
      "Proof of Turkish scholarship application",
      "High school diploma",
      "Passport or ID",
      "Personal photo"
    ],
    stepsAr: [
      { title: "التقديم على المنحة التركية", desc: "قدم أولاً على المنحة التركية عبر موقعها الرسمي" },
      { title: "التقديم على برنامج رواد", desc: "قدم على برنامج رواد اليمن عبر موقع مؤسسة ويس" },
      { title: "حضور التدريبات", desc: "احضر جلسات التدريب والإرشاد المكثفة" },
      { title: "التحضير للمقابلة", desc: "استعد للمقابلة الشخصية للمنحة التركية بدعم من البرنامج" }
    ],
    stepsEn: [
      { title: "Apply for Turkish Scholarship", desc: "First apply for the Turkish scholarship through its official website" },
      { title: "Apply for Rawad Program", desc: "Apply for the Rawad Al-Yemen program through the Veys Foundation website" },
      { title: "Attend Training", desc: "Attend intensive training and mentoring sessions" },
      { title: "Interview Preparation", desc: "Prepare for the Turkish scholarship interview with program support" }
    ],
    tipsAr: [
      "هذا البرنامج يزيد فرصك بشكل كبير في القبول بالمنحة التركية",
      "قدم على البرنامج فور تقديمك على المنحة التركية",
      "استفد من شبكة الخريجين العرب في تركيا"
    ],
    tipsEn: [
      "This program significantly increases your chances of Turkish scholarship acceptance",
      "Apply for the program as soon as you apply for the Turkish scholarship",
      "Benefit from the Arab alumni network in Turkey"
    ],
    importantDatesAr: [
      { label: "فتح باب التقديم", date: "أبريل 2026" },
      { label: "آخر موعد للتقديم", date: "30 مايو 2026" },
      { label: "بدء التدريبات", date: "يونيو 2026" }
    ],
    importantDatesEn: [
      { label: "Application Opens", date: "April 2026" },
      { label: "Application Deadline", date: "May 30, 2026" },
      { label: "Training Begins", date: "June 2026" }
    ],
    relatedBlogSlugs: [
      "turkish-scholarship-2026-yemeni-guide",
      "turkish-scholarship-interview-tips",
      "motivation-letter-scholarship-guide"
    ],
    openingDate: "2026-04-01",
    expectedOpeningMonth: 4,
    lastChecked: "2026-04-30",
    officialSourceUrl: "https://rawadprogram.org",
    contentStatus: "published",
    tags: ["fully-funded", "all-levels", "all-fields", "arab-priority", "recurring-annual"],
    relatedServices: ["application-review", "consultation"],
    faqAr: [
      { questionAr: "ما علاقة برنامج رواد بالمنحة التركية؟", questionEn: "What is the relationship between Rawad and the Turkish scholarship?", answerAr: "برنامج رواد يساعد في تأهيل الطلاب وتدريبهم لزيادة فرص قبولهم في المنحة التركية.", answerEn: "Rawad helps qualify and train students to increase their chances of acceptance in the Turkish scholarship." }
    ],
  },
  {
    id: 14,
    slug: "saudi-competitive-scholarship-2026",
    titleAr: "المنح التنافسية السعودية - ادرس في السعودية (2026/2027)",
    titleEn: "Saudi Competitive Scholarships - Study in Saudi (2026/2027)",
    countryAr: "السعودية",
    countryEn: "Saudi Arabia",
    flag: "🇸🇦",
    levelAr: "دبلوم / بكالوريوس / ماجستير / دكتوراه",
    levelEn: "Diploma / Bachelor / Master / PhD",
    fundingAr: "ممولة بالكامل",
    fundingEn: "Fully Funded",
    fieldAr: "الهندسة، الحاسوب، الذكاء الاصطناعي، العلوم الطبيعية، إدارة الأعمال، القانون، الإعلام، اللغات، العلوم الإسلامية",
    fieldEn: "Engineering, CS, AI, Cybersecurity, Natural Sciences, Business, Law, Media, Languages, Islamic Studies",
    deadline: "2026-05-21",
    descAr: "منح تنافسية مقدمة من الجامعات السعودية الحكومية والخاصة عبر منصة 'ادرس في السعودية' الرسمية. تشمل إعفاء كامل من الرسوم ومكافأة شهرية وسكن مجاني.",
    descEn: "Competitive scholarships offered by Saudi public and private universities through the official 'Study in Saudi' platform. Includes full tuition waiver, monthly stipend, and free housing.",
    status: "open",
    link: "https://studyinsaudi.sa/ar",
    image: "https://images.unsplash.com/photo-1466442929976-97f336a657be?w=800&h=400&fit=crop",
    lastUpdated: "2026-04-30",
    overviewAr: "منصة 'ادرس في السعودية' تفتح باب التسجيل للطلاب الدوليين الراغبين في المنافسة على المقاعد الدراسية في الجامعات السعودية للعام الجامعي 2026/2027. تغطي المنحة مجموعة واسعة من التخصصات في أكثر من 50 جامعة حكومية وخاصة مصنفة ضمن أفضل الجامعات عالمياً.",
    overviewEn: "The 'Study in Saudi' platform opens registration for international students wishing to compete for study seats in Saudi universities for the academic year 2026/2027. The scholarship covers a wide range of specializations across more than 50 public and private universities ranked among the best globally.",
    benefitsAr: [
      "إعفاء كامل من الرسوم الدراسية",
      "مكافأة شهرية لتغطية نفقات المعيشة",
      "سكن مجاني داخل الحرم الجامعي",
      "تأمين صحي شامل",
      "تذاكر سفر سنوية",
      "بدل نقدي عند الوصول لأول مرة"
    ],
    benefitsEn: [
      "Full tuition fee waiver",
      "Monthly living allowance",
      "Free on-campus housing",
      "Comprehensive health insurance",
      "Annual travel tickets",
      "One-time arrival allowance"
    ],
    eligibilityAr: [
      "جواز سفر ساري المفعول (لمدة لا تقل عن 6 أشهر)",
      "ألا يكون الطالب قد حصل سابقاً على منحة دراسية في المملكة",
      "اجتياز الفحص الطبي المطلوب",
      "توفر شهادة خلو من السوابق",
      "الحصول على قبول من المؤسسة التعليمية عبر المنصة"
    ],
    eligibilityEn: [
      "Valid passport (minimum 6 months validity)",
      "Must not have previously received a scholarship in Saudi Arabia",
      "Pass the required medical examination",
      "Provide a clean criminal record certificate",
      "Obtain acceptance from an educational institution through the platform"
    ],
    documentsAr: [
      "جواز سفر ساري المفعول",
      "شهادة الثانوية العامة أو آخر مؤهل أكاديمي مصدق",
      "كشف درجات أكاديمي",
      "شهادة خلو من السوابق",
      "تقرير طبي معتمد",
      "صور شخصية بخلفية بيضاء",
      "شهادات اللغة (إن وجدت)"
    ],
    documentsEn: [
      "Valid passport",
      "High school certificate or latest academic qualification (authenticated)",
      "Academic transcript",
      "Clean criminal record certificate",
      "Certified medical report",
      "Personal photos with white background",
      "Language certificates (if available)"
    ],
    stepsAr: [
      { title: "إنشاء حساب", desc: "قم بإنشاء حساب على منصة 'ادرس في السعودية' عبر الرابط الرسمي studyinsaudi.sa" },
      { title: "إكمال الملف الشخصي", desc: "أدخل بياناتك الشخصية والأكاديمية بدقة وارفع المستندات المطلوبة" },
      { title: "إضافة الرغبات", desc: "اختر الجامعات والتخصصات التي ترغب في الدراسة بها (متاح من 19 أبريل - 21 مايو)" },
      { title: "تقديم الطلب", desc: "راجع بياناتك وقدم الطلب قبل الموعد النهائي 21 مايو 2026" },
      { title: "انتظار النتائج", desc: "يتم مراجعة الطلب من قبل المؤسسة التعليمية واتخاذ قرار القبول" },
      { title: "إصدار التأشيرة", desc: "بعد القبول، يتم إصدار التأشيرة التعليمية واستكمال إجراءات السفر" }
    ],
    stepsEn: [
      { title: "Create Account", desc: "Create an account on the 'Study in Saudi' platform via studyinsaudi.sa" },
      { title: "Complete Profile", desc: "Enter your personal and academic information accurately and upload required documents" },
      { title: "Add Preferences", desc: "Select universities and programs you wish to study at (available April 19 - May 21)" },
      { title: "Submit Application", desc: "Review your information and submit before the deadline of May 21, 2026" },
      { title: "Await Results", desc: "Your application will be reviewed by the educational institution for acceptance decision" },
      { title: "Visa Issuance", desc: "After acceptance, an educational visa will be issued and travel procedures completed" }
    ],
    tipsAr: [
      "قدّم مبكراً ولا تنتظر آخر يوم — المنصة قد تتعطل بسبب الضغط",
      "اختر تخصصات متعددة في قائمة الرغبات لزيادة فرص القبول",
      "تأكد من مصادقة جميع الوثائق من الجهات المختصة قبل التقديم",
      "جهّز شهادة IELTS أو TOEFL إذا كان التخصص يتطلب لغة إنجليزية",
      "تابع حالة طلبك بانتظام عبر المنصة",
      "تواصل مع الملحقية الثقافية السعودية في حال واجهت أي مشكلة تقنية"
    ],
    tipsEn: [
      "Apply early — don't wait until the last day as the platform may crash due to traffic",
      "Select multiple programs in your preference list to increase acceptance chances",
      "Ensure all documents are authenticated by relevant authorities before applying",
      "Prepare IELTS or TOEFL certificate if the program requires English proficiency",
      "Regularly check your application status through the platform",
      "Contact the Saudi Cultural Attaché if you face any technical issues"
    ],
    importantDatesAr: [
      { label: "بدء إضافة الرغبات", date: "19 أبريل 2026" },
      { label: "آخر موعد للتقديم", date: "21 مايو 2026" },
      { label: "إعلان النتائج المبدئية", date: "يوليو 2026 (تقريباً)" },
      { label: "بدء العام الدراسي", date: "سبتمبر 2026" }
    ],
    importantDatesEn: [
      { label: "Preference addition starts", date: "April 19, 2026" },
      { label: "Application deadline", date: "May 21, 2026" },
      { label: "Initial results announcement", date: "July 2026 (approximately)" },
      { label: "Academic year begins", date: "September 2026" }
    ],
    relatedBlogSlugs: [
      "saudi-competitive-scholarship-guide-2026",
      "king-abdulaziz-university-scholarship-guide",
      "motivation-letter-scholarship-guide",
      "academic-cv-writing-guide"
    ],
    openingDate: "2026-04-15",
    expectedOpeningMonth: 4,
    lastChecked: "2026-04-30",
    officialSourceUrl: "https://studyinsaudi.sa/ar",
    contentStatus: "published",
    tags: ["fully-funded", "all-levels", "includes-stipend", "includes-housing", "includes-insurance", "new-opportunity"],
    relatedServices: ["application-review", "consultation"],
    faqAr: [
      { questionAr: "كم عدد الجامعات المشاركة في المنصة؟", questionEn: "How many universities participate in the platform?", answerAr: "أكثر من 50 جامعة حكومية وخاصة سعودية مشاركة في منصة ادرس في السعودية.", answerEn: "More than 50 Saudi public and private universities participate in the Study in Saudi platform." },
      { questionAr: "هل المنحة تشمل تخصصات الطب؟", questionEn: "Does the scholarship cover medical programs?", answerAr: "بعض الجامعات تقدم مقاعد في التخصصات الصحية لكن المنافسة عليها عالية جداً.", answerEn: "Some universities offer seats in health programs but competition is very high." }
    ],
    source: "ministry",
    sourceNameAr: "وزارة التعليم العالي والبحث العلمي - اليمن",
    sourceNameEn: "Yemeni Ministry of Higher Education and Scientific Research"
  }
];
