 
.carousel-container {
  width:1000px;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
  
}
@media (max-width: 768px) {
  .carousel-container {
    width: 100%;
  }
}
.track {
  display: flex;
  transition: transform 0.5s ease;
}
.card-container {
  flex: 0 0 45%; /* للشاشات الكبيرة: الصورة الوسط كبيرة */
  margin: 0 ;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.6;
  transform: scale(0.8);
  height: 100%;
}
.card-container.active {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 768px) {
  .card-container {
    flex: 0 0 100%; /* موبايل: صورة واحدة فقط */
    margin: 0;
    transform: scale(1);
    opacity: 1;
  }
}
.card-container img{
  height: 400px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
 
.nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: white;
  cursor: pointer;
}
.nav .prev { left: 10px; }
.nav .next { right: 10px; }
@media (max-width: 768px) {
  .nav button { display: none; } /* إخفاء الأسهم في الموبايل */
}









/**************************/



/* اللون للنقطة النشطة */
.swiper-pagination-bullet-active {
  background: #c50115 /* اللون الذي تريده للنقطة النشطة */
}


