/* LLI Consulting Group Custom Styles */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Smooth transitions for all interactive elements */
button, a {
  transition: all 0.3s ease;
}

/* Video container styling */
.aspect-video {
  aspect-ratio: 16 / 9;
}

/* Custom focus styles for accessibility */
button:focus,
a:focus {
  outline: 2px solid #0F766E;
  outline-offset: 2px;
}

/* Gradient text effect */
.gradient-text {
  background: linear-gradient(135deg, #B91C1C, #0F766E);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card hover effects */
.hover-lift:hover {
  transform: translateY(-2px);
}

/* Animation for video placeholder */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}