/* Marquee animation style */
.marquee-container {
  width: 100%;
  overflow: hidden;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}

.marquee div {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee:hover div {
  animation-play-state: paused;
}

/* Card shadow on hover */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease;
}

/* Button hover effect */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .marquee div {
    animation: marquee 20s linear infinite;
  }
}

@media (max-width: 768px) {
  .marquee div {
    animation: marquee 15s linear infinite;
  }
}

/* Additional responsive adjustments for mobile */
@media (max-width: 576px) {
  h2 {
    font-size: 1.7rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
}
