.text-sec-color {
  color: var(--second-color);
}

.text-main-color {
  color: var(--main-color);
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.row-gap-24 {
  row-gap: 24px;
}

.fs-10px {
  font-size: 10px;
}

.fs-11px {
  font-size: 11px;
}

.fs-12px {
  font-size: 12px;
}

.bg-light-grey {
  background-color: rgb(242, 242, 242);
}

.text-light-grey {
  color: rgb(242, 242, 242);
}

.w-fit {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

body {
  font-family: "Noto Kufi Arabic", sans-serif;
  background: url("../img/background.png");
  color: black;
  font-size: 14px;
  scroll-behavior: smooth;
  background-size: auto;
  /* تعويض الـ sticky header حتى لا يطغى على المحتوى */
  scroll-padding-top: 145px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  color: black;
}

button {
  border: none;
  outline: none;
}

.form-control {
  font-size: 14px !important;
  border: 1px solid #ddd !important;
}

.main-section {
  padding: 1.5rem 0;
  min-height: calc(100vh - 41.89px - 54.36px - 52.97px);
  background-color: transparent;
}

.modal-header .modal-title {
  font-size: 15px !important;
}
.modal-header .btn-close {
  margin: unset !important;
}

/* ═══════════════════════════════════════════════════════
   HEADER  –  Ahwazi Centre
   الهيدر الرئيسي للموقع
═══════════════════════════════════════════════════════ */

/* ── Sticky wrapper + top accent ── */
.header-wrapper {
  border-top: 4px solid var(--main-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  overflow: visible;  /* لازم visible عشان الـ dropdowns تطلع من تحت الهيدر */
  width: 100%;
  max-width: 100vw;
}

/* ══════════════════════════════════════════
   MID-NAV  (الجزء الأبيض: لوجو + سوشيال + بحث)
══════════════════════════════════════════ */
/* ══════════════════════════════════════════════════
   MID-NAV — شريط الهيدر العلوي
   تخطيط 3 أعمدة: لوجو | سوشيال (وسط) | بحث
══════════════════════════════════════════════════ */
.mid-nav {
  background-color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.mid-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

/* ── اللوجو ── */
.logo-wrap { display: flex; align-items: center; min-width: 0; }
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.mid-nav .logo {
  height: 108px;
  width: auto;
  max-width: 360px;
  -o-object-fit: contain;
     object-fit: contain;
}
.brand-tagline {
  color: var(--second-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

/* ── السوشيال (وسط) ── */
.mid-social-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mid-nav .mid-social {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.mid-nav .mid-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 200ms ease;
  text-decoration: none;
}
.mid-nav .mid-social a:hover {
  background-color: var(--main-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* ── البحث ── */
.mid-search-wrap {
  display: flex;
  justify-content: flex-start;   /* flex-start = يسار في LTR / يمين في RTL direction:ltr */
  align-items: center;
  min-width: 0;
}
.header-search {
  display: flex;
  align-items: center;
  border: 2px solid var(--main-color);
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  width: 240px;
  max-width: 100%;
  box-sizing: border-box;
  transition: box-shadow 200ms, width 300ms ease;
}
.header-search:focus-within {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--main-color) 20%, transparent);
  width: 280px;
}
.header-search__input {
  border: none !important;
  outline: none;
  padding: 8px 14px;
  font-size: 13px;
  flex: 1;
  min-width: 0;
  background: transparent;
  font-family: inherit;
  direction: rtl;
  color: #333;
  order: 1;
}
.header-search__input::-moz-placeholder { color: #bbb; }
.header-search__input::placeholder { color: #bbb; }
.header-search__input:focus { outline: none; box-shadow: none; }
.header-search__btn {
  background-color: var(--main-color);
  border: none;
  color: #fff;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  transition: 200ms;
  line-height: 1;
  flex-shrink: 0;
  order: 2;
}
.header-search__btn:hover { background-color: var(--second-color); }

/* ── Responsive موبايل ── */
@media (max-width: 991.98px) {
  .mid-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 4px 0 8px;
  }
  .logo-wrap { width: 100%; justify-content: center; }
  .mid-nav .logo { height: auto; max-height: 82px; max-width: 100%; }
  .brand-tagline { font-size: 14px; text-align: center; white-space: normal; }
  .mid-search-wrap { width: 100%; justify-content: center; }
  .header-search { width: 100%; max-width: 440px; }
  .header-search:focus-within { width: 100%; max-width: 440px; }
}
@media (max-width: 575.98px) {
  .mid-nav { padding: 8px 0; }
  .mid-nav .logo { max-height: 70px; max-width: min(100%, 360px); }
  .brand-tagline { font-size: 12px; }
  .mid-nav .mid-social a { width: 34px; height: 34px; }
  .header-search { max-width: 100%; }
}

/* ══════════════════════════════════════════
   MAIN-NAVBAR  (شريط التنقل الرئيسي)
══════════════════════════════════════════ */
.main-navbar {
  background-color: var(--second-color);
  overflow: visible;    /* ضروري لظهور الـ dropdowns */
  position: relative;
}
.main-navbar .container-fluid {
  padding: 0;
  overflow: visible;
}

/* زر البرغر */
.main-navbar .navbar-toggler {
  margin: 8px 12px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 6px;
  padding: 5px 10px;
  color: #fff;
}
.main-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,.25);
}
.main-navbar .navbar-toggler .navbar-toggler-icon {
  width: auto;
  height: auto;
}

/* القائمة الأفقية — overflow يجب أن يبقى visible حتى تعمل الـ dropdowns */
.main-navbar .navbar-nav {
  flex-wrap: nowrap;
  overflow: visible;   /* مهم جداً: لو اتغيّر بتتكسر الـ dropdowns */
  gap: 0;
  width: 100%;
}

.main-navbar .nav-item { flex-shrink: 0; }

/* روابط التنقل */
.main-navbar .nav-link {
  padding: 0 13px;
  font-size: 13px;
  line-height: 48px;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 200ms;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.main-navbar .nav-link i.fa-solid { font-size: 11px; opacity: .8; }

.main-navbar .nav-link.active,
.main-navbar .nav-link:hover {
  background-color: rgba(255,255,255,.12);
  border-bottom-color: var(--main-color);
  color: #fff;
}

/* Dropdown */
.main-navbar .nav-link.dropdown-nav { position: relative; }
.main-navbar .nav-link.dropdown-nav::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  opacity: .7;
  margin-right: 2px;
}

/* القائمة المنسدلة */
.main-navbar .nav-link.dropdown-nav .list {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 185px;
  width: 185px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  transition: opacity 200ms, transform 200ms;
  transform: translateY(-6px);
  border-top: 3px solid var(--main-color);
}
.main-navbar .nav-link.dropdown-nav .list .item {
  background-color: var(--second-color);
  color: #fff;
  font-size: 13px;
  padding: 10px 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: 150ms;
  line-height: 1.4;
  text-decoration: none;
  display: block;
}
.main-navbar .nav-link.dropdown-nav .list .item:last-child { border-bottom: none; }
.main-navbar .nav-link.dropdown-nav .list .item:hover {
  background-color: var(--main-color);
  padding-inline-end: 22px;
  color: #fff;
}
.main-navbar .nav-link.dropdown-nav .list .item.fw-bold {
  background-color: rgba(0,0,0,.2);
  font-size: 12px;
}
.main-navbar .nav-link.dropdown-nav:hover .list {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   Responsive موبايل — Navbar
══════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .main-navbar .container-fluid {
    width: 100%;
    max-width: 100vw;
  }
  .main-navbar .navbar-toggler {
    margin-inline: 12px auto;
  }
  .main-navbar .navbar-collapse {
    background-color: var(--second-color);
    padding: 4px 0 10px;
    border-top: 2px solid var(--main-color);
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  /* Scrollbar ناعم */
  .main-navbar .navbar-collapse::-webkit-scrollbar { width: 4px; }
  .main-navbar .navbar-collapse::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius: 2px; }

  .main-navbar .navbar-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: visible;
    width: 100%;
  }
  .main-navbar .nav-item { width: 100%; }

  /* روابط القائمة */
  .main-navbar .nav-link {
    line-height: 1;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    border-bottom-color: rgba(255,255,255,.08) !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-width: 3px !important;
    border-bottom-color: transparent !important;
  }
  .main-navbar .nav-link:hover,
  .main-navbar .nav-link.active {
    background-color: rgba(255,255,255,.1);
    border-bottom-color: transparent !important;
  }

  /* سهم الـ dropdown */
  .main-navbar .nav-link.dropdown-nav::after {
    margin-right: auto;
    margin-left: 0;
    transition: transform 250ms ease;
  }
  /* عند الفتح — يقلب السهم */
  .main-navbar .nav-link.dropdown-nav.mob-open::after {
    transform: rotate(180deg);
  }

  /* القائمة الفرعية — مخفية بشكل افتراضي */
  .main-navbar .nav-link.dropdown-nav .list {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    border-right: 4px solid var(--main-color);
    display: none;           /* مغلقة */
    flex-direction: column;
    width: 100%;
    min-width: 100%;
    background-color: rgba(0,0,0,.2);
  }
  /* عند الفتح بالـ JS */
  .main-navbar .nav-link.dropdown-nav.mob-open .list {
    display: flex !important;
  }
  /* لا نريد hover يفتح في الموبايل */
  .main-navbar .nav-link.dropdown-nav:hover .list { display: none; }
  .main-navbar .nav-link.dropdown-nav.mob-open .list { display: flex !important; }

  /* عناصر القائمة الفرعية */
  .main-navbar .nav-link.dropdown-nav .list .item {
    padding: 10px 28px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background-color: transparent;
  }
  .main-navbar .nav-link.dropdown-nav .list .item:hover {
    background-color: var(--main-color);
    padding-inline-end: 28px;
  }
  .main-navbar .nav-link.dropdown-nav .list .item.fw-bold {
    background-color: rgba(0,0,0,.15);
    padding-inline-start: 18px;
  }
}

@media (max-width: 991.98px) {
  .loginPage .login_box {
    width: 100% !important;
  }
}
@media (max-width: 767.98px) {
  .loginPage .login_box {
    width: 80% !important;
  }
  .loginPage .login_box .image_holder img {
    border-radius: 15px 15px 0px 0 !important;
  }
}
.loginPage {
  width: 100%;
  min-height: calc(100vh - 155px - 463.38);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loginPage .login_box {
  min-height: 380px;
  background-color: white;
  border-radius: 15px;
  width: 70%;
  margin: auto;
}
.loginPage .login_box .image_holder {
  width: 100%;
  height: 100%;
}
.loginPage .login_box .image_holder img {
  width: 100%;
  height: 100%;
  border-radius: 0px 15px 15px 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.loginPage .login_box .login-form {
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.loginPage .login_box .login-form .login_content {
  margin-bottom: 20px;
}
.loginPage .login_box .login-form .login_content .title {
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 600;
}
.loginPage .login_box .login-form .login_content .inp_holder {
  margin-bottom: 15px;
}
.loginPage .login_box .login-form .login_content .inp_holder .login-label {
  margin-bottom: 6px;
  font-size: 11px;
  color: #959595;
  font-weight: 600;
}
.loginPage .login_box .login-form .login_content .inp_holder .login-inp {
  padding: 5px 13px !important;
  border-radius: 6px;
}
.loginPage .login_box .login-form .login_content .btn_holder .login-btn {
  transition: background-color 0.4s;
  width: 100%;
  color: white;
  text-align: center;
  margin-top: 15px;
  padding: 0.5rem 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background-color: var(--main-color);
}
.loginPage .login_box .login-form .login_content .btn_holder .login-btn:hover {
  background-color: var(--second-color);
}

.artical-section .box-text {
  width: 100%;
  background-color: white;
  border-radius: 6px;
  padding: 15px;
}
.artical-section .box-text .image-holder {
  height: 250px;
  width: 50%;
  margin: 0 auto 30px;
}
.artical-section .box-text .image-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.artical-section .box-text h1 {
  color: var(--main-color);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 13px;
}
.artical-section .box-text h1 p {
  color: #fff;
  font-size: 16px;
}

.section-contact .contact_us {
  position: relative;
  width: 100%;
  max-height: 100%;
  height: 135px;
}
.section-contact .contact_us img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-contact .contact_us .box-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.section-contact .contact_us .box-text > h1 {
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 5px;
}
.section-contact .contact_us .box-text > p {
  margin-bottom: 0%;
  color: #fff;
  font-size: 18px;
}
.section-contact .contact_way .box-content {
  text-align: center;
}
.section-contact .contact_way .box-content .icon_holder {
  margin: 0 auto 15px;
}
.section-contact .contact_way .box-content .icon_holder > i,
.section-contact .contact_way .box-content .icon_holder svg {
  font-size: 50px;
  color: var(--main-color);
}
.section-contact .contact_way .box-content p {
  margin: 0 0 15px;
  font-size: 15px;
  color: #555;
}
.section-contact .form_section .contact-title {
  text-align: center;
}
.section-contact .form_section .contact-title h3 {
  font-size: 25px;
  line-height: 35px;
  color: var(--main-color);
}
.section-contact .form_section .contact-title p {
  margin: 0 0 20px;
  font-size: 15px;
  color: #666;
}
.section-contact .form_section .form-group .custom-form {
  display: block;
  width: 100%;
  height: calc(2em + 1rem + 2px);
  padding: 8px 25px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  background-color: #f0f2f5 !important;
  background-clip: padding-box;
  border: none;
  direction: rtl;
  text-align: right;
  border-radius: 50rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.section-contact .form_section .form-group .custom-form:focus {
  border: 1px solid var(--main-color) !important;
  box-shadow: none !important;
}
.section-contact .btn-washla {
  display: inline-block;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 1px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 6px 25px;
  border-radius: 5px;
  color: #fff;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  transition: all 0.3s ease-in-out 0s;
}
.section-contact .btn-washla:hover {
  color: #fff;
  background-color: var(--second-color);
  border: 1px solid var(--second-color);
}
.section-contact .map {
  width: 100%;
}
.section-contact .map iframe {
  width: 100%;
  height: 80vh;
}

.section-category {
  background-color: #fafafa;
}

.main-btn {
  background-color: var(--second-color);
  padding: 4px 10px;
  color: #fff;
  border-radius: 0 4px 0 0;
  font-size: 14px;
  transition: 300ms;
}
.main-btn:hover {
  background-color: var(--main-color);
}

.main-btn-outline {
  background-color: white;
  padding: 4px 10px;
  color: var(--second-color);
  border: 1px solid var(--second-color);
  border-radius: 4px;
  font-size: 14px;
  transition: 300ms;
}
.main-btn-outline:hover {
  background-color: #684711;
  color: white;
}

.btn-grey {
  background: rgb(217, 217, 217);
  color: var(--main-color) !important;
  font-size: 14px;
}

.main-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-color);
  color: white;
  padding: 2px 10px;
  font-size: 14px;
  max-width: 200px;
  word-break: break-word;
  border-radius: 2px;
  transition: 300ms;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  pointer-events: none;
  text-align: center;
}
.main-tooltip.active {
  pointer-events: unset;
  opacity: 1;
}

.btn-white {
  box-shadow: unset !important;
}
.btn-white.active {
  background-color: var(--main-color) !important;
  color: white !important;
}

.main-heading {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.small-heading {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 5px;
  font-weight: bold;
}

.small-label {
  color: #6b7280;
  font-size: 12px;
  margin-bottom: 2px;
}

.section-title {
  background-color: var(--main-color);
  color: #ffffff;
  font-size: 20px;
  padding: 20px;
}

.boxes-info .box-info {
  background-color: white;
  padding: 25px 15px;
  text-align: end;
  overflow: hidden;
  border-radius: 0.375rem;
  position: relative;
  box-shadow: 0 0 6px 0 #d3d3d3;
  transition: 300ms;
}
.boxes-info .box-info:hover {
  box-shadow: 0 0 6px 0 #aeaaaa;
}
.boxes-info .box-info.blue .bg-icon {
  color: #5b8af0;
}
.boxes-info .box-info.green .bg-icon {
  color: var(--main-color);
}
.boxes-info .box-info.pur .bg-icon {
  color: #7b74eb;
}
.boxes-info .box-info.red .bg-icon {
  color: #de5f56;
}
.boxes-info .box-info .num {
  font-size: 25px;
}
.boxes-info .box-info .text {
  font-size: 16px;
  color: #6b7280;
}
.boxes-info .box-info .bg-icon {
  position: absolute;
  right: -3%;
  bottom: 0;
  font-size: 60px;
}
.boxes-info.boxes-bg-color .box-info {
  color: white;
}
.boxes-info.boxes-bg-color .box-info .text {
  color: white;
}
.boxes-info.boxes-bg-color .box-info .bg-icon {
  color: white;
}
.boxes-info.boxes-bg-color .box-info.blue {
  background-color: #5b8af0;
}
.boxes-info.boxes-bg-color .box-info.green {
  background-color: var(--main-color);
}
.boxes-info.boxes-bg-color .box-info.pur {
  background-color: #7b74eb;
}
.boxes-info.boxes-bg-color .box-info.red {
  background-color: #de5f56;
}

.main-table {
  width: 100%;
  border-radius: 7px;
  border: none !important;
  border: 1px solid #ddd !important;
}
.main-table * {
  border: none !important;
}
.main-table tr {
  border: 1px solid #ddd !important;
}
.main-table tr th {
  background-color: #f9fafb;
  color: #6b7280;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  padding: 10px;
}
.main-table tr td {
  background-color: white;
  font-size: 14px;
  padding: 10px;
}

.card-side {
  box-shadow: -13px 20px 20px 0 rgba(0, 0, 0, 0.0392156863);
  background: #ffffff;
  border-radius: 5px;
  border: 0;
  margin-bottom: 1rem;
}
.card-side .user-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.card-side .user-name {
  margin: 0 0 0.5rem 0;
}
.card-side .user-email {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 400;
  color: #9fa8b9;
}
.card-side .card-slide {
  box-shadow: 0px 8px 10px 0 rgba(0, 0, 0, 0.0392156863) !important;
  padding: 1.5rem 1rem;
  text-align: center;
}
.card-side .card-slide .btn-icon {
  color: #666;
}
.card-side .card-slide .btn-icon:hover {
  color: #000;
}
.card-side .card-slide .btn-icon .icon {
  border: none !important;
}
.card-side .card-slide .btn-icon .icon svg,
.card-side .card-slide .btn-icon .icon i {
  width: 20px;
}

.landing-section {
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.landing-section::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: hsla(193, 99%, 45%, 0.5);
}
.landing-section .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-side {
  padding: 20px;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  background-color: #fff;
}
.content-side .header {
  font-weight: 500;
  font-size: 24px;
  line-height: 41px;
  text-align: right;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.content-side .between-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.content-side .blocks-tickets .box-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  border: 1px solid #e3e3e3;
  padding: 15px;
  border-radius: 3px;
  background-color: #fff;
}
.content-side .blocks-tickets .box-ticket .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 7px;
}
.content-side .blocks-tickets .box-ticket .info .date {
  color: var(--main-color);
  font-weight: 700;
  font-size: 13px;
}
.content-side .blocks-tickets .box-ticket .info .content {
  color: rgb(102, 102, 102);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 22.4px;
  font-weight: 400;
}
.content-side .blocks-tickets .box-ticket .options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.box-title {
  background: linear-gradient(0deg, #e4e0d8 0%, #fffbf7 100%);
  border-radius: 4px;
  box-shadow: 0 2px 0 0 rgba(213, 206, 193, 0.75);
  padding: 0 15px;
  line-height: 45px;
  font-size: 18px;
  color: #1d3504;
  margin-bottom: 10px;
  display: flex;
  gap: 7px;
  align-items: center;
}

.box-news-holder .box-new {
  padding: 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: box-shadow 200ms, transform 200ms;
  height: 100%;
}
.box-news-holder .box-new:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
  transform: translateY(-2px);
}
.box-news-holder .box-new .img-new {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
.box-news-holder .box-new .desc {
  color: #485661;
  font-size: 15px;
  font-weight: 600;
  transition: 300ms;
  margin-bottom: 0;
  padding: 12px 12px 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.box-news-holder .box-new .desc:hover {
  color: var(--main-color);
}
.box-news-holder .box-new p {
  padding: 4px 12px 10px;
  font-size: 13px;
  line-height: 18px;
  color: #737f8a;
  margin: 0;
}
.box-news-holder .box-new .date {
  color: #888;
  font-size: 11px;
  text-align: end;
  padding: 0 12px 10px;
  display: block;
}

.box-products-holder .box-product {
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1019607843);
  position: relative;
  padding: 20px;
  height: 100%;
  border: 1px solid #ddd;
  overflow: hidden;
}
.box-products-holder .box-product .img-new {
  width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
.box-products-holder .box-product p {
  padding: 0 10px 10px;
  font-size: 13px;
  line-height: 18px;
  color: #737f8a;
  margin: 0 auto;
}
.box-products-holder .box-product .price {
  color: var(--main-color);
  font-weight: 700;
}
.box-products-holder .box-product .cart {
  color: #333;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms;
}
.box-products-holder .box-product .cart:hover {
  background-color: var(--main-color);
  color: #fff;
}

.msgsite {
  margin-bottom: 15px;
}
.msgsite .title {
  background-color: var(--second-color);
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 5px;
}
.msgsite .content {
  background-color: var(--main-color);
  padding: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}

.ourvision {
  background: #2e4f0a url(../img/vision.png) no-repeat scroll top left;
  background-size: cover;
  margin: 0 auto 15px;
}
.ourvision .title {
  font-size: 25px;
  color: #ffffff;
  padding: 10px 10px 0 10px;
}
.ourvision .content {
  padding: 10px;
  color: white;
  font-size: 15px;
  line-height: 26px;
}

.bannersarea {
  background-color: var(--second-color);
  color: #fff;
  padding: 5px;
  font-size: 23px;
  text-align: center;
}

.bannerpage {
  margin-bottom: 15px;
}
.bannerpage img {
  width: 100%;
  height: auto;
}

/* ══ عنوان القسم الموحّد — الشريط الذهبي ══ */
.title-partners {
  background-color: var(--main-color);
  color: #fff;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  border-radius: 4px;
}
.title-partners i { font-size: 16px; opacity: .9; }

/* ══ زر "عرض المزيد" في أسفل القسم ══ */
.section-more-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;    /* يسار الشاشة في RTL */
}
.section-more-wrap .section-more-btn { margin: 0; }

.swiper-partners {
  margin: 20px 0;
}
.swiper-partners .card-partners img {
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
@media (max-width: 767.98px) {
  .swiper-partners .card-partners img {
    width: 50.5px;
  }
}
.swiper-partners .swiper-button-prev,
.swiper-partners .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--second-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #fff;
  opacity: 0.5;
  transition: 300ms;
}
.swiper-partners .swiper-button-prev::after,
.swiper-partners .swiper-button-next::after {
  font-size: 18px !important;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .swiper-partners .swiper-button-prev,
  .swiper-partners .swiper-button-next {
    display: none;
  }
}
.swiper-partners .swiper-button-prev:hover,
.swiper-partners .swiper-button-next:hover {
  opacity: 1;
}
.swiper-partners .swiper-button-prev {
  inset-inline-start: 1rem !important;
}
.swiper-partners .swiper-button-prev::after {
  content: "\f054";
  font-family: "FontAwesome";
}
.swiper-partners .swiper-button-next {
  inset-inline-end: 1rem !important;
}
.swiper-partners .swiper-button-next::after {
  content: "\f053";
  font-family: "FontAwesome";
}

.swiper-album {
  margin: 20px 0;
}
.swiper-album .card-album img {
  width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 120px;
}
.swiper-album .swiper-button-prev,
.swiper-album .swiper-button-next {
  background-color: var(--main-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  color: #fff;
  opacity: 0.5;
  transition: 300ms;
}
.swiper-album .swiper-button-prev::after,
.swiper-album .swiper-button-next::after {
  font-size: 18px !important;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .swiper-album .swiper-button-prev,
  .swiper-album .swiper-button-next {
    display: none;
  }
}
.swiper-album .swiper-button-prev:hover,
.swiper-album .swiper-button-next:hover {
  opacity: 1;
}
.swiper-album .swiper-button-prev {
  inset-inline-start: 1rem !important;
}
.swiper-album .swiper-button-prev::after {
  content: "\f054";
  font-family: "FontAwesome";
}
.swiper-album .swiper-button-next {
  inset-inline-end: 1rem !important;
}
.swiper-album .swiper-button-next::after {
  content: "\f053";
  font-family: "FontAwesome";
}

.swiper-video {
  margin: 20px 0;
}
.swiper-video .card-video {
  position: relative;
  width: 280px;
  height: 140px;
  transition: 300ms;
  display: block;
}
.swiper-video .card-video img, .swiper-video .card-video iframe {
  border: 2px solid var(--main-color);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.swiper-video .card-video .hover-vid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--second-color), 0.2);
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  transition: 300ms;
}
.swiper-video .card-video .hover-vid:hover {
  background-color: rgba(var(--second-color), 0.3);
}
.swiper-video .card-video .hover-vid:hover svg,
.swiper-video .card-video .hover-vid:hover i {
  color: var(--main-color);
}
@media (max-width: 767.98px) {
  .swiper-video .card-video {
    width: 100%;
  }
}
.swiper-video .swiper-button-prev,
.swiper-video .swiper-button-next {
  background-color: var(--main-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  color: #fff;
  opacity: 0.5;
  transition: 300ms;
}
.swiper-video .swiper-button-prev::after,
.swiper-video .swiper-button-next::after {
  font-size: 18px !important;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .swiper-video .swiper-button-prev,
  .swiper-video .swiper-button-next {
    display: none;
  }
}
.swiper-video .swiper-button-prev:hover,
.swiper-video .swiper-button-next:hover {
  opacity: 1;
}
.swiper-video .swiper-button-prev {
  inset-inline-start: 1rem !important;
}
.swiper-video .swiper-button-prev::after {
  content: "\f054";
  font-family: "FontAwesome";
}
.swiper-video .swiper-button-next {
  inset-inline-end: 1rem !important;
}
.swiper-video .swiper-button-next::after {
  content: "\f053";
  font-family: "FontAwesome";
}

.section-info .box-contact {
  background-color: var(--second-color);
  display: flex;
}
.section-info .box-contact .icon {
  width: 25%;
  line-height: 125px;
  text-align: center;
  display: block;
  font-size: 60px;
  color: #fff;
  background-color: var(--main-color);
  height: 125px;
}
.section-info .box-contact .desc .title {
  font-size: 19px;
  margin-bottom: 3px;
  display: block;
}
.section-info .box-contact .desc {
  padding: 20px;
  color: #fff;
  font-size: 14px;
}

.category-holder {
  padding: 20px 30px;
}
.category-holder .box-category {
  background-color: #fff;
  box-shadow: 1px 1px 3px #ddd;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.category-holder .box-category .img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.category-holder .box-category .content {
  width: 100%;
}
.category-holder .box-category .content .btn-file {
  color: var(--main-color);
  transition: 300ms;
}
.category-holder .box-category .content .btn-file:hover {
  color: #484646;
}

.bank-item .title {
  background-color: var(--main-color);
  color: #ffffff;
  font-size: 18px;
  padding: 8px 0;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.bank-item .imgthumb {
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  padding: 20px;
  text-align: center;
}
.bank-item .imgthumb img {
  max-width: 100%;
  transition: all 0.2s ease-in-out;
}
.bank-item .content {
  background-color: #eeeeee;
  padding: 5px 0;
}
.bank-item .content span {
  background-color: #eeeeee;
  color: #000000;
  display: block;
  font-size: 15px;
  line-height: 1.4;
  padding: 10px;
}
.bank-item .content span:nth-child(2n) {
  background-color: #e4e4e4;
}
.bank-item:hover .title {
  background-color: #11d861;
}
.bank-item:hover .imgthumb img {
  transform: scale(1.1);
}

.card-donate {
  box-shadow: rgba(78, 78, 78, 0.1) 0px 2px 15px 0px;
  border: 0;
  border-radius: 20px;
}
.card-donate .title {
  padding: 16px 16px 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 0;
}
.card-donate .img img {
  border-radius: 20px 20px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.4/1;
}
.card-donate .text {
  line-height: 24px;
}

.modal-shere .modal-content {
  padding: 16px 24px;
  border-radius: 15px !important;
}
.modal-shere .modal-content .img {
  width: 113px;
  max-width: 100%;
  height: auto;
}
.modal-shere .modal-content .text-shere-modal {
  font-weight: bold;
  color: var(--main-color);
  font-size: 14px;
  text-align: center;
  margin-bottom: 9px;
}
.modal-shere .modal-content .link-label {
  gap: 0.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--second-color);
  margin-bottom: 16px;
}
.modal-shere .modal-content .share-link {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 2px solid #d9d9d9;
  border-radius: 50px;
}
.modal-shere .modal-content .share-link input {
  border: none;
  color: #8d8d8d;
  flex: 1;
  font-size: 14px;
  height: 10%;
  margin: 0 5px;
  outline: none;
}
.modal-shere .modal-content .share-link .main-btn {
  border-radius: 30px;
}

.progress-bar {
  background: #f2f2f2;
  border-radius: 7px;
  height: 32px;
  width: 100%;
  overflow: hidden;
}
.progress-bar .progress {
  height: 100%;
  width: 0%;
  border-radius: 7px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0 4px;
  font-size: 16px;
}

.box-service {
  padding: 20px;
  background: linear-gradient(0deg, #5e400f 0%, var(--main-color) 100%);
  width: 100%;
  display: block;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-right: 20px solid var(--main-color);
  border-radius: 12px;
}
.box-service svg, .box-service i {
  font-size: 42px;
  color: #fff;
}
.box-service .title {
  font-size: 21px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .box-service svg, .box-service i {
    font-size: 42px;
  }
  .box-service .title {
    font-size: 18px;
  }
}

.box-donate-auther {
  border-radius: 10px;
  background-color: rgba(var(--main-color), 0.3);
}
.box-donate-auther label {
  color: var(--main-color);
}

.card-info-data {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  border-radius: 15px;
}
.card-info-data .icon {
  border-radius: 50%;
  box-shadow: -5px 10px 20px rgba(31, 31, 31, 0.15);
}

.main-select {
  border-radius: 4px;
  padding: 0.2rem;
  font-size: 13px;
  transition: 300ms;
  border: 1px solid #ddd;
}
.main-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: none;
}

.footer {
  background-color: var(--second-color);
  color: white;
  margin-top: auto;
  font-size: 16px;
  font-weight: 400;
}
.footer .footer-top {
  padding: 40px 0 20px;
}
.footer .footer-top .info .logo {
  margin-bottom: 26px;
  width: 187px;
  height: auto;
}
@media (max-width: 767.98px) {
  .footer .footer-top .info .logo {
    width: 100px;
  }
}
.footer .footer-top .info .text {
  font-size: 12px;
  font-weight: 500;
  max-width: 356px;
  line-height: 26px;
}
.footer .footer-top .items {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer .footer-top .items .title {
  margin-bottom: 1px;
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
}
.footer .footer-top .items .item {
  white-space: nowrap;
  color: white;
  line-height: normal;
  font-size: 14px;
  font-weight: 400;
}
.footer .footer-top .box-email .text {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  max-width: 306px;
  margin-bottom: 21px;
}
.footer .footer-top .box-email .parent-inp {
  width: 306px;
  margin-bottom: 35px;
  max-width: 100%;
  display: flex;
  align-items: stretch;
}
.footer .footer-top .box-email .parent-inp .inp {
  border: 0;
  padding: 9px 20px;
  border-radius: 0 10px 10px 0;
  flex: 1;
  font-weight: 400;
  font-size: 16px;
  color: #b8b8b8;
}
.footer .footer-top .box-email .parent-inp .inp::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #b8b8b8;
}
.footer .footer-top .box-email .parent-inp .inp::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #b8b8b8;
}
.footer .footer-top .box-email .parent-inp .btn-sub {
  font-weight: 400;
  font-size: 16px;
  padding: 10px 17px;
  background: rgba(67, 67, 67, 0.5);
  border-radius: 10px 0px 0px 10px;
  color: white;
}
.footer .footer-top .box-email .social {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer .footer-top .box-email .social i,
.footer .footer-top .box-email .social svg {
  font-size: 27px;
  color: white;
}
.footer .bar {
  height: 0.5px;
  width: 100%;
  background-color: rgb(255, 255, 255);
}
.footer .footer-bottom {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding: 10px 0 11px;
}
.footer .social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer .social a {
  color: var(--main-color);
  width: 24px;
  height: 24px;
  background-color: #fff;
  transition: 300ms;
  padding: 3px;
  border-radius: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .social a:hover {
  color: #fff;
  background-color: var(--main-color);
}
.footer .logo-holder {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 3px;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
}
.footer .logo-holder:hover {
  text-decoration: underline;
}
.footer .logo-holder .logo {
  width: 32px;
  height: auto;
}

/********************* start section-about **********************/
.section-about .about-content {
  font-size: 15px;
  line-height: 2;
  color: #333;
}
.section-about .about-info__box {
  background: #f9f9f9;
  border-right: 4px solid var(--main-color);
  padding: 16px;
  border-radius: 6px;
}
.section-about .about-info__icon {
  font-size: 28px;
  color: var(--main-color);
  margin-bottom: 8px;
}
.section-about .about-info__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--main-color);
}
.section-about .about-info__text {
  font-size: 14px;
  color: #555;
  margin: 0;
}
.section-about .contact_way .box-content {
  text-align: center;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}
.section-about .contact_way .box-content .icon_holder {
  margin: 0 auto 12px;
}
.section-about .contact_way .box-content .icon_holder > i {
  font-size: 40px;
  color: var(--main-color);
}
.section-about .contact_way .box-content p {
  font-size: 15px;
  color: #444;
  margin: 0;
}
/********************* end section-about **********************/

/*# sourceMappingURL=main.css.map */

/* ==================== Hero Section ==================== */
.hero-section {
  width: 100%;
  direction: rtl;
  padding: 14px 0 0;
  background: transparent;
}

.hero-section__inner {
  display: flex;
  flex-direction: row;
  gap: 6px;                    /* فراغ بين العمودين */
  height: 460px;               /* ارتفاع كافٍ لظهور الصور */
  border-radius: 10px;
  overflow: hidden;
}

/* ── العمود الرئيسي (62%) ── */
.hero-col--main {
  width: 62%;
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 8px;
}

/* ── العمود الجانبي (38%) ── */
.hero-col--small {
  width: 38%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 6px;
}
.hero-small-slot {
  width: 100%;
  flex: 1;                     /* يقسم الارتفاع بالتساوي */
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* لا نحتاج border بعد ما عندنا gap */
.hero-small-slot + .hero-small-slot { border-top: none; }

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .hero-section__inner { height: 380px; }
}
@media (max-width: 767.98px) {
  .hero-section__inner {
    height: auto;
    flex-direction: column;
    gap: 4px;
  }
  .hero-col--main  { width: 100%; height: 240px; }
  .hero-col--small { width: 100%; height: 180px; flex-direction: row; gap: 4px; }
  .hero-small-slot { height: 100%; flex: 1; }
}

/* ── Swiper يملأ الـ parent بالكامل ── */
.hero-swiper-main,
.hero-swiper-top,
.hero-swiper-bottom {
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;   /* يملأ .hero-col و .hero-small-slot */
  inset: 0;
}
.hero-col--main    { position: relative; }  /* تأكيد لـ absolute positioning */
.hero-small-slot   { position: relative; }

.hero-swiper-main .swiper-wrapper,
.hero-swiper-top  .swiper-wrapper,
.hero-swiper-bottom .swiper-wrapper { height: 100%; }

.hero-swiper-main .swiper-slide,
.hero-swiper-top  .swiper-slide,
.hero-swiper-bottom .swiper-slide  { height: 100%; }

/* ── Card — bg-image approach (most reliable for cover) ─── */
.hero-card {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}
.hero-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.55s ease;
}
.hero-card:hover .hero-card__bg { transform: scale(1.04); }

/* ── Gradient overlay ─── */
.hero-card__overlay {
  position: absolute;
  inset: 0;
  top: auto;               /* only bottom half */
  background: linear-gradient(to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.30) 55%,
    transparent 100%);
  padding: 16px 18px 18px;
  z-index: 2;
}
.hero-card__overlay--main { padding: 24px 28px 26px; }

/* ── Text ─── */
.hero-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 7px;
  color: #fff;
  text-shadow: 0 1px 5px rgba(0,0,0,0.8);
}
.hero-card__title--main {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.hero-card__subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 10px;
  line-height: 1.5;
}

/* ── Author badge ─── */
.hero-card__author {
  display: inline-block;
  background: var(--second-color, #c9982a);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
}
.hero-card__author--main { font-size: 14px; padding: 5px 18px; }

/* ── Dots ─── */
.hero-dots.swiper-pagination {
  bottom: 12px;
  z-index: 10;
}
.hero-dots .swiper-pagination-bullet {
  width: 9px; height: 9px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  transition: all 0.3s;
}
.hero-dots .swiper-pagination-bullet-active {
  background: var(--second-color, #c9982a);
  width: 24px;
  border-radius: 5px;
}

/* ── Arrows ─── */
.hero-swiper-main .swiper-button-prev,
.hero-swiper-main .swiper-button-next {
  width: 38px !important;
  height: 38px !important;
  background: rgba(0,0,0,0.42);
  border-radius: 50%;
  top: 50%;
  margin-top: -19px;
  transition: background 0.25s;
  z-index: 10;
}
.hero-swiper-main .swiper-button-prev:hover,
.hero-swiper-main .swiper-button-next:hover {
  background: var(--second-color, #c9982a);
}
.hero-swiper-main .swiper-button-prev::after,
.hero-swiper-main .swiper-button-next::after {
  font-size: 15px !important;
  color: #fff;
  font-weight: 900;
}
/* RTL page: next = visually right, prev = visually left */
.hero-swiper-main .swiper-button-next { right: 14px; left: auto; }
.hero-swiper-main .swiper-button-prev { left: 14px;  right: auto; }

/* ── Responsive ─── */
@media (max-width: 991px) {
  .hero-section__inner { height: 380px; }
  .hero-col--main  { height: 380px; width: 58%; }
  .hero-col--small { height: 380px; width: 42%; }
  .hero-small-slot { height: 190px; }
  .hero-card__title--main { font-size: 18px; }
}
@media (max-width: 767px) {
  .hero-section__inner { flex-direction: column; height: auto; }
  .hero-col--main  { width: 100%; height: 260px; }
  .hero-col--small { width: 100%; height: 180px; flex-direction: row; }
  .hero-small-slot { height: 180px; width: 50%; }
  .hero-small-slot + .hero-small-slot { border-top: none; border-right: 2px solid rgba(0,0,0,0.12); }
}

/* ==================== Hero Ticker ==================== */
.hero-ticker {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
  height: 38px;
}
.hero-ticker--top {
  border-top: 2px solid var(--main-color);
}
.hero-ticker--bottom {
  border-top: 2px solid var(--second-color);
  margin-top: 2px;
}
.hero-ticker__label {
  flex-shrink: 0;
  background: var(--main-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hero-ticker--bottom .hero-ticker__label {
  background: var(--second-color);
}
.hero-ticker__track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.hero-ticker__inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
.hero-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 30px;
  font-size: 13px;
  color: #333;
}
.hero-ticker__item i {
  color: var(--main-color);
  font-size: 8px;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ==================== End Hero ==================== */

/* ==================== Article Detail ==================== */
.landing-section--sm { height: 80px; }

.article-detail-section { background: transparent; }

.article-breadcrumb .breadcrumb { font-size: 13px; }
.article-breadcrumb .breadcrumb-item a { color: var(--main-color); text-decoration: none; }
.article-breadcrumb .breadcrumb-item.active { color: #666; }

.article-card-detail {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}

.article-cat-badge {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 3px;
}

.article-meta { flex-wrap: wrap; }
.article-date, .article-views { font-size: 12px; }

.article-detail-title {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
}

.article-detail-subtitle {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  border-right: 3px solid var(--main-color);
  padding-right: 12px;
  background: #f9f9f9;
  padding: 10px 14px;
  border-radius: 4px;
}

/* Share bar */
.article-share-bar { flex-wrap: wrap; }
.share-label { font-size: 13px; color: #555; font-weight: 600; }
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.share-btn:hover { opacity: .85; color: #fff; }
.share-btn--fb  { background: #1877f2; }
.share-btn--x   { background: #000; }
.share-btn--wa  { background: #25d366; }
.share-btn--tg  { background: #0088cc; }
.share-btn--li  { background: #0077b5; }
.share-btn--print { background: #6c757d; }

.article-share-bar--bottom { border-top: 1px solid #eee; }

/* Main image */
.article-main-image img {
  border-radius: 6px;
  max-height: 460px;
  object-fit: cover;
  width: 100%;
}

/* Author */
.article-author {
  background: #f8f8f8;
  border-radius: 6px;
  padding: 14px;
}
.article-author-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--main-color);
}
.article-author-img--placeholder {
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #999;
}
.article-author-name { font-weight: 700; font-size: 15px; color: #222; }
.article-author-title { font-size: 13px; color: #777; margin-top: 2px; }

/* Body content */
.article-body {
  font-size: 16px;
  line-height: 1.85;
  color: #333;
}
.article-body img { max-width: 100%; height: auto; border-radius: 4px; }
.article-body p { margin-bottom: 1rem; }

/* ══════════════════════════════════════════════════════
   كتب وإصدارات — بطاقة تفاصيل الكتاب + زر تحميل PDF
══════════════════════════════════════════════════════ */
.book-detail-card {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-right: 4px solid var(--main-color);
  border-radius: 8px;
}
.book-cover-wrap { width: 140px; }
.book-cover-img  { width: 140px; height: 195px; object-fit: cover; border-radius: 6px; }
.book-detail-info { font-size: 14px; color: #444; gap: 8px; }
.book-meta-item { line-height: 1.6; }

.btn-download-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--main-color);
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
  border: none;
}
.btn-download-pdf:hover {
  background: var(--second-color);
  transform: translateY(-1px);
}

/* بحوث — شريط PDF */
.research-pdf-banner {
  background: #fff8f8;
  border: 1px solid #f5c6c6;
  border-radius: 8px;
}

/* Tags */
.article-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.tags-label { font-size: 13px; color: #555; font-weight: 600; }
.article-tag {
  display: inline-block;
  background: #f0f0f0;
  border: 1px solid #ddd;
  color: #444;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  transition: background .2s;
}
.article-tag:hover { background: var(--main-color); color: #fff; border-color: var(--main-color); }

/* Permalink */
.permalink-label { font-size: 13px; font-weight: 600; color: #555; display: block; margin-bottom: 4px; }

/* Comments */
.section-heading {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  border-right: 3px solid var(--main-color);
  padding-right: 10px;
}
.article-comments { background: #fff; border-radius: 6px; padding: 24px; box-shadow: 0 1px 6px rgba(0,0,0,.07); }
.comment-item {
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 0;
}
.comment-item:last-child { border-bottom: none; }
.comment-name { font-weight: 600; font-size: 14px; color: #333; }
.comment-date { font-size: 12px; }
.comment-body { font-size: 14px; color: #555; line-height: 1.6; margin-top: 6px; }
.comment-form { border-top: 2px solid #f0f0f0; padding-top: 20px; }

/* ── Sidebar ── */
.sidebar-widget {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}
.sidebar-widget-title {
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
}
.sidebar-article-list { list-style: none; padding: 0; margin: 0; }
.sidebar-article-item {
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 12px;
}
.sidebar-article-item:last-child { border-bottom: none; }
.sidebar-article-item a { text-decoration: none; color: inherit; display: flex; gap: 10px; align-items: flex-start; }
.sidebar-article-item a:hover .sidebar-article-title { color: var(--main-color); }
.sidebar-thumb {
  width: 64px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.sidebar-article-info { display: flex; flex-direction: column; gap: 4px; }
.sidebar-article-title { font-size: 13px; line-height: 1.5; color: #333; font-weight: 500; }
.sidebar-article-date { font-size: 11px; }

.sidebar-banner img { display: block; }
.sidebar-banner-placeholder {
  background: #e8e8e8;
  height: 160px;
  color: #aaa;
  font-size: 14px;
}
/* ==================== End Article Detail ==================== */

/* ==================== Opinion Cards (مقالات) ==================== */
.opinion-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.opinion-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.14);
  transform: translateY(-3px);
  color: inherit;
}
.opinion-card__img-wrap {
  width: 100%;
  height: 185px;
  overflow: hidden;
}
.opinion-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.opinion-card:hover .opinion-card__img { transform: scale(1.05); }

.opinion-card__author {
  background: var(--main-color);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.opinion-card__author-title {
  font-weight: 400;
  opacity: .85;
  font-size: 11px;
}

.opinion-card__body {
  padding: 12px 14px 6px;
  flex: 1;
}
.opinion-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0 0 6px;
}
.opinion-card__subtitle {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.opinion-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 12px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}
.opinion-card__date { font-size: 11px; color: #999; }
.opinion-read-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--main-color);
}
/* ==================== End Opinion Cards ==================== */

/* ==================== Articles Index Page ==================== */
.articles-page-section { background: #f7f7f7; min-height: 60vh; }

/* Search */
.articles-search-form .form-control {
  border-color: #ddd;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  height: 42px;
}
.articles-search-btn {
  background: var(--main-color);
  color: #fff;
  border-radius: 0 6px 6px 0;
  padding: 0 18px;
  border: none;
}
.articles-search-btn:hover { background: var(--second-color); color: #fff; }

/* Tabs */
.articles-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.articles-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 25px;
  border: 2px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #555;
  transition: all .2s;
}
.articles-tab:hover { border-color: var(--main-color); color: var(--main-color); }
.articles-tab.active { background: var(--main-color); border-color: var(--main-color); color: #fff; }
.articles-tab-count {
  background: rgba(0,0,0,.12);
  border-radius: 10px;
  padding: 1px 8px;
  font-size: 11px;
}
.articles-tab.active .articles-tab-count { background: rgba(255,255,255,.25); color: #fff; }

/* Section heading */
.articles-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: #222;
  border-right: 4px solid var(--main-color);
  padding-right: 12px;
}
.articles-section-header i { color: var(--main-color); }

/* News card */
.news-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.news-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.14); transform: translateY(-3px); color: inherit; }

.news-card__img-wrap { position: relative; width: 100%; height: 185px; overflow: hidden; }
.news-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-card__img { transform: scale(1.05); }
.news-card__cat {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--main-color);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 4px;
}

.news-card__body { padding: 12px 14px 0; flex: 1; display: flex; flex-direction: column; }
.news-card__title { font-size: 14px; font-weight: 700; line-height: 1.55; color: #1a1a1a; margin: 0 0 6px; }
.news-card__sub { font-size: 12px; color: #666; line-height: 1.5; margin: 0; flex: 1; }

.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 12px;
  margin-top: 8px;
  border-top: 1px solid #f0f0f0;
}
.news-card__date, .news-card__views { font-size: 11px; color: #999; }
/* Pagination styling */
.articles-pagination .pagination {
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.articles-pagination .page-link {
  border-radius: 6px !important;
  border: 2px solid #e0e0e0;
  color: var(--main-color);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 14px;
  transition: all .2s;
  min-width: 40px;
  text-align: center;
}
.articles-pagination .page-link:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
.articles-pagination .page-item.active .page-link {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
.articles-pagination .page-item.disabled .page-link {
  color: #ccc;
  border-color: #eee;
  background: #fafafa;
}
/* ══════════════════════════════════════════════════════
   HOME — Section Header (عنوان القسم + زر عرض المزيد)
══════════════════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 8px;
}
.section-header .box-title { margin-bottom: 0; }
.section-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border: 2px solid var(--main-color);
  border-radius: 20px;
  color: var(--main-color);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 200ms;
  white-space: nowrap;
}
.section-more-btn:hover {
  background: var(--main-color);
  color: #fff;
}
.section-more-btn i { font-size: 11px; }

/* ══════════════════════════════════════════════════════
   HOME — بطاقات البحوث والدراسات
══════════════════════════════════════════════════════ */
.research-home-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
  border-top: 3px solid transparent;
}
.research-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
  border-top-color: var(--main-color);
  color: inherit;
}
.research-home-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.research-home-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e8f4f8 0%, #d1ecf1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #0c5460;
  opacity: .5;
}
.research-home-card__body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.research-home-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.research-home-card__subtitle {
  font-size: 12px;
  color: #666;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.research-home-card__footer {
  padding: 8px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #f0f0f0;
}
.research-home-card__author { font-size: 12px; color: #555; }
.research-home-card__date   { font-size: 11px; color: #999; }
.research-pdf-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid #f5c6c6;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
}

/* ══════════════════════════════════════════════════════
   HOME — سلايدر الكتب والإصدارات
══════════════════════════════════════════════════════ */
.swiper-books { overflow: hidden; }
.book-slide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform .2s;
}
.book-slide-card:hover { transform: translateY(-4px); color: inherit; }

.book-slide-card__cover {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 3px 4px 14px rgba(0,0,0,.2);
  transition: box-shadow .2s;
}
.book-slide-card:hover .book-slide-card__cover {
  box-shadow: 5px 8px 22px rgba(0,0,0,.3);
}
.book-slide-card__cover-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 6px;
  background: linear-gradient(160deg, var(--main-color), #a27000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.6);
  box-shadow: 3px 4px 14px rgba(0,0,0,.2);
}
.book-slide-card__info {
  width: 100%;
  padding: 10px 4px 0;
  text-align: center;
}
.book-slide-card__title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.book-slide-card__author {
  font-size: 11px;
  color: #777;
}
.book-slide-card__pdf-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--main-color);
  color: #fff;
  border-radius: 10px;
  font-size: 10px;
  padding: 2px 8px;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════
   HOME — قسم تقدير موقف
══════════════════════════════════════════════════════ */
.estimate-home-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
  border-top: 3px solid transparent;
}
.estimate-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
  border-top-color: #2c5aa0;
  color: inherit;
}
.estimate-home-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.estimate-home-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #3f51b5;
  opacity: .5;
}
.estimate-home-card__body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.estimate-home-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.estimate-home-card__subtitle {
  font-size: 12px;
  color: #666;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.estimate-home-card__footer {
  padding: 8px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #f0f0f0;
}
.estimate-home-card__author { font-size: 12px; color: #555; }
.estimate-home-card__date   { font-size: 11px; color: #999; }
.estimate-pdf-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid #f5c6c6;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
}

/* ══════════════════════════════════════════════════════
   HOME — قسم ملفات خاصة
══════════════════════════════════════════════════════ */
.private-file-home-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
  border-top: 3px solid transparent;
}
.private-file-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
  border-top-color: #6a1b9a;
  color: inherit;
}
.private-file-home-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.private-file-home-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #8e24aa;
  opacity: .5;
}
.private-file-home-card__body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.private-file-home-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.private-file-home-card__subtitle {
  font-size: 12px;
  color: #666;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.private-file-home-card__footer {
  padding: 8px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #f0f0f0;
}
.private-file-home-card__author { font-size: 12px; color: #555; }
.private-file-home-card__date   { font-size: 11px; color: #999; }
.private-file-pdf-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid #f5c6c6;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
}

/* ══════════════════════════════════════════════════════
   HOME — Video section: thumbnail بدل iframe
══════════════════════════════════════════════════════ */
.home-video-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .2s;
}
.home-video-card:hover { transform: translateY(-3px); }
.home-video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}
.home-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s;
}
.home-video-card:hover .home-video-thumb { opacity: .8; }
.home-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-video-play::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
}
.home-video-play i {
  position: relative;
  font-size: 32px;
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}
.home-video-name {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin: 6px 0 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==================== End Articles Index Page ==================== */

/* ══════════════════════════════════════════════════════
   صفحة الفيديو والوسائط
══════════════════════════════════════════════════════ */
.video-section { background: transparent; min-height: 60vh; }

/* تبويبات التصنيف */
.video-cats-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 2px solid #e8e8e8;
  padding-bottom: 12px;
}
.vid-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.vid-cat-tab:hover,
.vid-cat-tab.active {
  background: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}
.vid-cat-count {
  background: rgba(0,0,0,.1);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 11px;
}
.vid-cat-tab.active .vid-cat-count,
.vid-cat-tab:hover .vid-cat-count { background: rgba(255,255,255,.25); }

/* بطاقة الفيديو */
.video-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s, opacity .3s;
}
.video-card:hover .video-thumb { transform: scale(1.04); opacity: .85; }

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.video-play-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  transition: background .2s;
}
.video-play-btn:hover::before { background: rgba(0,0,0,.5); }
.video-play-btn .fa-play {
  position: relative;
  font-size: 36px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  transition: transform .2s;
}
.video-card:hover .video-play-btn .fa-play { transform: scale(1.15); }

.video-card-body { padding: 14px 16px; }
.video-cat-badge {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
}
.video-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card-date { font-size: 12px; }

/* ── Author Articles Section ─────────────────────────────────── */
.author-article-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
  transition: box-shadow .2s, border-color .2s;
}
.author-article-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border-color: var(--main-color);
  color: inherit;
}
.author-article-card__img {
  width: 80px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}
.author-article-card__img--placeholder {
  width: 80px;
  height: 70px;
  border-radius: 8px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 22px;
}
.author-article-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.author-article-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.author-article-card:hover .author-article-card__title {
  color: var(--main-color);
}
