//slider
/* تنظیمات کلی اسلایدر */
.slider-container {
  width: 80%;
  margin: 50px auto;
  position: relative;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* دکمه‌های قبلی و بعدی */
button {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* تنظیمات تب‌ها */
.tabs {
  display: flex;
  justify-content: space-between; /* فاصله مساوی بین تب‌ها */
  margin-top: 50px;
  gap: 15px; /* فاصله 15px بین تب‌ها */
}

.tab {
  position: relative;
  flex: 1; /* تب‌ها به طور مساوی تقسیم می‌شوند */
  cursor: pointer;
  padding: 0;
  background: none;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.tab img {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
}

.tab .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;

}

.tab.active .overlay {
  opacity: 1;
  background: #b2005578;
  border-radius:20px 2px;
}

/* تغییر رنگ پس‌زمینه تب‌ها در زمان hover */
.tab:hover {
  background-color: #b200555e;
  border-radius:20px 2px;
}

/* افکت فعال برای تب انتخاب‌شده */
.tab.active img {
  opacity: 0.7;
}


