
body {
  background-color: #f0dcbf; /* ده كود الأوف وايت */
  font-family: 'Tajawal', sans-serif;
}



.carousel-track {
  transition: transform 0.6s ease-in-out;
}




.carousel-card {
  position: relative;
  width: 320px;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.6s ease-in-out;
  opacity: 0.7;
  transform: scale(0.85);
  margin: 0 -30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.carousel-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.prev,.next {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
}

.prev:hover,.next:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
 .carousel-card {
    width: 280px;
    height: 340px;
    margin: 0 -30px;
  }
}