.slider-wrapper {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  padding: 40px 0;
}

.slider-container {
  display: flex;
  width: calc(340px * 6); /* card width * number of cards */
  animation: slideLeft 20s linear infinite;
}

/* Pause animation on hover */
.slider-container:hover {
  animation-play-state: paused;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-340px * 3)
    ); /* negative (card width * number of unique cards) */
  }
}

.card {
  width: 300px;
  height: 320px;
  margin: 0 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(135deg, #00796b, #009688);
  border-radius: 20px 20px 0 0;
}

.logo-container {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 60px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.university-name {
  margin-top: 25px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

.badge {
  margin-top: 15px;
  padding: 8px 20px;
  background: #e8f5e9;
  color: #00796b;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}
