
.circular-slider {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 50px auto;
  border-radius: 50%;
  animation: rotate 30s linear infinite;
  transform-origin: center;
}
.circular-slider:hover {
  animation-play-state: paused;
}
.card {
  position: absolute;
  width: 160px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  transition: transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.circular-slider:hover .card:hover {
  transform: scale(1.2) !important;
  z-index: 100;
}
.card * {
  transform: rotate(0deg);
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


.circle-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  z-index: 200;
}
.circle-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


.card.status-active {
  background-color: #e0f7e9;
  border-left: 5px solid #2ecc71;
}
.card.status-inactive {
  background-color: #f9eaea;
  border-left: 5px solid #e74c3c;
  opacity: 0.6;
}
.card.status-soon {
  background-color: #fff8e1;
  border-left: 5px solid #f1c40f;
}
.card.status-highlight {
  background-color: #e8f0fe;
  border-left: 5px solid #2980b9;
  box-shadow: 0 0 10px rgba(41,128,185,0.4);
}
