/* ===== صفحة الأقسام ===== */

/* خلفية الصفحة */
.categories-page {
  background-color: #fafafa;
  padding: 60px 0;
}

/* كرت القسم */
.category-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

/* عند المرور */
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* صورة القسم */
.category-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* تكبير الصورة عند المرور */
.category-card:hover img {
  transform: scale(1.08);
}

/* محتوى القسم */
.category-card .category-content {
  padding: 22px;
  text-align: center;
}

/* اسم القسم */
.category-card .category-title {
  font-size: 20px;
  font-weight: 600;
  color: #3d3d3d;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* وصف بسيط (إن وجد) */
.category-card .category-description {
  font-size: 14px;
  color: #888;
}

/* إزالة أي إطار افتراضي */
.category-card a {
  text-decoration: none;
}

/* للجوال */
@media (max-width: 768px) {
  .category-card img {
    height: 220px;
  }
}
/* ===== صفحة الأقسام – ستايل ناعم ===== */

.categories-page {
  background-color: #ffffff;
  padding: 70px 0;
}

/* بطاقة القسم */
.category-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* حركة خفيفة جدًا */
.category-card:hover {
  transform: translateY(-3px);
}

/* صورة القسم */
.category-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

/* تكبير بسيط */
.category-card:hover img {
  transform: scale(1.03);
}

/* اسم القسم */
.category-card .category-title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #5a5a5a;
  margin-top: 18px;
  letter-spacing: 1.5px;
}

/* إزالة أي خطوط */
.category-card a {
  text-decoration: none;
}

/* للجوال */
@media (max-width: 768px) {
  .category-card img {
    height: 240px;
  }
}