.project_details_head .h3 {
    font-size: 2.75rem !important;
}
@media only screen and (max-width: 767px) {
    .project_details_head .h3 {
        font-size: 1.875rem !important;
    }
}
.project_idea_details_content {
    color: #000 !important;
}
/* إلغاء أي طبقة تعتيم فوق الصور في السلايدر */
.slide-item .image-layer::before,
.slide-item .image-layer::after,
.slide-item::before,
.slide-item::after {
  background: transparent !important;
  opacity: 0 !important;
  box-shadow: none !important;
}

/* تأكيد عدم وجود مزج ألوان/فلتر يؤثر على الصورة */
.slide-item .image-layer {
  mix-blend-mode: normal !important;
  filter: none !important;
  background-color: transparent !important;
}
.link-box {
    display: none !important;
}
html[lang="ar"] .contact_one_left-text {
  direction: rtl;
  /* float: right; */
}
@media (min-width: 1200px) {
    .crowdfunding_detail.crowdfunding_detail_two .col-xl-4 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }

    .crowdfunding_detail.crowdfunding_detail_two .container {
        max-width: 95% !important;
    }
}
@media (min-width: 1200px) {
    .explorep_projects_one.projects_two .col-xl-4 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }

    .explorep_projects_one.projects_two .container {
        max-width: 95% !important;
    }
}
.site_footer_bottom_icon {
    display: none;
}
.block_title_icon {
    display: none;
}
.footer-widget__title {
    display: none;
}
.project_details_right_top.mt-2 {
    display: none;
}
/* ══════════════════════════════════════════════════════════
   إصلاح اتجاه النص العربي (bidi)
   الصفحة تُبنى بـ dir=ltr والقالب يحاكي الـ RTL بالـ CSS،
   لذلك كانت النقطة/الفاصلة/الأقواس في نهاية الجملة تظهر في
   الجهة الخطأ. unicode-bidi:plaintext يجعل اتجاه كل فقرة
   يُشتق من أول حرف فيها (عربي = RTL) دون أي تغيير في التخطيط.
   ══════════════════════════════════════════════════════════ */
html[lang="ar"] p,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="ar"] .h1,
html[lang="ar"] .h2,
html[lang="ar"] .h3,
html[lang="ar"] .h4,
html[lang="ar"] .h5,
html[lang="ar"] .h6,
html[lang="ar"] li,
html[lang="ar"] dd,
html[lang="ar"] dt,
html[lang="ar"] td,
html[lang="ar"] th,
html[lang="ar"] label,
html[lang="ar"] blockquote,
html[lang="ar"] figcaption,
html[lang="ar"] summary {
    unicode-bidi: plaintext;
}

/* ============================================================
   إصلاح انقلاب أرقام الهاتف داخل النص العربي (2026-08-26)
   السبب: الفقرة العربية اتجاهها RTL فتنعكس ترتيب مجموعات الرقم
   وتنتقل علامة + إلى الجهة الخطأ. العزل يجعل الرقم LTR وحده
   دون أي تأثير على تخطيط الصفحة.
   ============================================================ */
html[lang="ar"] a[href^="tel:"],
html[lang="ar"] a[href^="callto:"],
html[lang="ar"] a[href^="sms:"],
html[lang="ar"] a[href*="wa.me"],
html[lang="ar"] a[href*="api.whatsapp.com"],
html[lang="ar"] .numberen,
html[lang="ar"] .phone-ltr,
html[lang="ar"] bdi {
    direction: ltr;
    unicode-bidi: isolate;
}

/* ============================================================
   إصلاح اتجاه القوائم داخل محتوى الصفحات (سياسات/مدونة) 2026-09-01
   السبب: الصفحة كلها direction:ltr (لا نضع dir="rtl" أبداً)،
   فالنقاط/الأرقام تُرسم على يسار الصندوق بينما النص محاذاته يمين
   ⇒ تظهر النقطة بعيدة عن نصها في أقصى اليسار.
   الحل: قصر direction:rtl على عنصر القائمة نفسه فقط داخل المحتوى
   (ck-content/scontent) — لا يمسّ القوائم البنيوية للقوائم العلوية
   ولا التخطيط العام.
   ============================================================ */
html[lang="ar"] .ck-content ul,
html[lang="ar"] .ck-content ol,
html[lang="ar"] .scontent ul,
html[lang="ar"] .scontent ol {
    direction: rtl;
}

/* ============================================================
   إصلاح اتجاه القوائم داخل وصف الحملة (صفحة المشروع) 2026-09-14
   السبب نفسه: الصفحة direction:ltr، و ul داخل وصف الحملة
   padding = 0 ⇒ النقاط تُرسم في أقصى اليسار بعيدة عن نصها.
   الحل: direction:rtl + هامش داخلي يمين ليبقى الرمز ملاصقاً للنص
   وداخل عمود المحتوى. مقصور على حاوية الوصف وحدها.
   ============================================================ */
html[lang="ar"] .project_idea_details_content ul,
html[lang="ar"] .project_idea_details_content ol {
    direction: rtl;
    padding-right: 1.5rem;
    padding-left: 0;
}
