body {
min-height: 1024px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.hero-bg {
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}
.hero-bg1 {
background: linear-gradient(135deg, #dde9f4 0%, #e0f2fe 100%);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-4px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.nav-link {
transition: color 0.2s ease;
}
.nav-link:hover {
color: #1E40AF;
}
.table-row:nth-child(even) {
background-color: #f9fafb;
}

.carousel {
  position: relative;
  white-space: nowrap;
  animation: slide 9s infinite linear;
}
.carousel-item {
  display: inline-block;
  width: 100%;
  height: 100%;
}
@keyframes slide {
  0% { transform: translateX(0%); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}