/*!
============================================================
HCCD Front-End (RTL) — Mini Style Guide
============================================================
Palette:
- Primary Red:    #E11F26
- Accent Green:   #17A53E
- Dark Text:      #1F2937
- Muted Text:     #6B7280
- Light BG:       #F7F7F7
- Border:         #E5E7EB
- Footer BG:      #151515

Typography (Google Font):
- Cairo (400, 500, 600, 700)
Base sizes:
- Body: 16px
- H1:   clamp(1.6rem, 2.6vw, 2.4rem)
- H2:   clamp(1.25rem, 2vw, 1.6rem)

Spacing (Design rhythm):
- Section padding: 72px desktop / 48px mobile
- Radius: 18px cards / 999px pills
============================================================
*/

:root{
  --font-base: "Cairo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  --c-primary: #E11F26;
  --c-primary-2: #C7181E;
  --c-green: #17A53E;
  --c-red:#E11F26;

  --c-text: #1F2937;
  --c-muted: #6B7280;
  --c-border: #E5E7EB;
  --c-bg: #FFFFFF;
  --c-bg-soft: #F7F7F7;

  --c-footer: #151515;

  --shadow-soft: 0 12px 30px rgba(16, 24, 40, 0.08);
  --shadow-nav: 0 10px 26px rgba(16, 24, 40, 0.10);

  --radius-card: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  --container-max: 1320px;
  --c-primary:#E11F26;
  --ink:#111827;
  --muted:#6b7280;
  --bg:#ffffff;
  --card:#ffffff;
  --shadow: 0 10px 22px rgba(0,0,0,.10);
  --radius: 12px;


}

html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-base);
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}
  /* body { font-family: Tahoma, Arial, sans-serif; } */

    /* ====== Top Bar ====== */
    .topbar {
      background: #000000 !important;
      color: #fff;
      font-size: 13px;
      line-height: 1;
    }
    .topbar a { color: #fff; opacity: .9; text-decoration: none; }
    .topbar a:hover { opacity: 1; }

    .topbar .topbar-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 0;
      white-space: nowrap;
    }
    .topbar .sep {
      display:inline-block;
      width:1px;
      height:14px;
      background: rgba(255,255,255,.25);
      margin: 0 10px;
      vertical-align: middle;
    }

    /* ====== Main Navbar ====== */
    .main-nav {
      background: #fff;
      border-bottom: 1px solid #eee;
    }

    /* زر التبرع */
    .btn-donate {
      background: #e11d2e;
      color: #fff !important;
      border-radius: 0;
      font-weight: 700;
      padding: 14px 22px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 10px 18px rgba(225,29,46,.18);
      border: 0;
    }
    .btn-donate:hover { background: #c51523; }

    /* روابط الناف */
    .main-nav .navbar-nav .nav-link{
      color: #1f2937;
      font-weight: 600;
      padding: 18px 12px;
      font-size: 14px;
    }
    .main-nav .navbar-nav .nav-link:hover {
      color: #e11d2e;
    }
    .main-nav .navbar-nav .nav-item.active > .nav-link{
      color: #e11d2e;
      position: relative;
    }
    .main-nav .navbar-nav .nav-item.active > .nav-link:after{
      content:"";
      position:absolute;
      right: 12px;
      left: 12px;
      bottom: 8px;
      height: 2px;
      background:#e11d2e;
      border-radius: 99px;
    }

    /* اللوجو */
    .brand-block{
      display:flex;
      align-items:center;
      gap:12px;
      white-space: nowrap;
    }
    .brand-block img{
      width: 46px;
      height: 46px;
      object-fit: contain;
    }
    .brand-block .brand-title{
      font-size: 14px;
      font-weight: 800;
      color:#111827;
      line-height: 1.1;
    }
    .brand-block .brand-sub{
      font-size: 11px;
      color:#6b7280;
      line-height: 1.1;
      margin-top: 3px;
    }

    /* RTL تحسينات */
    .dropdown-menu { text-align: right; }

    /* موبايل: خلي زر التبرع سطر كامل */
    @media (max-width: 991.98px){
      .btn-donate { width: 100%; justify-content: center; margin-bottom: 8px; }
      .main-nav .navbar-nav .nav-link{ padding: 10px 12px; }
      .brand-block { justify-content: flex-end; width: 100%; }
    }

/* -------- Helpers (minimal, avoid duplicating Bootstrap utilities) -------- */
.u-text-muted{ color: var(--c-muted) !important; }
.u-shadow{ box-shadow: var(--shadow-soft); }
.u-radius{ border-radius: var(--radius-card); }
.u-radius-xl{ border-radius: var(--radius-xl); }
.u-pill{ border-radius: var(--radius-pill); }
.u-bg-soft{ background: var(--c-bg-soft); }
.u-border{ border: 1px solid var(--c-border); }

/* -------- Topbar + Navbar -------- */
.site-topbar{
  background: #0F0F0F;
  color: rgba(255,255,255,.9);
  font-size: 0.9rem;
}
.site-topbar a{ color: rgba(255,255,255,.9); text-decoration: none; }
.site-topbar a:hover{ color: #fff; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled{
  box-shadow: var(--shadow-nav);
  background: rgba(255,255,255,0.98);
}

.navbar-brand img{
  height: 54px;
  width: auto;
}
.nav-link{
  color: #111827;
  font-weight: 600;
  position: relative;
}
.nav-link:hover{ color: var(--c-primary) !important; }
.nav-link.is-active{
  color: var(--c-primary) !important;
}
.nav-link.is-active::after{
  content:"";
  position:absolute;
  left: .75rem;
  right: .75rem;
  bottom: .35rem;
  height: 3px;
  background: var(--c-primary);
  border-radius: 3px;
  opacity: .9;
}

.btn-primary-hccd{
  /* background: var(--c-primary); */
  border: 1px solid #767776;
  color:var(--c-primary);;
  font-weight: 700;
  border-radius: 6.8px;
  padding: .65rem 1.1rem;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 22px rgba(34, 33, 33, 0.22);
}
.btn-primary-hccd:hover{
  background: var(--c-primary-2);
  border-color: var(--c-primary-2);
    color: #fff;
  transform: translateY(-1px);
}

.btn-outline-hccd{
  border-radius: var(--radius-pill);
  font-weight: 700;
  padding: .65rem 1.1rem;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  background: transparent;
  transition: transform .2s ease, background .2s ease;
}
.btn-outline-hccd:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
}

/* -------- Hero -------- */
.hero{
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 52%, rgba(0,0,0,0.20) 100%);
}
.hero__content{
  position: relative;
  color: #fff;
  padding-block: 42px;
  animation: heroIn .65s ease-out both;
}
@keyframes heroIn{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}
.hero__title{
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
}
.hero__lead{
  color: rgba(255,255,255,.88);
  max-width: 58ch;
  line-height: 1.9;
}

.section{
  padding: 72px 0;
}
@media (max-width: 768px){
  .hero{ min-height: 520px; }
  .section{ padding: 48px 0; }
}

.section-title{
  color: #e11d2e;
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 22px;
}
.section-title::after{
  content:"";
  position:absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: 3px;
  background: var(--c-green);
}

/* -------- About -------- */
.about{
  position: relative;
}
.about__media{
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about__media img{ width:100%; height:auto; display:block; }
.about__play{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  pointer-events:none;
}
.about__play span{
  width: 72px; height: 72px;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
  display:grid; place-items:center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
}
.about__play i{ font-size: 24px; color: #fff; }

.about__badge-vertical{
  position:absolute;
  left: 0;
  top: 18px;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: 10px 14px;
  border-radius: 0 12px 12px 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .5px;
  font-weight: 700;
  font-size: .95rem;
}

.stats{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
@media (min-width: 992px){
  .stats{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.stat{
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 14px 16px;
}
.stat__num{
  font-weight: 900;
  color: var(--c-primary);
  font-size: 1.35rem;
  line-height: 1.1;
}
.stat__label{
  color: var(--c-muted);
  font-weight: 600;
  margin-top: 4px;
  font-size: .95rem;
}

/* -------- Cards -------- */
.cardx{
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.cardx:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.10);
}
.cardx__img{
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.badge-new{
  background: #0E7A2B;
  color: #fff;
  font-weight: 800;
  border-radius: var(--radius-pill);
  padding: .25rem .6rem;
  font-size: .78rem;
}

/* -------- Reports slider -------- */
.slider{
  position: relative;
}
.slider__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 2px 18px;
  scrollbar-width: thin;
}
.slider__track > *{ scroll-snap-align: start; }
.slider__btn{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background: #fff;
  display: grid; place-items:center;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease;
}
.slider__btn:hover{ transform: translateY(-1px); }
.slider__btn i{ font-size: 18px; }

/* -------- Donate CTA -------- */
.cta{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}
.cta__bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.02);
  transform: scale(1.02);
}
.cta__overlay{
  position:absolute; inset:0;
  background: radial-gradient(1200px 420px at 85% 40%, rgba(23,165,62,.55) 0%, rgba(0,0,0,.55) 58%, rgba(0,0,0,.70) 100%);
}
.cta__content{
  position: relative;
  padding: 56px 24px;
  color: #fff;
}
.cta__title{
  font-weight: 900;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-bottom: 10px;
}
.cta__lead{
  color: rgba(255,255,255,.88);
  max-width: 62ch;
  line-height: 1.9;
}

/* -------- Article cards (image overlay) -------- */
.overlay-card{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}
.overlay-card__bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position:center;
  transform: scale(1.02);
  transition: transform .35s ease;
}
.overlay-card:hover .overlay-card__bg{ transform: scale(1.06); }
.overlay-card__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.78) 100%);
}
.overlay-card__body{
  position: relative;
  color: #fff;
  padding: 22px 22px 18px;
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.overlay-card__title{
  font-weight: 900;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.overlay-card__text{
  color: rgba(255,255,255,.86);
  line-height: 1.85;
  margin-bottom: 12px;
}

/* -------- Breadcrumb + page heading -------- */
.page-hero{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  align-items: end;
}
.page-hero__bg{ position:absolute; inset:0; background-size: cover; background-position:center; }
.page-hero__overlay{ position:absolute; inset:0; background: linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.22) 100%); }
.page-hero__body{ position:relative; padding: 26px 26px 22px; color:#fff; }
.breadcrumbx{
  display:flex;
  gap: .5rem;
  align-items:center;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 10px;
}
.breadcrumbx a{ color: rgba(255,255,255,.9); text-decoration:none; }
.breadcrumbx a:hover{ color: #fff; }
.page-hero__title{ font-weight: 900; font-size: clamp(1.35rem, 2.4vw, 2rem); }
.page-hero__lead{ color: rgba(255,255,255,.86); line-height: 1.85; margin-top: 8px; max-width: 68ch; }

/* -------- Footer -------- */
.site-footer{
  background: #454545;
  color: rgba(255,255,255,.88);
  direction: rtl;
    border-top-left-radius: 59px;
    border-top-right-radius: 59px;

}

.site-footer a{
  color: rgba(255,255,255,.88);
  text-decoration:none;
}
.site-footer a:hover{ color:#fff; }

.footer-title{
  color:#fff;
  font-weight: 900;
  margin-bottom: 14px;
  font-size: 16px;
}

/* اللوجو والنبذة */
.footer-logo{
  max-width: 220px;
  height: auto;
  display:block;
  margin-bottom: 14px;
}
.footer-about{
  line-height: 1.9;
  color: rgba(255,255,255,.85);
  font-size: 13.5px;
}

/* القوائم */
.footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 12px;
  font-size: 13.5px;
}

/* روابط هامة: شرطة/خط أحمر صغير قبل النص */
.footer-links li a{
  position: relative;
  padding-right: 14px;
  display: inline-block;
}
.footer-links li a::before{
  content:"";
  position:absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: #e11d2e;
  border-radius: 999px;
}

/* بيانات التواصل: أيقونات حمراء */
.footer-ico{
  color:#e11d2e;
  font-size: 14px;
  line-height: 1;
}

/* خط فاصل وحقوق */
.footer-bottom{
  border-top: 2px solid rgba(255,255,255,.18); /* أوضح مثل الصورة */
  color: rgba(255,255,255,.80);
  padding: 16px 0;
  font-weight: 700;
  text-align: center;
  font-size: 13.5px;
}

/* مسافات مثل التصميم */
.site-footer{ padding-top: 26px; }


/* -------- Reveal (IntersectionObserver) -------- */
[data-reveal]{ opacity: 0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease; }
.is-inview{ opacity: 1 !important; transform: translateY(0) !important; }

.hero-slide{ position:relative; height:100%; overflow:hidden; }
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  /* object-position:center; */
  display:block;
}

.about95__logoIcon .hero-bg{

        object-fit: contain !important;


}

/* ===== FULL SCREEN HERO SLIDER ===== */
.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item,
.hero-slide {
  height: 100vh;          /* يملأ ارتفاع الشاشة */
  min-height: 600px;      /* حد أدنى للشاشات الصغيرة */
}

/* صورة الخلفية */
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;      /* تملأ الشاشة بدون تشويه */
  /* object-position: center; */
  z-index: 0;
}

/* المحتوى فوق الصورة */
.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 90px; /* إذا عندك هيدر ثابت */
}

/* طبقة التعتيم */
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.65),
    rgba(0,0,0,.35)
  );
  z-index: 1;
}
/* ===== FULL SCREEN ===== */
.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item,
.hero-slide{
  height: 100vh;
  min-height: 620px;
}

.hero-slide{
  position: relative;
  overflow: hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  /* object-fit: contain; */

  /* object-position:center; */
  display:block;
  z-index:0;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.30));
  z-index:1;
}

/* ===== CONTENT CENTER ===== */
.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 90px;  /* إذا عندك هيدر ثابت */
  padding-bottom: 40px;
}

.hero-center{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-box{
  max-width: 820px;
  margin: 0 auto;
  padding: 0 14px;
}

.hero-kicker{
  display:inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
}

.hero-title{
  color:#fff;
  font-weight: 900;
  line-height: 1.12;
  font-size: clamp(28px, 3.8vw, 56px);
  margin: 0 0 12px;
}

.hero-text{
  color: rgba(255,255,255,.90);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.9;
  margin: 0 auto 18px;
  max-width: 720px;
}

/* ===== BUTTON "عرض المزيد" ===== */
.hero-actions{
  display:flex;
  justify-content:center;
  margin-top: 14px;
}

.hero-btn{
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  border: 0;
}

.hero-btn-primary{
  background: #e11d2e;  /* أحمر */
  color:#fff;
  box-shadow: 0 14px 28px rgba(225,29,46,.22);
}

.hero-btn-primary:hover{
  background: #c51523;
  color:#fff;
}

.btn-arrow{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  display:grid;
  place-items:center;
  font-weight: 900;
}

/* ===== CONTROLS RIGHT (different colors) ===== */
.hero-controls{
  position:absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.hero-control{
  width: 52px;
  height: 52px;
  border-radius: 50px;
  border: 0;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.hero-control span{
  font-size: 30px;
  line-height: 1;
  color:#fff;
}

/* لونين مختلفين مثل طلبك */
.hero-prev{ background:#767776; }  /* أخضر */
.hero-next{ background:#e11d2e; }  /* أحمر */

.hero-prev:hover{ filter: brightness(.92); }
.hero-next:hover{ filter: brightness(.92); }

/* ===== Responsive ===== */
@media (max-width: 576px){
  .hero-controls{ right: 10px; }
  .hero-control{ width: 46px; height: 46px; border-radius: 12px; }
  .hero-control span{ font-size: 26px; }
  .hero-content{ padding-top: 70px; }
}
.hero-text-center{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
  color: #fff;
}

/* العنوان الرئيسي */
.hero-headline{
  font-size: clamp(28px, 3.5vw, 35px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 18px;
  color: #ffffff;
}

/* الكلمة الحمراء */
.hero-headline .highlight{
  color: #e11d2e;
  font-weight: 900;
}

/* الرقم */
.hero-headline .count{
  color: #ffffff;
  font-weight: 900;
}

/* الفقرة */
.hero-description{
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2;
  color: rgba(255,255,255,.85);
  max-width: 780px;
  margin: 0 auto 26px;
}

/* زر عرض المزيد */
.hero-readmore{
  display: inline-block;
  padding: 12px 26px;
  background: #e11d2e;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(225,29,46,.35);
  transition: all .25s ease;
}

.hero-readmore:hover{
  background: #c51523;
  color: #fff;
  transform: translateY(-2px);
}

/* موبايل */
@media (max-width: 576px){
  .hero-headline{
    font-size: 24px;
    line-height: 1.5;
  }

  .hero-description{
    font-size: 14px;
    line-height: 1.9;
    max-width: 85%;
  }


}

.hero-controls{
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
@media (max-width: 576px){
  .hero-control{
    width: 40px;
    height: 40px;
  }

  .arrow-icon{
    width: 8px;
    height: 8px;
  }
}
.arrow-icon{
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: inline-block;
}
.hero-prev .arrow-icon{
  transform: rotate(225deg); /* ← */
}

.hero-next .arrow-icon{
  transform: rotate(45deg);  /* → */
}
/* ===== TOP BAR ===== */
.topbar{
  background:#3a3a3a;
  color:#fff;
  font-size:13px;
}

.topbar .container{
  min-height:40px;
}

.topbar i{
  margin-left:6px;
  font-size:13px;
}

.topbar a{
  color:#fff;
  opacity:.85;
}

.topbar a:hover{ opacity:1; }

.social a{ margin-left:10px; }

/* ===== MAIN NAVBAR ===== */
.main-navbar{
  background:#fff;
  border-bottom:1px solid #eee;
  min-height:70px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

/* .brand img{
  width:48px;
  height:48px;
  object-fit:contain;
} */

.brand-text{
  line-height:1.2;
  font-size:13px;
}

.brand-text span{
  display:block;
  font-size:11px;
  color:#6b7280;
}

/* Menu */
.navbar-nav .nav-link{
  color:#111827;
  font-weight:600;
  font-size:16px;
  padding:22px 14px;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link:hover{
  color:#e11d2e;
}

/* Donate button */
.btn-donate{
  background:#e11d2e;
  color:#fff;
  border-radius:0;
  padding:16px 26px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:8px;
}

.btn-donate:hover{
  background:#c51523;
  color:#fff;
}

/* Mobile */
@media (max-width:991px){
  .btn-donate{
    width:100%;
    justify-content:center;
    margin-top:10px;
  }

  .navbar-nav .nav-link{
    padding:12px;
    text-align:center;
  }
}

/* Topbar */
.topbar{
  background:#3a3a3a;
  color:#fff;
  font-size:13px;
}
.topbar .container{
  min-height:40px;
  display:flex;
  align-items:center;
}
.topbar i{ margin-left:6px; }
.topbar a{ color:#fff; opacity:.85; text-decoration:none; }
.topbar a:hover{ opacity:1; }
.social a{ margin-left:10px; }

/* Navbar */
.main-navbar{
  background:#fff;
  border-bottom:1px solid #eee;
  min-height:70px;
}

/* Logo */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
/* .brand img{
  width:48px;
  height:48px;
  object-fit:contain;
} */
.brand-text{
  line-height:1.2;
  font-size:13px;
}
.brand-text span{
  display:block;
  font-size:11px;
  color:#6b7280;
}

/* Menu */
.navbar-nav .nav-link{
  color:#111827;
  font-weight:600;
  font-size:14px;
  padding:22px 14px;
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link:hover{
  color:#e11d2e;
}

/* Donate button LEFT */
.btn-donate{
  background:#e11d2e;
  color:#fff;
  border-radius:0;
  padding:16px 26px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}
.btn-donate:hover{
  background:#c51523;
  color:#fff;
}

/* Mobile */
@media (max-width:991px){
  .btn-donate{
    width:100%;
    justify-content:center;
    margin-top:10px;
  }
  .navbar-nav .nav-link{
    padding:12px;
    text-align:center;
  }
}


/* navbar full width بس المحتوى صندوق أبيض داخل container */
.main-navbar{
  background: transparent;   /* عشان ما يغطي السلايدر */
  padding: 12px 0;           /* فراغ فوق وتحت */
  position: relative;
  z-index: 50;
}

/* الصندوق الأبيض اللي مثل الصورة */
.navbar-shell{
  background: #fff;
  height: 74px;
  padding: 0 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  border-radius: 0;          /* الصورة حواف مستقيمة */
  overflow: hidden;          /* مهم: يمنع ظهور السلايدر من يمين/يسار داخل الشريط */
}

/* Logo */
.brand img{
  width: 240px;
  height: 240px;

  object-fit: contain;
}
.brand-text{ line-height: 1.2; font-size: 13px; }
.brand-text span{ display:block; font-size: 11px; color:#6b7280; margin-top:2px; }

/* Links */
.navbar-nav .nav-link{
  color:#111827;
  font-weight: 600;
  font-size: 14px;
  padding: 0 14px;
  height: 74px;
  display:flex;
  align-items:center;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link{
  color:#e11d2e;
}

/* Donate LEFT */
.btn-donate{
  background:#e11d2e;
  color:#fff;
  font-weight: 800;
  padding: 0 22px;
  height: 74px;             /* نفس ارتفاع الشريط */
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  margin-right: 12px;       /* مسافة عن المنيو */
}
.btn-donate:hover{ background:#c51523; color:#fff; }

/* Toggler */
.navbar-toggler{ border: 1px solid #e5e7eb; }
.navbar-toggler-icon{ filter: contrast(1.2); }

/* Mobile */
@media (max-width: 991.98px){
  .navbar-shell{
    height: auto;
    padding: 10px 12px;
  }
  .navbar-nav .nav-link{
    height: auto;
    padding: 10px 12px;
    justify-content:center;
  }
}



.main-navbar{
  position: absolute;   /* مهم */
  top: 40px;            /* ارتفاع الـ topbar */
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.main-navbar
 {

    border-bottom: unset !important;
    padding: 0px !important;

}
.navbar-shell{
      padding: 0px !important;


}

/* الوضع الافتراضي (فوق السلايدر) */
.main-navbar{
  position: absolute;
  top: 40px;              /* ارتفاع الـ topbar */
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all .3s ease;
}

/* الصندوق الداخلي */
.navbar-shell{
  background: #fff;
  height: 74px;
  padding: 0 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transition: all .3s ease;
}

/* ===== لما ينزل سكرول ===== */
.main-navbar.is-sticky{
  position: fixed;
  top: 0;
  background: #fff;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* لما يصير Sticky: خلي المنيو بعرض الشاشة */
.main-navbar.is-sticky .container{
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

/* خفف ارتفاع المنيو شوي (احترافي) */
.main-navbar.is-sticky .navbar-shell{
  height: 64px;
  box-shadow: none;
}

body{
  padding-top: 0;
}

.main-navbar.is-sticky + .hero-wrap{
  margin-top: 74px; /* نفس ارتفاع المنيو */
}
/* ===== TOPBAR LAYOUT ===== */
.topbar{
  background:#000;
  color:#fff;
  font-size:13px;
}

.topbar-inner{
  display:flex;
  justify-content:space-between; /* يمين / يسار */
  align-items:center;
  min-height:40px;
}

/* RIGHT */
.topbar-right{
  display:flex;
  align-items:center;
  gap:20px;
}

/* LEFT */
.topbar-left{
  display:flex;
  align-items:center;
  gap:18px;
}

/* Icons */
.topbar i{
  margin-left:6px;
  font-size:13px;
}

.topbar a{
  color:#fff;
  opacity:.85;
  text-decoration:none;
}
.topbar a:hover{ opacity:1; }

/* Social spacing */
.social a{
  margin-left:10px;
}

/* Mobile */
@media (max-width:576px){
  .topbar-inner{
    flex-direction:column;
    gap:6px;
  }
}

/* خليه LTR فقط لتوزيع اليمين/اليسار */
.topbar-inner{
  direction: ltr;                 /* مهم */
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:40px;
}

/* رجّع اتجاه النص داخل كل بلوك RTL */
.topbar-right,
.topbar-left{
  direction: rtl;
}
.topbar-left{ display:flex; gap:18px; align-items:center; }
.social{ display:flex; gap:12px; }

.topbar{
  background:#000;
  color:#fff;
  font-size:13px;
}

.topbar a{ color:#fff; text-decoration:none; opacity:.9; }
.topbar a:hover{ opacity:1; }

.topbar-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;  /* عمودين */
  align-items:center;
  min-height:40px;
}

/* يمين الشاشة */
.topbar-right{
  justify-self:end;               /* يروح أقصى اليمين */
  display:flex;
  gap:18px;
  direction:ltr;                  /* يخلي +970 يطلع صح */
  align-items:center;
}

/* يسار الشاشة */
.topbar-left{
  justify-self:start;             /* يروح أقصى اليسار */
  display:flex;
  gap:16px;
  align-items:center;
}

/* ترتيب الأيقونات */
.social{ display:flex; gap:10px; align-items:center; }

/* أيقونات */
.topbar i{ margin-left:6px; }

/* موبايل */
@media (max-width:576px){
  .topbar-grid{
    grid-template-columns: 1fr;   /* سطرين */
    gap:8px;
    padding:8px 0;
  }
  .topbar-right, .topbar-left{
    justify-self:center;
  }
}


/* ===== Reports section background (grey starts mid cards) ===== */
#reports.section{
  position: relative;
  overflow: hidden;
}

/* طبقة الخلفية */
#reports.section::before{
  content:"";
  position:absolute;
  inset:0;
  /* ارفع/نزّل بداية الرمادي بتغيير 40% */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 55%,
    #f2f3f5 40%,
    #f2f3f5 100%
  );
  z-index:0;
}

#reports.section > .container{
  position: relative;
  z-index: 1;
}

/* Title look like screenshot */
#reports .section-title{
  color:#e11d2e;
  font-weight: 900;
}

/* ===== Slider layout ===== */
.slider{
  position: relative;
}

.slider__track{
  display: flex;
  gap: 18px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px 16px;
  scrollbar-width: none;
}
.slider__track::-webkit-scrollbar{ display:none; }

/* RTL: خلي السحب طبيعي */
html[dir="rtl"] .slider__track{
  direction: rtl;
}

/* ===== Cards ===== */
.cardx{
  scroll-snap-align: start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  overflow: hidden;
  flex: 0 0 auto;

  /* 4 بطاقات على الديسكتوب */
  width: calc((100% - (18px * 3)) / 4);

  display: flex;
  flex-direction: column;
  min-height: 430px;
}

/* صورة ثابتة نفس الارتفاع */
.cardx__img{
  width:100%;
  height: 170px;
  object-fit: cover;
  display:block;
}

/* جسم الكرت */
.cardx > div{
  flex: 1;
  display:flex;
  flex-direction: column;
}

/* النص */
.cardx p{
  margin-bottom: 16px !important;
}

/* زر الكرت يثبت تحت */
.cardx a.btn{
  margin-top: auto;
  align-self: flex-start;

  /* نفس زر الصورة: دائري/خفيف */
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
}

/* Badge new (green pill like screenshot) */
.badge-new{
  background:#16a34a;
  color:#fff;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ===== Top arrows buttons ===== */
.slider__btn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background:#fff;
  display:grid;
  place-items:center;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  transition: transform .15s ease, filter .15s ease;
}
.slider__btn:hover{
  transform: translateY(-1px);
  filter: brightness(.98);
}

/* لو بدك واحد أحمر واحد رمادي مثل السلايدر اللي عملناه قبل */
.slider__btn[data-slider="next"]{
  background:#e11d2e;
  border-color:#e11d2e;
  color:#fff;
}
.slider__btn[data-slider="prev"]{
  background:#767776;
  border-color:#767776;
  color:#fff;
}

/* ===== Responsive widths ===== */
@media (max-width: 1199.98px){
  .cardx{ width: calc((100% - (18px * 2)) / 3); }
}
@media (max-width: 991.98px){
  .cardx{ width: calc((100% - 18px) / 2); }
}
@media (max-width: 575.98px){
  .cardx{ width: 85%; }
}

.cardx__media{ overflow:hidden; }

/* خلي الكرت مرجع للـ badge */
.cardx{
  position: relative;
  box-shadow: unset !important;
}

/* وسم "جديد" فوق الصورة */
.cardx .badge-new{
  position: absolute;
  top: 16px;
  right: 12px;
  z-index: 2;

  background: #16a34a;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;

  /* لمسة جمالية */
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
}

.cardx a.btn{
  font-size: 14px;
}

/* ===== Articles Slider (like design) ===== */
#articles .articles-slider{
  position: relative;
}

#articles .articles-track{
  display:flex;
  gap: 18px;
  overflow:auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 2px 0;
}
#articles .articles-track::-webkit-scrollbar{ display:none; }

/* RTL feel */
html[dir="rtl"] #articles .articles-track{ direction: rtl; }

/* Card sizing */
#articles .article-item{
  flex: 0 0 auto;
  height: 320px;
  border-radius: 16px;
  overflow:hidden;
  scroll-snap-align: start;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

/* small cards */
#articles .article-item.is-sm{
  width: 325px;            /* مثل الصورة تقريباً */
}

/* large card */
#articles .article-item.is-lg{
  width: min(520px, 70vw); /* كبيرة مثل الصورة */
}

/* Background image */
#articles .overlay-card__bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position:center;
  transform: scale(1.02);
}

/* Overlay gradient like design (dark bottom) */
#articles .overlay-card{
  position: relative;
  background:#000;
  box-shadow: unset !important;
}
#articles .overlay-card__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.10) 60%, rgba(0,0,0,.05) 100%);
}

/* Text on image bottom */
#articles .overlay-card__body{
  position:absolute;
  inset-inline: 0;
  bottom:0;
  padding: 16px 16px 14px;
  color:#fff;
  z-index:3;
}

#articles .overlay-card__title{
  font-weight: 900;
  margin: 0 0 6px;
  font-size: 16px;
}

#articles .overlay-card__text{
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  opacity: .92;

  /* خلي الوصف سطرين/3 مثل التصميم */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Progress like design ===== */
#articles .articles-progress{
  height: 4px;
  background: rgba(225,31,38,.20);
  border-radius: 999px;
  overflow:hidden;
}
#articles .articles-progress__bar{
  height:100%;
  width:100%;
  background: var(--c-primary);
  transform-origin: right;
  transform: scaleX(.0);
  transition: transform .25s ease;
}

#articles .articles-count{
  font-weight: 900;
  display:flex;
  align-items:center;
  gap: 8px;
}
#articles .articles-count .total{
  color: rgba(17,24,39,.55);
  font-weight: 800;
}
#articles .articles-count .sep{
  color: rgba(17,24,39,.35);
  font-weight: 800;
}
#articles .articles-count .current{
  color: var(--c-primary);
  font-weight: 900;
}

/* Responsive */
@media (max-width: 576px){
  #articles .article-item.is-sm{ width: 82vw; }
  #articles .article-item.is-lg{ width: 82vw; }
  #articles .article-item{ height: 300px; }
}

.donate-cta{
  direction: rtl;
  padding: 22px 0;
  background: #fff;
}

.donate-cta__box{
  position: relative;
  /* border-radius: 10px; */
  overflow: hidden;
  min-height: 210px;
  display: flex;
  align-items: center;

  /* خلفية مثل الصورة */
  /* background-image:
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.60)),
    url("assets/img/donate-bg.jpg"); */
  background-size: cover;
  background-position: center;
}
.donate-cta__box{
  overflow: visible; /* بدل hidden */
}
/* محتوى */
.donate-cta__content{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 30px;
}

/* زر تبرع الآن */
.donate-cta__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e11d2e;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(225,29,46,.28);
  white-space: nowrap;
}

.donate-cta__btn:hover{
  color:#fff;
  background:#c51523;
}

.donate-cta__btn-ico{
  display:inline-grid;
  place-items:center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,.18);
  font-weight: 900;
}

/* النص الكبير */
.donate-cta__title{
  margin: 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.55;
  font-size: clamp(18px, 2.2vw, 30px);
  text-shadow: 0 10px 24px rgba(0,0,0,.35);
}

/* الأيقونات الدائرية */
.donate-cta__icon{
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  z-index: 3;
}

.donate-cta__icon img{
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* أعلى اليسار (الربع الثالث يسار/أعلى) */
.donate-cta__icon--tl{
  left: 500px;
  top: -16px;
  background: #16a34a;
}

/* أسفل اليمين (الربع الأول من الأسفل يمين) */
.donate-cta__icon--br{
  right: 170px;
  bottom: -16px;
  background: #ef4444;
}

/* موبايل */
@media (max-width: 768px){
  .donate-cta__content{
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px 18px;
  }
  .donate-cta__icon--tl{ left: 40px; top: -22px; }
  .donate-cta__icon--br{ right: 40px; bottom: -20px; }
}
.donate-cta__icon i{
  font-size: 20px;
  color: #fff;
  line-height: 1;
}
.donate-cta__icon{
  transition: transform .25s ease, box-shadow .25s ease;
}
.donate-cta__icon:hover{
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.activities{
  position: relative;
  direction: rtl;
  overflow: hidden;
  background:#fff;
}

/* الأيقونة الحمراء بالخلف يمين */
.activities::after{
    content: "";
    position: absolute;
    right: -107px;
    top: 253px;
    width: 500px;
    height: 500px;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 0;
  background-image: url("../img/zzzzz.png");

}

.activities .container{
  position: relative;
  z-index: 1;
}

.activities__underline{
  display:inline-block;
  width: 46px;
  height: 4px;
  background: #16a34a;
  border-radius: 999px;
}

/* Card */
.act-card{
  position: relative;
  display:block;
  text-decoration:none;
  border-radius: 16px;
  overflow:hidden;
  background:#111;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  height: 300px; /* نفس الصورة تقريباً */
}

/* Images */
.act-card__img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: grayscale(1) contrast(1.05);
  transition: transform .35s ease, filter .35s ease;
}

/* Gradient overlay */
.act-card__shade{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.70) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.12) 100%);
}

/* Caption box */
.act-card__cap{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(60,60,60,.75);
  color:#fff;
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1.7;
  padding: 10px 12px;
  border-radius: 8px;
  backdrop-filter: blur(2px);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hover */
.act-card:hover .act-card__img{
  transform: scale(1.04);
  filter: grayscale(.85) contrast(1.08);
}

/* Mobile */
@media (max-width: 991.98px){
  .act-card{ height: 240px; }
}

.topbar .topbar-grid{
  direction: ltr !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 40px;
  text-align: initial !important;   /* يلغي text-align:right العام */
}

.topbar .topbar-right{
  grid-column: 2 !important;        /* يمين */
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  float: none !important;           /* يلغي أي float */
  direction: ltr !important;
}

.topbar .topbar-left{
  grid-column: 1 !important;        /* يسار */
  justify-self: start !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  float: none !important;
  direction: ltr !important;
}

.topbar .social{
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
}


    .topbar .container{
  display:block !important;
}
.topbar{
  height: 40px;           /* نفس الصورة */
  line-height: 40px;      /* يوسّط النص */
}

.topbar a, .topbar span, .topbar i{
  line-height: 40px;
  /* vertical-align: middle; */
}
/* خلي التوزيع Left/Right طبيعي */
.topbar-inner{
  direction: ltr;
  display:flex;
  justify-content:space-between;
  align-items:center;
  height: 40px;
}

/* خلي كل مجموعة LTR عشان ترتيب الرموز والنص يكون مظبوط */
.topbar-right,
.topbar-left{
  direction: ltr;
  display:flex;
  align-items:center;
  gap: 18px;
}

/* ترتيب السوشال */
.social{
  display:flex;
  gap: 12px;
  align-items:center;
}

.about95{ direction: rtl; background:#fff; }
  .about95__container{ max-width: 1120px; margin:0 auto; padding: 28px 18px; }

  .about95__grid{
    display:grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 34px;
    align-items:center;
  }

  /* LEFT */
  .about95__left{ position:relative; min-height: 505px; }
  .about95__ribbon{
    position:absolute;
    left: 0;
    top: 110px;
    width: 60px;
    height: 375px;
    border-radius: 14px;
    background:#2f2f2f;
    /* box-shadow: var(--shadow2); */
        box-shadow: 0px -1px 2px 2px #e11d2e;
    display:flex; align-items:center; justify-content:center;
    z-index: 5;
  }
  .about95__ribbon span{
    color:#fff;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 24px;
    letter-spacing:.4px;
    user-select:none;
    white-space:nowrap;
  }

  .about95__dots {
      position: absolute;
      left: -29px;
      top: 194px;
      width: 60px;
      height: 115px;
      background: radial-gradient(#ff0014 1.8px, #00000000 3px) 0 0 / 13px 13px;
      opacity: 1;
      /* border-radius: 12px; */
      z-index: 1;
  }

  .about95__collage{
    position:absolute;
    inset: 36px 12px 36px 78px; /* فراغ للشريط */
    border-radius: 18px;
  }

  .about95__outline{
    position: absolute;
    left: 42px;
    bottom: -100px;
    width: 78%;
    height: 72%;
    border: 2px solid var(--c-red);
    border-radius: 18px;
    z-index: 0;
  }

  .about95__main{
    margin:0;
    position:absolute;
    inset: 0;
    border-radius: 18px;
    overflow:hidden;
    background:#fff;
    box-shadow: var(--shadow);
    z-index: 2;
  }
  .about95__main img{ width:100%; height:100%; object-fit:cover; display:block; }

  .about95__play{
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: none;
    cursor:pointer;
    background: rgba(225,29,46,.95);
    box-shadow: 0 16px 30px rgba(225,29,46,.25);
  }
  .about95__play::before{
    content:"";
    position:absolute;
    top:50%; left:50%;
    transform: translate(-40%,-50%);
    width:0; height:0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid #fff;
  }

  .about95__logoCard{
    position:absolute;
    top: -55px;
    left: -85px; /* بالصورة هو فوق يسار الصور */
    display:flex;
    gap:10px;
    align-items:center;
    padding: 10px 12px;
    border-radius: 12px;
    background:#fff;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow2);
    z-index: 4;
  }
  .about95__logoIcon{
    width: 130px; height:125px;
    /* border-radius: 10px; */
    /* border:1px solid var(--c-border); */
    display:grid; place-items:center;
    font-weight:800;
    /* background:#f3f4f6; */
  }
  .about95__logoText .t1{ font-weight:700; font-size:12px; color:var(--c-text); line-height:1.1; }
  .about95__logoText .t2{ font-size:11px; color:var(--c-muted); line-height:1.1; margin-top:2px; }

  .about95__small{
    margin: 0;
    position: absolute;
    right: -10px;
    bottom: -65px;
    width: 180px;
    height: 175px;
    border-radius: 14px;
    overflow:hidden;
    border: 6px solid #fff;
    box-shadow: var(--shadow2);
    z-index: 4;
    background:#fff;
  }
  .about95__small img{ width:100%; height:100%; object-fit:cover; display:block; }

  /* RIGHT */
  .about95__head{ position:relative; display:inline-block; margin-bottom: 10px; }
  .about95__title{
    margin:0;
    font-size: 30px;
    color: var(--c-red);
  }
  .about95__titleBar{
    position:absolute;
    right: 0;
    bottom: -8px;
    width: 54px;
    height: 4px;
    border-radius: 99px;
    background: var(--c-green);
  }

  .about95__text{
    margin: 10px 0 18px;
    color: var(--c-muted);
    line-height: 1.9;
    font-size: 14.5px;
  }

  .about95__stats{
    display:grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 58px;
    row-gap: 22px;
    margin-top: 8px;
    width: 100%;
  }
  .about95__stat{ text-align:center; }
  .about95__num{
    font-size: 22px;
    font-weight: 900;
    color: var(--c-green);
    line-height: 1.1;
  }
  .about95__label{
    margin-top: 6px;
    font-size: 12.5px;
    color: var(--c-muted);
  }

  .about95__cta{
    margin-top: 14px;
    display:flex;
    justify-content:flex-start; /* زر يمين مثل الصورة */
  padding-top: 25px;
  }
  .about95__btn{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    background: var(--c-red);
    color:#fff;
    text-decoration:none;
    font-weight: 800;
    padding: 12px 18px;
    border-radius: 6.8px;
    box-shadow: 0 14px 28px rgba(225,29,46,.22);
  }
  .about95__btn i{
    width: 26px; height:26px;
    border-radius: 999px;
    /* background: rgba(255,255,255,.18); */
    display:grid; place-items:center;
    font-style: normal;
  }

  /* Responsive */
  @media (max-width: 980px){
    .about95__grid{ grid-template-columns: 1fr; gap: 18px; }
    .about95__left{ min-height: 380px; }
    .about95__collage{ inset: 30px 12px 30px 74px; }
    .about95__small{ width: 170px; height: 125px; }
  }
  @media (max-width: 520px){
    .about95__title{ font-size: 26px; }
    .about95__stats{ column-gap: 18px; row-gap: 16px; }
    .about95__left{ min-height: 340px; }
    .about95__ribbon{ height: 240px; }
  }


  /* Split Color Wipe Hover */
.overlay-card.article-item{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* طبقة المسحة (Wipe) */
.overlay-card.article-item::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 2;
  pointer-events:none;

  /* خط أحمر يمر بشكل مائل */
  background:
    linear-gradient(120deg,
      transparent 0%,
      transparent 42%,
      rgba(225,29,46,.18) 46%,
      rgba(225,29,46,.35) 50%,
      rgba(225,29,46,.18) 54%,
      transparent 58%,
      transparent 100%
    );

  /* نبدأ خارج الكرت */
  transform: translateX(-120%);
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  mix-blend-mode: screen;
}

/* خط سفلي أحمر (يظهر مع الهوفر) */
.overlay-card.article-item::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(to left, rgba(225,29,46,0), rgba(225,29,46,1));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  z-index: 4;
  pointer-events:none;
}

/* خلي المحتوى فوق المسحة */
.overlay-card__bg,
.overlay-card__overlay,
.overlay-card__body{
  position: relative;
  z-index: 3;
}

/* تحسين بسيط للصورة */
.overlay-card__bg{
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .6s cubic-bezier(.2,.8,.2,1);
}

/* تغييرات النص */
.overlay-card__title,
.overlay-card__text{
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .45s ease, color .45s ease;
}

/* Hover */
.overlay-card.article-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.overlay-card.article-item:hover::before{
  transform: translateX(120%); /* المسحة تمر عبر الكرت */
}

.overlay-card.article-item:hover::after{
  transform: scaleX(1); /* الخط السفلي يظهر */
}

.overlay-card.article-item:hover .overlay-card__bg{
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.05);
}

/* لمسة حركة للنص */
.overlay-card.article-item:hover .overlay-card__title{
  transform: translateY(-2px);
  color: #fff;
}
.overlay-card.article-item:hover .overlay-card__text{
  opacity: .95;
  transform: translateY(-1px);
}

/* للي بيقلل الحركة */
@media (prefers-reduced-motion: reduce){
  .overlay-card.article-item,
  .overlay-card__bg,
  .overlay-card.article-item::before,
  .overlay-card.article-item::after{
    transition: none !important;
  }
}

/* ===== Report Card: Badge Morph + Focus ===== */
.cardx{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  transition: transform .35s ease, box-shadow .35s ease;
}

.cardx__media{
  position: relative;
  overflow: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.cardx__img{
  width: 100%;
  height: 190px;            /* عدّلها حسب تصميمك */
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .6s cubic-bezier(.2,.8,.2,1);
}

/* شارة جديد (فوق الصورة) */
.badge-new{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;

  background: #15803d;      /* أخضر مثل اللي عندك */
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease, padding .35s ease;
}

/* النقطة الصغيرة داخل الشارة (تعطي premium feel) */
.badge-new::before{
  content:"";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 0 6px rgba(21,128,61,.18);
  transition: box-shadow .35s ease, transform .35s ease;
}

/* .badge-new::before{
  content:"";
  width: 12px;
  height: 12px;
  background: #fff;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.3 6.9.6-5.2 4.5 1.6 6.8L12 16.8 5.8 20.2l1.6-6.8L2.2 8.9l6.9-.6L12 2z'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.3 6.9.6-5.2 4.5 1.6 6.8L12 16.8 5.8 20.2l1.6-6.8L2.2 8.9l6.9-.6L12 2z'/%3E%3C/svg%3E") no-repeat center / contain;

  box-shadow: 0 0 0 6px rgba(21,128,61,.18);
  transition: box-shadow .35s ease, transform .35s ease;
} */


/* عنوان الكرت */
.cardx h3{
  transition: transform .35s ease, letter-spacing .35s ease, color .35s ease;
}

/* الزر */
.cardx .btn-primary-hccd{
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

/* Hover: رفع الكرت + تركيز */
.cardx:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}

/* Hover: الصورة */
.cardx:hover .cardx__img{
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.05);
}

/* Hover: الشارة تتحول (Morph) */
.cardx:hover .badge-new{
  background: #e11d2e; /* تتحول لأحمر الهوية */
  padding: 8px 14px;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 14px 30px rgba(225,29,46,.30);
}

/* Hover: النقطة داخل الشارة */
.cardx:hover .badge-new::before{
  transform: scale(1.05);
  box-shadow: 0 0 0 7px rgba(225,29,46,.18);
}

/* Hover: العنوان يبرز */
.cardx:hover h3{
  transform: translateY(-1px);
  letter-spacing: .2px;
  color: #111827;
}

/* Hover: الزر يطلع شوي */
.cardx:hover .btn-primary-hccd{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(225,29,46,.22);
}

/* احترام تقليل الحركة */
@media (prefers-reduced-motion: reduce){
  .cardx, .cardx__img, .badge-new, .badge-new::before, .cardx h3, .cardx .btn-primary-hccd{
    transition: none !important;
  }
}

/* الأساس */
.act-card{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  transition: box-shadow .35s ease, transform .35s ease;
}

/* الصورة بدون زوم */
.act-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .6s ease;
}

/* التعتيم الأساسي */
.act-card__shade{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.15) 100%
  );
  z-index:1;
  transition: opacity .45s ease;
}

/* الإضاءة الاتجاهية (Spotlight) */
.act-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  z-index:2;
  pointer-events:none;

  background: radial-gradient(
    circle at 85% 15%,            /* أعلى اليمين */
    rgba(255,255,255,.22),
    rgba(255,255,255,.12) 25%,
    rgba(255,255,255,.06) 40%,
    transparent 60%
  );

  opacity: 0;
  transform: translate3d(12%, -12%, 0);
  transition:
    opacity .45s ease,
    transform .7s cubic-bezier(.2,.8,.2,1);
}

/* النص */
.act-card__cap{
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index:3;

  background: rgba(60,60,60,.65);
  color:#fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.7;
  padding: 10px 12px;
  border-radius: 8px;

  transition: transform .4s ease, background-color .4s ease;
}

/* Hover */
.act-card:hover{
  box-shadow: 0 20px 45px rgba(0,0,0,.25);
  transform: translateY(-4px);
}

.act-card:hover::before{
  opacity: 1;
  transform: translate3d(-4%, 6%, 0); /* تتحرك للمنتصف */
}

.act-card:hover .act-card__shade{
  opacity: .85;
}

.act-card:hover .act-card__img{
  filter: saturate(1.08) contrast(1.05);
}

.act-card:hover .act-card__cap{
  transform: translateY(-2px);
  background: rgba(45,45,45,.78);
}

/* احترام تقليل الحركة */
@media (prefers-reduced-motion: reduce){
  .act-card,
  .act-card::before,
  .act-card__img,
  .act-card__cap,
  .act-card__shade{
    transition: none !important;
  }
}


/* إيقاف أي zoom على كروت الأنشطة */
.act-card:hover .act-card__img,
.act-card:hover img,
.act-card__img{
  transform: none !important;
}


/* ===== Footer Premium Upgrade ===== */


.site-footer {
  background: linear-gradient(135deg, #4a4a4a 0%, #3f3f3f 55%, #3a3a3a 100%);
  padding: 34px 28px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

/* إضاءة ناعمة جهة اليمين */
.site-footer .container::before{
  content:"";
  position:absolute;
  right:-140px;
  top:-120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(225,29,46,.18), transparent 60%);
  opacity: .9;
  pointer-events:none;
}

/* نقاط بسيطة للتكستشر */
.site-footer .container::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .25;
  pointer-events:none;
}

/* المحتوى فوق الإضاءة */
.site-footer .row,
.footer-bottom{
  position: relative;
  z-index: 2;
}

/* عناوين */
.footer-title{
  text-align:center;
  font-weight: 900;
  color:#fff;
  margin-bottom: 16px;
}

/* نصوص وروابط */
.site-footer, .site-footer a{ color: rgba(255,255,255,.88); }
.site-footer a:hover{ color:#fff; }

/* روابط هامة: حركة underline */
.footer-links li a{
  position: relative;
  display: inline-block;
  padding: 0px 18px 0px 0;
}
.footer-links li a::before{
  content:"";
  position:absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #e11d2e;
  transform: translateY(-50%);
  border-radius: 999px;
  opacity: .9;
}
.footer-links li a::after{
  content:"";
  position:absolute;
  right: 16px;
  left: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(to left, rgba(225,29,46,0), rgba(225,29,46,.95));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
  border-radius: 999px;
  opacity: .9;
}
.footer-links li a:hover::after{
  transform: scaleX(1);
}

/* بيانات التواصل: أيقونات */
.footer-ico{
  color:#e11d2e !important;
}

/* خط فاصل قبل الحقوق */
.footer-bottom{
  margin-top: 22px;
  border-top: 2px solid rgba(255,255,255,.20);
  padding: 16px 0 18px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

/* موبايل */
@media (max-width: 991.98px){
  .site-footer .container{
    padding: 26px 18px 0;
    border-radius: 22px;
  }
}

/* ===== Donate Button Beast Mode ===== */
.btn-donate{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #e11d2e;
  color: #fff;
  font-weight: 900;
  padding: 14px 22px;
  /* border-radius: 14px; */
  /* border-top-left-radius: 14px; */
  /* border-top-right-radius: 14px; */
  /* border-bottom-right-radius: 14px; */
  /* border-bottom-left-radius: 14px; */
  text-decoration: none;

  overflow: hidden;
  box-shadow: 0 14px 30px rgba(225,29,46,.45);

  animation: donatePulse 2.6s infinite;
}

/* الأيقونة */
.btn-donate i{
  font-size: 18px;
  animation: heartBeat 1.8s infinite;
}

/* لمعة تمر */
.btn-donate::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,.45),
    transparent 60%
  );
  transform: translateX(-120%);
  animation: shineSweep 3.5s infinite;
}

/* Hover: يصير أشرس */
.btn-donate:hover{
  /* transform: translateY(-2px) scale(1.03); */
  box-shadow: 0 20px 45px rgba(225,29,46,.6);
}

/* ===== Animations ===== */
@keyframes donatePulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(225,29,46,.45); }
  50%{ box-shadow: 0 0 0 16px rgba(225,29,46,0); }
}

@keyframes heartBeat{
  0%,100%{ transform: scale(1); }
  20%{ transform: scale(1.25); }
  40%{ transform: scale(1); }
  60%{ transform: scale(1.25); }
}

@keyframes shineSweep{
  0%{ transform: translateX(-120%); }
  55%{ transform: translateX(-120%); }
  100%{ transform: translateX(120%); }
}




  /* ===== Blur Glow Hover ===== */
.navbar .nav-link{
  position: relative;
  padding: 10px 14px;
  font-weight: 800;
  color: #111;
  z-index: 1;
  transition: color .25s ease, transform .25s ease;
}

/* الهالة الضوئية */
.navbar .nav-link::after{
  content:"";
  position:absolute;
  inset: -6px -8px;
  background: radial-gradient(
    ellipse at center,
    rgba(225,29,46,.35),
    rgba(225,29,46,.15) 40%,
    transparent 65%
  );
  filter: blur(15px);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
  pointer-events: none;
}

/* Hover */
.navbar .nav-link:hover{
  color: #000;
  transform: translateY(-1px);
}

.navbar .nav-link:hover::after{
  opacity: 1;
}

/* Active (الصفحة الحالية) */
.navbar .nav-link.active{
  color: #000;
}
.navbar .nav-link.active::after{
  opacity: .9;
}


.about-hero{
  position: relative;
  background: #fff;
}

.about-title h1{
  font-weight: 900;
  color: #111827;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: .2px;
}
.breadcrumb-like{
  font-size: 13px;
  font-weight: 700;
}

.about-wrap{
  position: relative;
  padding-top: 10px;
}

/* الكارد الأساسي */
.about-card{
  position: relative;
}

/* الصورة الكبيرة */
.about-image{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
}
.about-image img{
  width: 100%;
  height: clamp(260px, 44vw, 360px);
  object-fit: cover;
  display: block;
}

/* الكارد الأبيض فوق الصورة من الأسفل */
.about-overlay{
  position: relative;
  margin-top: -56px;
  background: rgba(255,255,255,.96);
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  width: min(920px, 92%);

   margin-left: auto;
  margin-right: auto;

  backdrop-filter: blur(4px);
}

.about-overlay__title{
  font-weight: 900;
  color: #111827;
  font-size: 18px;
}
.about-overlay__text{
  color: #374151;
  font-weight: 700;
  line-height: 1.9;
  font-size: 13.5px;
}

/* الأيقونة الخضراء أعلى اليسار */





/* أيقونات رمادية بالخلف */
.about-bg-icon{
  position: absolute;
  z-index: 0;
  color: rgba(17,24,39,.10);
  pointer-events: none;
}
.about-bg-icon i{
  font-size: 180px;
}

.about-bg-icon--right{
  right: -137px;
  top: 120px;        /* بالوسط يمين */
}
.about-bg-icon--right img{
      width: 267px;

}

.about-bg-icon--left{
  left: -137px;
  bottom: -410px;     /* أسفل يسار */
}

.about-bg-icon--left img{
      width: 267px;

}

/* رفع المحتوى فوق الخلفية */
.about-card, .about-title, .about-fg-icon{
  z-index: 2;
}

/* Responsive */
@media (max-width: 991.98px){
  .about-bg-icon i{ font-size: 140px; }
  .about-bg-icon--right{ top: 90px; right: -26px; }
  .about-overlay{ margin-top: -46px; width: 94%; }
}

.static-hero{
  position: relative;
  background: #fff;
}

.icon-fixed--green{
  position: absolute;
     top: 130px;
    left: 135px;
  z-index: 2;

  color: #16a34a;
  font-size: 26px;
  pointer-events: none; /* ديكور فقط */
}

.icon-fixed--green img{
      width: 50px;

}


.icon-fixed--right{
  position: absolute !important;
  top: 70%;
  right: -40px;       /* تطلع نصها برا */
  transform: translateY(-50%);
  z-index: 2;

  color: rgba(0,0,0,.08);
  font-size: 200px;
  pointer-events: none;
}

.icon-fixed--right img{
    width: 267px;
}

.icon-fixed--bottom{
  position: absolute;
  bottom: -70%;      /* فوق الفوتر دائمًا */
  left: -40px;

  z-index: 1;
  color: rgba(0,0,0,.08);
  font-size: 180px;
  pointer-events: none;
}

.icon-fixed--bottom img{
    width: 267px;
}

.content-static .overlay-card__bg{
    position: absolute !important;

}

.article-meta{
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 12px;
  font-weight: 800;
  color: #6b7280; /* رمادي */
  margin-bottom: 8px;
}

/* العناصر */
.meta-item{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* أيقونات */
.meta-item i{
  font-size: 13px;
}

/* الفاصل */
.meta-sep{
  color: #9ca3af;
  font-weight: 900;
}

/* التصنيف */
.meta-category{
  color: #16a34a;
}

/* التاريخ */
.meta-date{
  color: #374151;
}

#sub_articles .article-item.is-sm {
    width: 100% !important;
}

.rpt-card{
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid rgba(17,24,39,.06);
      padding: 18px 18px 12px;
      height: 100%;
    }

    .rpt-title{
      color: var(--c-primary);
      font-weight: 900;
      font-size: 15px;
      text-align: right;
      margin: 2px 0 8px;
    }

    .rpt-text{
      color: #374151;
      font-weight: 700;
      font-size: 12.8px;
      line-height: 1.9;
      text-align: right;
      margin: 0 0 10px;
    }

    /* ميتا أسفل البطاقة (بالمنتصف) */
    .rpt-meta{
      display:flex;
      align-items:center;
      justify-content:center;
      gap: 18px;
      padding-top: 8px;
      font-size: 10.5px;
      font-weight: 800;
      color: var(--muted);
    }
    .rpt-meta .meta-item{
      display:inline-flex;
      align-items:center;
      gap: 6px;
      white-space: nowrap;
    }
    .rpt-meta i{
      color: var(--c-primary);
      font-size: 12px;
      transform: translateY(1px);
    }

    /* مسافات الشبكة مثل الصورة */
    .row.gx-rpt{ --bs-gutter-x: 28px; }
    .row.gy-rpt{ --bs-gutter-y: 26px; }

    /* Responsive */
    @media (max-width: 991.98px){
      .reports-bg::before{ background-position: right -180px top 20px; }
      .reports-bg::after{ background-position: left -200px bottom -220px; }
    }

    /* ===== Elegant Report Hover ===== */
.rpt-card{
  position: relative;
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease;
}

/* لمعة ضوئية ناعمة */
.rpt-card::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.35),
    rgba(255,255,255,.18),
    transparent 55%
  );
  opacity: 0;
  transform: translateY(-30%);
  transition:
    opacity .35s ease,
    transform .6s cubic-bezier(.2,.8,.2,1);
  pointer-events:none;
}

/* Hover */
.rpt-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,.14);
}

.rpt-card:hover::after{
  opacity: 1;
  transform: translateY(0);
}

/* العنوان يصير أوضح شوي */
.rpt-card:hover .rpt-title{
  filter: saturate(1.1);
}

/* احترام تقليل الحركة */
@media (prefers-reduced-motion: reduce){
  .rpt-card,
  .rpt-card::after{
    transition: none !important;
  }
}




/* كرت عام */
.layout-card{

  position: relative;
  overflow:hidden;
}

/* كرت صغير */
.layout-card--sm{
  height: 245px;
}

/* كرت كبير */
.layout-card--lg{
  height: 100%;
  min-height: 506px;
}

/* Responsive */
@media (max-width: 991.98px){
  .layout-card--lg{
    min-height: 260px;
  }
}


.section .no_icon.activities::after {
      background-image: unset !important;

}


/* سكشن عام */
.report-details{
  background: var(--bg);
  padding: 26px 0 40px;
  color: var(--ink);
}
.report-details__wrap{ position: relative; }

/* Head */
.report-head{ margin-bottom: 14px; }
.report-crumb{
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}
.report-crumb a{ color: var(--muted); text-decoration:none; }
.report-crumb a:hover{ color:#111; }
.report-crumb .sep{ margin: 0 8px; opacity:.7; }
.report-crumb .current{ color: var(--c-primary); font-weight: 900; }

.report-title{
  font-weight: 900;
  letter-spacing: .2px;
  margin: 10px 0 0;
  font-size: clamp(22px, 2.6vw, 34px);
}

/* Meta pills */
.report-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-top: 14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(17,24,39,.06);
  color:#374151;
}
.pill i{ color: var(--c-primary); transform: translateY(1px); }

.pill--cat{
  background: rgba(22,163,74,.12);
  color:#166534;
}
.pill--download{
  background: rgba(225,29,46,.12);
  color: var(--c-primary);
  text-decoration:none;
}
.pill--download:hover{ filter: brightness(.98); }

/* Hero */
.report-hero{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
  min-height: 320px;
  margin: 16px 0 22px;
}

.report-hero__img{
  width:100%;
  height: 380px;
  object-fit: cover;
  display:block;
  opacity: .92;
}

.report-hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.18), rgba(0,0,0,.45));
  pointer-events:none;
}

.report-hero__badge{
  position:absolute;
  right: 16px;
  top: 16px;
  z-index:2;
  background: rgba(255,255,255,.92);
  color:#111827;
  font-weight: 900;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.report-hero__badge i{ color: var(--c-primary); }

.report-hero__caption{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index:2;
  color:#fff;
}

.report-hero__caption h2{
  font-weight: 900;
  margin:0 0 6px;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.5;
}

.report-hero__caption p{
  margin:0;
  color: rgba(255,255,255,.88);
  font-weight: 700;
  line-height: 1.8;
  max-width: 820px;
  font-size: 13px;
}

/* Content card */
.report-card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  border: 1px solid rgba(17,24,39,.06);
  padding: 22px;
}

.report-card h3{
  font-weight: 900;
  margin: 0 0 10px;
  font-size: 18px;
}
.report-card p{
  color:#374151;
  font-weight: 700;
  line-height: 2;
  font-size: 14px;
  margin-bottom: 14px;
}
.report-card ul{
  margin: 0 0 14px;
  padding-right: 18px;
  color:#374151;
  font-weight: 700;
  line-height: 2;
  font-size: 14px;
}

.report-quote{
  border-right: 4px solid var(--c-primary);
  background: rgba(225,29,46,.06);
  padding: 14px 14px;
  border-radius: 12px;
  margin: 16px 0;
  font-weight: 800;
  color:#111827;
  line-height: 2;
}

/* Sidebar */
.report-side{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  border: 1px solid rgba(17,24,39,.06);
  padding: 18px;
  position: sticky;
  top: 18px;
}

.report-side__title{
  font-weight: 900;
  color:#111827;
  margin: 0 0 12px;
}

.kv{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,24,39,.06);
  font-weight: 800;
  color:#374151;
  font-size: 13px;
}
.kv:last-child{ border-bottom:0; }
.kv span:last-child{ color:#111827; }

.btn-hccd{
  background: var(--c-primary);
  border: none;
  color:#fff;
  font-weight: 900;
  border-radius: 12px;
  padding: 10px 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  box-shadow: 0 14px 26px rgba(225,29,46,.22);
}
.btn-hccd:hover{ filter: brightness(.98); color:#fff; }

.btn-hccd-outline{
  border: 1px solid rgba(225,29,46,.35);
  color: var(--c-primary);
  font-weight: 900;
  border-radius: 12px;
  padding: 10px 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  background:#fff;
}
.btn-hccd-outline:hover{ border-color: rgba(225,29,46,.55); }

/* Responsive */
@media (max-width: 991.98px){
  .report-side{ position: static; }
  .report-hero__img{ height: 300px; }
}






/* Pagination */
.site-pagination{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-top: 20px;
}
.pg-btn, .pg-num{
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 900;
  color:#111827;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
.pg-num.is-active{
  border-color: rgba(225,29,46,.35);
  background: rgba(225,29,46,.10);
  color: var(--c-primary);
}






.activity-details{
  background: var(--bg);
  padding: 26px 0 44px;
  color: var(--ink);
}

/* Head */
.actd-crumb{
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}
.actd-crumb a{ color: var(--muted); text-decoration:none; }
.actd-crumb a:hover{ color:#111; }
.actd-crumb .sep{ margin: 0 8px; opacity:.7; }
.actd-crumb .current{ color: var(--c-primary); font-weight: 900; }

.actd-title{
  font-weight: 900;
  letter-spacing: .2px;
  margin: 10px 0 0;
  font-size: clamp(22px, 2.6vw, 34px);
}

.actd-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-top: 14px;
}

/* Pills */
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(17,24,39,.06);
  color:#374151;
}
.pill i{ color: var(--c-primary); transform: translateY(1px); }

.pill--cat{
  background: rgba(225,29,46,.10);
  color: var(--c-primary);
}

/* Hero */
.actd-hero{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
  min-height: 320px;
  margin: 16px 0 22px;
}

.actd-hero__img{
  width:100%;
  height: 420px;
  object-fit: cover;
  display:block;
  opacity: .92;
}

.actd-hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,.15), rgba(0,0,0,.45));
  pointer-events:none;
}

.actd-hero__badge{
  position:absolute;
  right: 16px;
  top: 16px;
  z-index:2;
  background: rgba(255,255,255,.92);
  color:#111827;
  font-weight: 900;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}
.actd-hero__badge i{ color: var(--c-primary); }

.actd-hero__actions{
  position:absolute;
  left: 16px;
  top: 16px;
  z-index:2;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.actd-hero__caption{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index:2;
  color:#fff;
}
.actd-hero__caption h2{
  font-weight: 900;
  margin:0 0 6px;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.5;
}
.actd-hero__caption p{
  margin:0;
  color: rgba(255,255,255,.88);
  font-weight: 700;
  line-height: 1.8;
  max-width: 820px;
  font-size: 13px;
}

/* Buttons */
.btn-hccd{
  background: var(--c-primary);
  border: none;
  color:#fff;
  font-weight: 900;
  border-radius: 12px;
  padding: 10px 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  box-shadow: 0 14px 26px rgba(225,29,46,.22);
}
.btn-hccd:hover{ filter: brightness(.98); color:#fff; }

.btn-hccd-outline{
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-weight: 900;
  border-radius: 12px;
  padding: 10px 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}
.btn-hccd-outline:hover{ border-color: rgba(255,255,255,.55); color:#fff; }

/* Content cards */
.actd-card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  border: 1px solid rgba(17,24,39,.06);
  padding: 22px;
}

.actd-card h3{
  font-weight: 900;
  margin: 0 0 10px;
  font-size: 18px;
}
.actd-card p{
  color:#374151;
  font-weight: 700;
  line-height: 2;
  font-size: 14px;
  margin-bottom: 14px;
}
.actd-card ul{
  margin: 0 0 14px;
  padding-right: 18px;
  color:#374151;
  font-weight: 700;
  line-height: 2;
  font-size: 14px;
}

/* Quote */
.actd-quote{
  border-right: 4px solid var(--c-primary);
  background: rgba(225,29,46,.06);
  padding: 14px 14px;
  border-radius: 12px;
  margin: 16px 0;
  font-weight: 800;
  color:#111827;
  line-height: 2;
}

/* Agenda */
.actd-agenda{
  display:grid;
  gap: 10px;
}
.ag-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 14px;
  background: rgba(17,24,39,.04);
  border: 1px solid rgba(17,24,39,.06);
}
.ag-time{
  min-width: 64px;
  text-align:center;
  font-weight: 900;
  color: var(--c-primary);
  background: rgba(225,29,46,.10);
  border-radius: 12px;
  padding: 8px 10px;
}
.ag-title{
  font-weight: 900;
  color:#111827;
}
.ag-desc{
  color:#374151;
  font-weight: 700;
  line-height: 1.9;
  font-size: 13px;
  margin-top: 4px;
}

/* Gallery */
.actd-muted{
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}
.actd-gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.g-item{
  display:block;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(17,24,39,.06);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
.g-item img{
  width:100%;
  height: 90px;
  object-fit: cover;
  display:block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.g-item:hover img{ transform: scale(1.08); }

/* Sidebar */
.actd-side{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  border: 1px solid rgba(17,24,39,.06);
  padding: 18px;
  position: sticky;
  top: 18px;
}
.actd-side__title{
  font-weight: 900;
  color:#111827;
  margin: 0 0 12px;
}
.kv{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,24,39,.06);
  font-weight: 800;
  color:#374151;
  font-size: 13px;
}
.kv:last-child{ border-bottom:0; }
.kv span:last-child{ color:#111827; }

/* Responsive */
@media (max-width: 991.98px){
  .actd-hero__img{ height: 320px; }
  .actd-side{ position: static; }
  .actd-gallery{ grid-template-columns: repeat(2, 1fr); }
}

/* Video Button */
.actd-video-btn{
  position:absolute;
  inset:0;
  margin:auto;
  width: 180px;
  height: 56px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  border-radius: 999px;
  border: 0;
  cursor:pointer;

  background: rgba(255,255,255,.92);
  color:#111827;
  font-weight: 900;

  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  z-index:3;

  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              box-shadow .35s ease;
}

.actd-video-btn i{
  font-size: 22px;
  color: var(--c-primary);
}

/* Hover */
.actd-video-btn:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 28px 56px rgba(0,0,0,.35);
}

/* Modal look */
.video-modal{
  background: transparent;
  border:0;
}
.video-modal .btn-close{
  filter: invert(1);
}












.join-page{
  background: var(--bg);
  padding: 26px 0 48px;
  color: var(--ink);
}

.join-head{ margin-bottom: 14px; }

.join-crumb{
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}
.join-crumb a{ color: var(--muted); text-decoration:none; }
.join-crumb a:hover{ color:#111; }
.join-crumb .sep{ margin: 0 8px; opacity:.7; }
.join-crumb .current{ color: var(--c-primary); font-weight: 900; }

.join-title{
  font-weight: 900;
  margin: 10px 0 0;
  font-size: clamp(22px, 2.6vw, 34px);
}
.join-sub{
  margin: 10px 0 0;
  color:#374151;
  font-weight: 700;
  line-height: 1.9;
  max-width: 760px;
  font-size: 14px;
}

/* cards */
.join-card, .join-side{
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(17,24,39,.06);
  overflow: hidden;
  position: relative;
}

.join-card{
  padding: 18px;
}
.join-card__title{
  font-weight: 900;
  margin: 0 0 14px;
  font-size: 18px;
}

/* form */
.join-form .form-label{
  font-weight: 900;
  color:#111827;
  font-size: 13px;
  margin-bottom: 6px;
}

.join-input{
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(17,24,39,.03);
  padding: 11px 12px;
  font-weight: 800;
}
.join-input:focus{
  border-color: rgba(225,29,46,.35);
  box-shadow: 0 0 0 .2rem rgba(225,29,46,.12);
  background: #fff;
}

.join-file{
  border-radius: 14px;
  border: 1px dashed rgba(17,24,39,.22);
  background: rgba(17,24,39,.02);
  font-weight: 800;
}
.join-hint{
  display:block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

/* buttons */
.join-btn{
  background: var(--c-primary);
  border: none;
  color:#fff;
  font-weight: 900;
  border-radius: 14px;
  padding: 10px 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  box-shadow: 0 14px 26px rgba(225,29,46,.22);
}
.join-btn:hover{ filter: brightness(.98); color:#fff; }

.join-btn-outline{
  border: 1px solid rgba(225,29,46,.35);
  background:#fff;
  color: var(--c-primary);
  font-weight: 900;
  border-radius: 14px;
  padding: 10px 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.join-btn-outline:hover{ border-color: rgba(225,29,46,.55); color: var(--c-primary); }

.join-note{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 900;
  color: #166534;
  background: rgba(22,163,74,.10);
  padding: 10px 12px;
  border-radius: 14px;
}
.join-note i{ color:#16a34a; }

/* side */
.join-side{
  padding: 18px;
  min-height: 100%;
}

.join-side__title{
  font-weight: 900;
  margin: 0;
  font-size: 18px;
}
.join-side__sub{
  margin: 8px 0 0;
  color:#374151;
  font-weight: 700;
  line-height: 1.9;
  font-size: 13.5px;
}

.info-list{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}

.info-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(17,24,39,.03);
  border: 1px solid rgba(17,24,39,.06);
  text-decoration:none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.info-item:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
}
.info-item--static:hover{ transform:none; box-shadow:none; }

.info-ic{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(225,29,46,.10);
  flex: 0 0 auto;
}
.info-ic i{
  color: var(--c-primary);
  font-size: 18px;
}

.info-k{
  display:block;
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  margin-top: 2px;
}
.info-v{
  display:block;
  font-weight: 900;
  color:#111827;
  line-height: 1.8;
  font-size: 13.5px;
  margin-top: 2px;
}

/* mini box */
.join-mini{
  margin-top: 14px;
  border-radius: 18px;
  background: rgba(225,29,46,.06);
  border: 1px solid rgba(225,29,46,.12);
  padding: 12px;
}
.join-mini__title{
  font-weight: 900;
  color:#111827;
  margin-bottom: 8px;
}
.join-mini__row{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  font-weight: 900;
  color:#374151;
  padding: 8px 0;
  border-top: 1px solid rgba(17,24,39,.06);
}
.join-mini__row:first-of-type{ border-top:0; }

/* whatsapp */
.join-side__cta{
  margin-top: 14px;
  display:flex;
  justify-content:flex-start;
}
.join-whatsapp{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  color:#fff;
  text-decoration:none;
  background: #16a34a;
  box-shadow: 0 14px 26px rgba(22,163,74,.20);
}
.join-whatsapp:hover{ filter: brightness(.98); color:#fff; }
.join-whatsapp i{ font-size: 18px; }

/* decor */
.join-decor{
  position:absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  pointer-events:none;
}
.join-decor--r{
  right: -200px;
  top: -220px;
  background: radial-gradient(circle, rgba(225,29,46,.10), transparent 60%);
}
.join-decor--l{
  left: -220px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(17,24,39,.08), transparent 60%);
}

/* responsive */
@media (max-width: 991.98px){
  .join-side{ padding: 16px; }
  .join-card{ padding: 16px; }
}






.donate-page{
  background: var(--bg);
  padding: 26px 0 48px;
  color: var(--ink);
}

.donate-crumb{
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}
.donate-crumb a{ color: var(--muted); text-decoration:none; }
.donate-crumb a:hover{ color:#111; }
.donate-crumb .sep{ margin: 0 8px; opacity:.7; }
.donate-crumb .current{ color: var(--c-primary); font-weight: 900; }

/* Hero */
.donate-hero{
  position: relative;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(17,24,39,.06);
  padding: 18px 18px 16px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 18px;
}

.donate-title{
  margin: 0;
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 34px);
}
.donate-sub{
  margin: 10px 0 0;
  color:#374151;
  font-weight: 700;
  line-height: 1.9;
  max-width: 760px;
  font-size: 14px;
}

.donate-hero__tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17,24,39,.06);
  font-size: 12px;
  font-weight: 900;
  color:#374151;
}
.tag i{ color: var(--c-primary); transform: translateY(1px); }

/* Decor */
.donate-decor{
  position:absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  pointer-events:none;
}
.donate-decor--r{
  right: -220px;
  top: -240px;
  background: radial-gradient(circle, rgba(225,29,46,.12), transparent 60%);
}
.donate-decor--l{
  left: -250px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(17,24,39,.10), transparent 60%);
}

/* Cards */
.donate-card, .donate-side > *{
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(17,24,39,.06);
}
.donate-card{ padding: 18px; }

.donate-card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.donate-card__title{
  margin:0;
  font-weight: 900;
  font-size: 18px;
}
.donate-secure{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(22,163,74,.10);
  color:#166534;
  font-weight: 900;
  font-size: 12px;
}
.donate-secure i{ color:#16a34a; }

/* Amounts */
.donate-amounts{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.amt{
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(17,24,39,.03);
  border-radius: 16px;
  padding: 12px 10px;
  font-weight: 900;
  color:#111827;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.amt:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
}
.amt.is-active{
  border-color: rgba(225,29,46,.35);
  background: rgba(225,29,46,.10);
  color: var(--c-primary);
}

.amt-custom{
  grid-column: 1 / -1;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(17,24,39,.03);
  border: 1px solid rgba(17,24,39,.10);
}
.amt-custom i{ color: var(--c-primary); }
.amt-custom input{
  border:0;
  outline:0;
  background: transparent;
  width:100%;
  font-weight: 900;
}
.amt-custom .cur{
  font-weight: 900;
  color: var(--muted);
}

/* Methods */
.donate-methods{ margin-bottom: 8px; }
.method-title{
  font-weight: 900;
  margin: 4px 0 10px;
}
.method-pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.m-pill{
  cursor:pointer;
  user-select:none;
}
.m-pill input{ display:none; }
.m-pill span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(17,24,39,.06);
  font-weight: 900;
  color:#374151;
  border: 1px solid rgba(17,24,39,.08);
}
.m-pill span i{ color: var(--c-primary); }
.m-pill input:checked + span{
  background: rgba(225,29,46,.10);
  border-color: rgba(225,29,46,.25);
  color: var(--c-primary);
}

/* Form */
.form-label{
  font-weight: 900;
  color:#111827;
  font-size: 13px;
  margin-bottom: 6px;
}
.d-input{
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(17,24,39,.03);
  padding: 11px 12px;
  font-weight: 800;
}
.d-input:focus{
  border-color: rgba(225,29,46,.35);
  box-shadow: 0 0 0 .2rem rgba(225,29,46,.12);
  background: #fff;
}

/* Buttons */
.d-btn{
  background: var(--c-primary);
  border: none;
  color:#fff;
  font-weight: 900;
  border-radius: 14px;
  padding: 10px 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  box-shadow: 0 14px 26px rgba(225,29,46,.22);
}
.d-btn:hover{ filter: brightness(.98); color:#fff; }

.d-btn-outline{
  border: 1px solid rgba(225,29,46,.35);
  background:#fff;
  color: var(--c-primary);
  font-weight: 900;
  border-radius: 14px;
  padding: 10px 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.d-btn-outline:hover{ border-color: rgba(225,29,46,.55); color: var(--c-primary); }

.d-note{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight: 900;
  color:#374151;
  background: rgba(17,24,39,.06);
  padding: 10px 12px;
  border-radius: 14px;
}
.d-note i{ color: var(--c-primary); }

/* Side */
.donate-side{ display:grid; gap: 14px; }

.impact-card{ padding: 18px; }
.impact-title{ margin:0 0 12px; font-weight: 900; font-size: 18px; }

.impact-list{ display:grid; gap: 10px; }
.impact-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(17,24,39,.03);
  border: 1px solid rgba(17,24,39,.06);
}
.impact-ic{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(225,29,46,.10);
  flex: 0 0 auto;
}
.impact-ic i{ color: var(--c-primary); font-size: 18px; }
.impact-k{ font-weight: 900; color:#111827; }
.impact-v{ font-weight: 700; color:#374151; line-height: 1.8; font-size: 13px; margin-top: 2px; }

.impact-mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.mini-box{
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(225,29,46,.06);
  border: 1px solid rgba(225,29,46,.12);
  text-align:center;
}
.mini-num{ font-weight: 900; color: var(--c-primary); font-size: 18px; }
.mini-label{ font-weight: 900; color:#374151; font-size: 12px; margin-top: 4px; }

.bank-card{ padding: 18px; }
.bank-title{ margin:0 0 12px; font-weight: 900; font-size: 18px; }

.kv{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,24,39,.06);
  font-weight: 800;
  color:#374151;
  font-size: 13px;
}
.kv:last-child{ border-bottom:0; }
.kv span:last-child{ color:#111827; }

.bank-note{
  margin-top: 10px;
  border-radius: 16px;
  background: rgba(17,24,39,.04);
  border: 1px solid rgba(17,24,39,.06);
  padding: 10px 12px;
  font-weight: 800;
  color:#374151;
  line-height: 1.8;
  font-size: 12.5px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.bank-note i{ color: var(--c-primary); transform: translateY(2px); }

/* Responsive */
@media (max-width: 991.98px){
  .donate-amounts{ grid-template-columns: repeat(2, 1fr); }
}

:root{
  --nav-offset: 110px; /* عدّلها حسب ارتفاع topbar + navbar */
}

/* عشان ما يختفي بداية السكشن تحت الهيدر */
section[id]{
  scroll-margin-top: var(--nav-offset);
}

/* لمسة “إبداعية” عند الوصول */
.section-focus{
  animation: sectionFocus .9s cubic-bezier(.2,.8,.2,1);
}
@keyframes sectionFocus{
  0%{
    transform: translateY(10px);
    filter: saturate(.95);
  }
  60%{
    transform: translateY(0);
  }
  100%{
    transform: translateY(0);
    filter: saturate(1);
  }
}

/* خط خفيف يظهر لحظة الوصول (اختياري) */
.section-focus::before{
  content:"";
  position:absolute;
  inset: -10px 0 auto 0;
  height: 0;
  border-top: 3px solid rgba(225,29,46,.25);
  border-radius: 999px;
}







.article-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.footer-about {
    max-width: 70%;
}

@media (max-width: 576px) {
    .about95__dots {
        left: -14px;
    }
    .footer-about {
        max-width: 100%;
    }
    .footer-logo {
        max-width: 100%;
    }
    .icon-fixed--bottom {
      left: 0px;
    }
    .icon-fixed--green {
        top: 205px;
        left: 20px;
        z-index: 3;
    }
    .join-page ,
    .donate-page ,
    .report-details {
        padding-top: 52px;
    }
    #sub_articles .article-item.is-sm {
      margin-bottom: 15px;
    }
    .brand{
      margin-right: 20px !important;
    }
}


















/* ===== Fix Mobile Navbar Dropdown Layout ===== */
@media (max-width: 991.98px){


  /* القائمة لازم تنزل تحت بعرض كامل */
  .main-navbar .navbar-collapse{
    width: 100% !important;
  }

  /* شكل القائمة */
  .main-navbar .navbar-collapse.show{
      margin-top: 449px;
      position: absolute;

  }

  .main-navbar .navbar-nav{
    width: 100% !important;
    padding: 10px;

    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;

    background: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
    gap: 6px;
  }

  .main-navbar .nav-link{
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(17,24,39,.04);
    font-weight: 900;
  }

  .main-navbar .nav-link:hover{
    background: rgba(225,29,46,.10);
  }

  .navbar-shell {
    padding: unset !important;
  }
  .main-navbar .navbar-nav,
  .navbar-shell{
    box-shadow: unset !important;
  }


  .navbar .container{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

    .brand {
      margin-left: 60px;
    }
}
#mainMenu{
      justify-content: center !important;

}






































@media (max-width: 991.98px){

  /* امنع أي انتقالات تسبب حركة جانبية */
  .main-navbar .navbar-collapse,
  .main-navbar .collapsing{
    transition: none !important;
  }

  /* Bootstrap يستخدم .collapsing أثناء الفتح، نخليه ياخذ نفس مكان القائمة النهائي */
  .main-navbar .collapsing{
    height: auto !important;
    overflow: hidden !important;
  }

  /* تأكيد المكان الصحيح من البداية */
  .main-navbar .navbar-collapse{
    width: 94% !important;
    flex-basis: 100% !important;
    order: 3 !important;
  }
}

@media (max-width: 991.98px){



  .main-navbar .navbar-collapse.show{
      width: 100% !important;
      right: 0;
  }

}























