/* 📁 قسم أعمالنا */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* 🖼 الصور داخل الشبكة */
.work-item img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.work-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* 🎯 أزرار الفلترة */
.filter-btn {
  font-weight: bold;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* 🎥 سلايدر الفيديوهات */
.swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
}

.swiper-slide {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}

.swiper-button-next,
.swiper-button-prev {
  color: #0d6efd;
}

.swiper-pagination-bullet {
  background: #0d6efd;
}

/* 🟦 التبويبات */
.nav-tabs .nav-link {
  color: #0d6efd;
  font-weight: bold;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
  border: 1px solid #dee2e6;
}

.nav-tabs .nav-link.active {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd #0d6efd transparent;
}

.tab-content {
  border: 1px solid #dee2e6;
  border-top: none;
  padding: 30px 20px;
  border-radius: 0 0 10px 10px;
  background-color: #f8f9fa;
}

/* 📱 استجابة الهواتف */
@media (max-width: 768px) {
  .works-grid {
    grid-template-columns: 1fr;
  }

  .nav-tabs .nav-link {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
}

/* ✅ تحسين التدرج والخلفيات */
.hero-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}


/* ***********************************   الكل* ********************************** */

/* ✅ عناوين الأقسام الرئيسية */
#allWorks h2 {
  text-align: center;
  font-weight: bold;
  color: #0d6efd;
  font-size: 2rem;
  margin: 60px 0 30px;
  border-bottom: 2px solid #0dcaf0;
  padding-bottom: 10px;
}

/* ✅ عنوان كل خدمة */
.service-section h4 {
  font-size: 1.4rem;
  color: #198754;
  text-align: start;
  margin-bottom: 5px;
}

/* ✅ نوع الخدمة (الوصف تحت العنوان) */
.service-section p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 20px;
  text-align: start;
}

/* ✅ شكل سلايدر الصور */
.swiper {
  width: 100%;
  padding-bottom: 30px;
  position: relative;
}

/* ✅ الصور داخل السلايدر */
.swiper-slide img {
  width: 100%;
  height: 400px; /* يمكن تغييره حسب الحاجة */
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.swiper-slide img:hover {
  transform: scale(1.03);
}

/* ✅ أزرار التنقل */
.swiper-button-next,
.swiper-button-prev {
  color: #0d6efd;
}

/* ✅ glightbox */
.glightbox-clean .gslide-media img {
  max-height: 90vh;
  object-fit: contain;
}

/* ✅ تحسين شكل زر الإغلاق في glightbox */
.glightbox-clean .gclose {
  font-size: 1.5rem;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  border-radius: 5px;
}

/* ✅ تباعد بين الأقسام */
.service-section {
  margin-bottom: 70px;
}

/* ✅ استجابة للموبايل */
@media (max-width: 768px) {
  #allWorks h2 {
    font-size: 1.6rem;
  }

  .swiper-slide img {
    height: 160px;
  }

  .service-section h4 {
    font-size: 1.2rem;
    text-align: center;
  }

  .service-section p {
    text-align: center;
  }
}



/* ***********************************   الكل* ********************************** */



/* ***********************************   الكل* ********************************** */



/* ***********************************   الكل* ********************************** */
