... | 🕐 --:--
-- -- --
عاجل
⚡ عاجل: كريستيانو رونالدو يُتوّج كأفضل لاعب كرة قدم في العالم ⚡ أخبار عاجلة تتابعونها لحظة بلحظة على خبر ⚡ تابعوا آخر المستجدات والأحداث من حول العالم
⌘K
AI مباشر
26847 مقال 231 مصدر نشط 38 قناة مباشرة 5998 خبر اليوم
آخر تحديث: منذ 0 ثانية

الأردن قصة نمو في زمن الاضطراب

وطنا اليوم
2026/03/26 - 11:55 501 مشاهدة
وطنا اليوم _ بقلم النائب رند الخزوز / عضو اللجنة المالية على مدار عشرين عاماً، لم يمر الاقتصاد الأردني بمرحلة خالية من التحديات، إلا أنه استطاع في كل مرة أن يعيد ضبط مساره ويحافظ على استقراره، مستنداً إلى خبرة مؤسسية تراكمية وقدرة متنامية على إدارة الأزمات. وفي زمن تتسارع فيه التحولات الاقتصادية وتتبدل فيه موازين الاستقرار في المنطقة، يواصل الأردن ترسيخ موقعه كاقتصاد قادر على التكيف والنمو، لا بوصفه اقتصاداً يكتفي بإدارة الأزمات، بل اقتصاداً يسعى إلى تحويلها إلى فرص لتعزيز الاستقرار والانطلاق نحو مرحلة تنموية أكثر رسوخاً. وانعكست ملامح هذا المسار بوضوح في المؤشرات الاقتصادية الأخيرة، التي أظهرت تحسناً تدريجياً في فرص الانطلاقة الاقتصادية، مدعوماً بتوقعات تحقيق معدلات نمو أعلى وإدارة مالية أكثر استدامة، إلى جانب توسع العلاقات التجارية والاقتصادية مع دول الإقليم والعالم. وقد تجلى ذلك في نمو الصادرات الوطنية بنسبة 9.9% خلال عام 2025 مقارنة بـ 6.2% في عام 2024، واستمرار السيطرة على معدلات التضخم عند مستويات منخفضة بلغت نحو 1.77%، بالتزامن مع بدء تنفيذ المرحلة الثانية من رؤية التحديث الاقتصادي. هذا الزخم الإيجابي أكدته أيضاً نتائج الشهرين الأولين من العام الحالي، حيث أظهرت بيانات البنك المركزي ارتفاع حوالات العاملين في الخارج خلال كانون الثاني 2026 بنسبة 11.9% لتصل إلى نحو 373.6 مليون دولار، وهو ما يعكس استمرار ثقة الأردنيين في الخارج بالاقتصاد الوطني وتدفق العملات الأجنبية إلى المملكة. وفي المقابل، سجل الدخل السياحي خلال الفترة نفسها نحو 1.2 مليار دولار، بنمو أبطأ نتيجة الظروف الإقليمية وحالة عدم اليقين السائدة، فيما بقي التضخم عند مستويات منخفضة تقارب 1.11% خلال الشهرين الأولين من العام. وفي ظل التصعيد الإقليمي الأخير وما رافقه من اضطرابات...
مشاركة:
\n

مقالات ذات صلة

// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 48599; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 48599; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
AI
يا هلا! اسألني أي شي 🎤