/********** Template CSS **********/
:root {
  --primary: #3CB815;
  --secondary: #F65005;
  --light: #333;
  --dark: #111111;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.bg-icon {
  background: url(../img/bg-icon.png) center center repeat;
  background-size: contain;
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
  transition: .5s;
}

.top-bar {
  height: 45px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  padding: 25px 15px;
  color: #555555;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--dark);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, .07);
    background: #FFFFFF;
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: .5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}


/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
  border-radius: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background: url(../img/carousel-1.jpg) top right no-repeat;
  background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #999999;
}


/*** Section Header ***/
.section-header {
  position: relative;
  padding-top: 25px;
}

.section-header::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
}

.section-header::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 2px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
  left: 0;
  transform: translateX(0);
}



/*** About ***/
.about-img img {
  position: relative;
  z-index: 2;
}

.about-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
  background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
  background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
  background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
  background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
  background-size: 20px 20px;
  transform: skew(20deg);
  z-index: 1;
}


/*** Product ***/
.nav-pills .nav-item .btn {
  color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
  color: #FFFFFF;
}

.product-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item img {
  transition: .5s;
}

.product-item:hover img {
  transform: scale(1.1);
}

.product-item small a:hover {
  color: var(--primary) !important;
}

/*
|--------------------------------------------------------------------------
| أنماط حاوية الصورة (للتوسيط)
|--------------------------------------------------------------------------
*/
/* نحتاج لضبط الحاوية الأبوية للصورة لتمكين التوسيط */
.product-item .position-relative {
  height: 250px;
  /* لضمان وجود مساحة كافية للتوسيط */
  display: flex;
  /* تفعيل flexbox للتوسيط */
  justify-content: center;
  /* توسيط أفقي */
  align-items: center;
  /* توسيط عمودي */
}

/*
|--------------------------------------------------------------------------
| أنماط الصورة نفسها (للحفاظ على نسبة الأبعاد)
|--------------------------------------------------------------------------
*/
.product-item img.product-img-fixed {
  object-fit: contain;
  max-width: 50%;
  max-height: 100%;
  height: 100%;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
  width: 60px;
  height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
  color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 18px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #FFFFFF;
  background: var(--primary);
}


/*** Footer ***/
.footer {
  color: #999999;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #999999;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #999999;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}


/* lang */
/* ===== RTL FIXES ===== */
body[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

/* النافبار تبدأ من اليمين فعليًا */
body[dir="rtl"] .navbar-nav {
  justify-content: flex-start !important;
  text-align: right;
}

/* الشريط العلوي: قلب الترتيب والمسافات */
body[dir="rtl"] .top-bar .text-start {
  text-align: right !important;
}

body[dir="rtl"] .top-bar .text-end {
  text-align: left !important;
}

.top-bar .text-end {}

/* ✅ تنسيق الأيقونات */
.top-bar .text-end a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #3CB815;
  /* أخضر */
  /* color: #555; */
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* ✅ نص "تابعنا" */
.top-bar .text-end small {
  font-weight: 600;
  color: #333;
}

/* ✅ تأثيرات الهوفر لكل شبكة */
.top-bar .text-end a[aria-label="Facebook"]:hover {
  background-color: #3b5998;
  color: #fff;
  border-color: #3b5998;
}

.top-bar .text-end a[aria-label="YouTube"]:hover {
  background-color: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

.top-bar .text-end a[aria-label="LinkedIn"]:hover {
  background-color: #0077b5;
  color: #fff;
  border-color: #0077b5;
}

.top-bar .text-end a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border-color: transparent;
}

/* إصلاح المسافات بين الأيقونات والنصوص */
body[dir="rtl"] i,
body[dir="rtl"] .fa,
body[dir="rtl"] .bi {
  margin-left: 6px;
  margin-right: 0 !important;
}

/* الاتجاه الطبيعي عند الرجوع للإنجليزية */
body[dir="ltr"] {
  direction: ltr;
  text-align: left;
}

body[dir="ltr"] i,
body[dir="ltr"] .fa,
body[dir="ltr"] .bi {
  margin-right: 6px;
  margin-left: 0 !important;
}

/* عند التحويل للعربية: أبعد القائمة عن اللوجو كما في الوضع الإنجليزي */
body[dir="rtl"] .navbar .navbar-nav {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.title,
.heading,
.section-title {
  text-align: center !important;

}

/* ===== Group Companies Section ===== */
.group-section {
  background-color: #07a42b !important;
  transition: all 0.3s ease;

}

.group-section .section-title {
  font-weight: 700;
  color: #1a1a1a;
}

/* ✅ الفقرة التعريفية أسفل العنوان في قسم شركات المجموعة */
.group-section p.text-muted {
  color: #ffffff !important;
  /* يجعل النص أبيض */
  text-align: center;
  /* يبقيه في المنتصف */
  font-size: 1rem;
  opacity: 0.95;
  /* درجة خفيفة للنعومة */
}


/* الشبكة الأساسية */
.group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: center;
  justify-items: center;
}

/* الكارت الخاص بكل شركة */
.group-item {
  background: #fafafa;
  border-radius: 12px;
  padding: 25px 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #000;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* ثبات الأبعاد */
  width: 100%;
  max-width: 240px;
  /* ✅ زودنا العرض قليلاً */
  height: 180px;
  /* ✅ ارتفاع متناسق مع اللوجو */
}

.group-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ✅ اللوجو */
.group-item img {
  display: block;
  margin: 0 auto;
  max-width: 140px;
  /* ✅ أكبر من السابق */
  height: 90px;
  /* ✅ متناسب بصريًا */
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.group-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
  /* تأثير خفيف عند الهوفر */
}

/* ✅ اسم الشركة */
.company-name {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #07a42b;
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;

  /* الاسم لا يتحكم في حجم الكارت */
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* تنسيقات إضافية لضمان الشكل الجديد */
.group-company-item {
  transition: all 0.3s ease;
  border: 1px solid transparent;
  /* لجعل الترانزيشن سلسًا */
}

.group-company-item:hover {
  border-color: rgb(216, 219, 216);
  /* إطار خفيف عند التحويم */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15) !important;
  /* إضافة ظل على التحويم */
}

.company-logo-container img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*
|--------------------------------------------------------------------------
| أنماط بطاقة المنتج (Product Item Card)
|--------------------------------------------------------------------------
| تتضمن هذه الأنماط التنسيق الأساسي، وتأثيرات التفاعل (Hover)، وتحسين الاستجابة.
*/

/* الحاوية الأساسية للمنتج */
.product-item {
  /* المظهر العام */
  background-color: #f8f9fa;
  /* لون خلفية فاتح */
  border-radius: 10px;
  /* حواف مستديرة للبطاقة */
  overflow: hidden;
  /* لإخفاء أي جزء من الصورة قد يتجاوز الحواف المستديرة */

  /* الحركة السلسة لتأثيرات الـ hover */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* تأثير عند تمرير الماوس على البطاقة */
.product-item:hover {
  /* رفع البطاقة للأعلى بمقدار 5 بكسل */
  transform: translateY(-5px);
  /* إضافة ظل لإبراز البطاقة */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* تنسيق صورة المنتج داخل البطاقة */
.product-item img {
  width: 100%;
  /* عرض الصورة يملأ البطاقة بالكامل */
  height: 250px;
  /* ارتفاع ثابت للصورة على الشاشات الكبيرة */
  object-fit: contain;
  /* لتغطية المساحة المحددة دون تشويه الصورة */
  border-radius: 10px 10px 0 0;
  /* حواف مستديرة للزاويتين العلويتين */

  /* حركة سلسة لتأثير تكبير الصورة */
  transition: transform 0.3s ease;
}

/* تأثير عند تمرير الماوس على الصورة (مدمج مع hover على البطاقة) */
.product-item:hover img {
  /* تكبير الصورة بنسبة 5% */
  transform: scale(1.05);
}

/* تنسيق شارة "جديد" أو "ميزة" (قد تستخدم كلاس .bg-secondary من مكتبة ما) */
.product-item .bg-secondary {
  background-color: #0f9347 !important;
  /* لون خلفية أخضر غامق */
  font-size: 0.9rem;
  /* حجم خط أصغر قليلاً */
  border-radius: 20px;
  /* لجعل الشارة مستديرة */
  padding: 4px 12px;
  /* مساحة داخلية حول النص */
}

/*
|--------------------------------------------------------------------------
| أنماط الاستجابة (Media Queries)
|--------------------------------------------------------------------------
| لضبط ارتفاع الصورة ليتناسب مع أحجام الشاشات المختلفة.
*/

/* تحسين التجاوب على الشاشات المتوسطة والصغيرة (مثل الأجهزة اللوحية - عرض 768 بكسل وأقل) */
@media (max-width: 768px) {
  .product-item img {
    height: 200px;
    /* تقليل ارتفاع الصورة لتوفير مساحة */
  }
}

/* تحسين التجاوب على الشاشات الأصغر (مثل الهواتف الذكية - عرض 480 بكسل وأقل) */
@media (max-width: 480px) {
  .product-item img {
    height: 160px;
    /* تقليل ارتفاع الصورة أكثر */
  }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .group-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .group-item {
    max-width: 220px;
    height: 170px;
  }

  .group-item img {
    max-width: 120px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .group-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .group-item {
    max-width: 250px;
    height: 160px;
  }

  .group-item img {
    max-width: 130px;
    height: 80px;
  }
}

/* ===== RTL Support ===== */
body[dir="rtl"] .group-section .company-name {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
}

body[dir="ltr"] .group-section .company-name {
  direction: ltr;
}

/* ===== Brands Section (Card View) ===== */
.brands-section {
  background-color: #f4f6f5;
  transition: all 0.3s ease;
}

.brands-section .section-title {
  font-weight: 700;
  color: #1a1a1a;
}

.brands-section .section-sub {
  color: #555;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* الشبكة */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
  align-items: stretch;
}

/* الكارت */
.brand-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 220px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* اللوجو */
.brand-card img {
  max-width: 120px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: all 0.3s ease;
}

.brand-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* اسم العلامة التجارية */
.brand-name {
  margin-top: 12px;
  color: #07a42b;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .brand-card {
    max-width: 220px;
    height: 160px;
  }

  .brand-card img {
    max-width: 100px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .brands-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .brand-card {
    max-width: 250px;
    height: 150px;
  }
}

/* RTL Support */
body[dir="rtl"] .brand-name {
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

/* ======= FOOTER STYLE ======= */
.footer {
  color: #ccc;
  font-size: 15px;
}

.footer .btn-link {
  display: block;
  padding: 4px 0;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer .btn-link:hover {
  color: #07a42b;
  letter-spacing: 0.5px;
}

.footer .btn-link::before {
  content: "›";
  display: inline-block;
  margin-right: 8px;
  color: #07a42b;
}

.footer h4,
.footer h1 {
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer p,
.footer a {
  color: #ccc;
}

.footer .btn.btn-square {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
}

.footer .btn.btn-square i {
  font-size: 16px;
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  font-size: 14px;
  color: #bbb;
}

/* ===== RTL Support ===== */
body[dir="rtl"] .footer {
  direction: rtl !important;
  text-align: right !important;
}

body[dir="rtl"] .footer .row {
  flex-direction: row-reverse !important;
}

body[dir="rtl"] .footer .btn-link {
  text-align: right !important;
}

body[dir="rtl"] .footer .btn-link::before {
  content: "‹";
  margin-right: 0;
  margin-left: 8px;
}

body[dir="rtl"] .footer i {
  margin-left: 6px !important;
  margin-right: 0 !important;
}

body[dir="rtl"] .footer .copyright .row {
  flex-direction: row-reverse !important;
  text-align: right !important;
}

body[dir="rtl"] .footer .copy-right-text {
  text-align: right !important;
}

body[dir="rtl"] .footer .design-credit {
  text-align: left !important;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

  .footer .col-lg-3,
  .footer .col-md-6 {
    text-align: center !important;
    align-items: center !important;
  }

  .footer .copyright .row {
    flex-direction: column !important;
    text-align: center !important;
  }
}

/* ===== Footer Direction (RTL / LTR) ===== */

/* الاتجاه العام للفوتر */
body[dir="rtl"] .footer {
  direction: rtl !important;
  text-align: right !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* ✅ يجعل الفوتر يبدأ من اليمين */
}

body[dir="ltr"] .footer {
  direction: ltr !important;
  text-align: left !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* ✅ يبدأ من اليسار كالوضع الطبيعي */
}

/* ✅ ترتيب الأعمدة داخل الفوتر */
body[dir="rtl"] .footer .row {
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
}

body[dir="ltr"] .footer .row {
  flex-direction: row !important;
  justify-content: flex-start !important;
}

/* ✅ القوائم تحت العناوين */
.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body[dir="rtl"] .footer .footer-links {
  align-items: flex-end;
  text-align: right;
}

body[dir="ltr"] .footer .footer-links {
  align-items: flex-start;
  text-align: left;
}

/* ✅ الأيقونات الاجتماعية */
.footer .social-links {
  display: flex;
  gap: 8px;
}

body[dir="rtl"] .footer .social-links {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

body[dir="ltr"] .footer .social-links {
  flex-direction: row;
  justify-content: flex-start;
}

/* ✅ الحقوق السفلية */
.footer .copyright .row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
}

body[dir="rtl"] .footer .copyright .row {
  flex-direction: row-reverse;
  text-align: right;
}

.img-fluid {
  width: 80px;
  height: 80px;
}

/*
|--------------------------------------------------------------------------
| تنسيق قسم التصنيفات/الشركات
|--------------------------------------------------------------------------
*/

/* تنسيق حاوية العنوان */
.section-title-container {
  max-width: 600px;
}

/* تنسيق بطاقة التصنيف الرئيسية (category-card-hover) */
.category-card-hover {
  /* تطبيق الأنماط الانتقالية التي كانت مُضمنة في كلاسات Tailwind أو CSS مخصص سابقًا */
  transition: all 0.3s ease-in-out;
}

/* تأثير التفاعل عند تمرير الماوس */
.category-card-hover:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  /* ظل أكبر وأوضح */
  transform: translateY(-5px);
  /* رفع البطاقة للأعلى قليلاً */
}

/* 🖼️ أنماط صورة/شعار التصنيف */
.category-logo {
  /* الأنماط المُلغاة من HTML المضمن */
  width: 150px;
  height: 130px;
  object-fit: fill;
  border: 1px solid #e7e6e6;
  /* إطار خفيف حول الصورة */
}

/* تنسيق النص القصير/الوصف */
.category-description {
  font-size: 0.9rem;
  /* تصغير حجم الخط */
  line-height: 1.4;
}

/*
|--------------------------------------------------------------------------
| تنسيق صورة الهيدر
|--------------------------------------------------------------------------
*/

.page-title {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

@media (max-width: 992px) {
  .page-title {
    min-height: 250px;
  }

  .page-title h1 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .page-title {
    min-height: 200px;
  }

  .page-title h1 {
    font-size: 26px;
  }
}

/*------------------------------*/
/* 2. Overlay لإغلاق القائمة */
/*------------------------------*/
#sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1990;
}

/* لما القائمة تفتح */
html.mobile-sidebar-open #sidebar-overlay {
  display: block;
}

/*------------------------------*/
/* 3. منع اهتزاز الصفحة في الموبايل */
/*------------------------------*/
body {
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

/* ------------------------------ */
/* Fun Facts Section RTL Styling   */
/* ------------------------------ */
.fun-facts-area {
  position: relative;
  padding: 100px 0;
  background-color: #fff3a9;
  overflow: hidden;
  direction: rtl;
  /* لدعم RTL بالكامل */
}

.fun-facts-area .shape-left,
.fun-facts-area .shape-right {
  position: absolute;
  z-index: 1;
}

.fun-facts-area .shape-left {
  top: 0;
  right: 0;
  /* تم عكس المحاذاة للـ RTL */
}

.fun-facts-area .shape-right {
  top: 0;
  left: 0;
  /* تم عكس المحاذاة للـ RTL */
}

.fun-facts-area .fun-fact-style-one {
  position: relative;
  z-index: 2;
  text-align: right;
  /* محاذاة النصوص لليمين */
}

.fun-facts-area .heading .sub-title {
  font-size: 18px;
  font-weight: 600;
  color: #33A33A;
  margin-bottom: 10px;
  display: inline-block;
}

.fun-facts-area .heading .title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.fun-facts-area .fun-fact {
  text-align: center;
  padding: 30px 15px;
  background: #ffffff;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.fun-facts-area .fun-fact:hover {
  transform: translateY(-5px);
}

.fun-facts-area .counter {
  font-size: 36px;
  font-weight: 700;
  color: #33A33A;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  direction: ltr;
  /* الأرقام تبقى من اليسار لليمين */
}

.fun-facts-area .counter .operator {
  font-size: 24px;
  margin-right: 5px;
  /* بدل margin-left للـ RTL */
  color: #555;
}

.fun-facts-area .medium {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  display: block;
  text-align: center;
  /* الرقم والوصف يبقوا متناسقين */
}

@media (max-width: 991px) {
  .fun-facts-area {
    padding: 60px 15px;
    text-align: center;
    /* توسيط المحتوى */
  }

  .fun-facts-area .fun-fact-style-one {
    margin-bottom: 30px;
  }

  .fun-facts-area .fun-fact {
    margin: 0 auto 30px auto;
    /* توسيط الكارد أفقياً */
    max-width: 280px;
    /* الحد الأقصى لعرض الكارد */
  }

  .fun-facts-area .heading .title {
    font-size: 28px;
  }

  .fun-facts-area .counter {
    font-size: 28px;
    justify-content: center;
    /* توسيط الأرقام داخل الكارد */
  }

  .fun-facts-area .counter .operator {
    margin-right: 5px;
  }
}