body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff 
  color: #1f2937; /* Equivalent to Tailwind's gray-800 */
  scroll-behavior: smooth;
}

.hero-video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.highlights-horizontal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.highlights-horizontal .flex.items-center {
  background-color: #f1f5f9; /* Tailwind slate-100 */
  padding: 1rem;
  border-radius: 0.5rem;
  transition: box-shadow 0.3s ease;
  max-width: 320px;
  flex: 1 1 auto;
}

.highlights-horizontal .flex.items-center:hover {
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.15);
}

.mobile-link {
  @apply text-gray-700 hover:bg-sky-50 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium transition-colors;
}

#heroVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 24, 39, 0.5); /* Tailwind gray-900 with 50% opacity */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.feature-card,
.knowledge-card,
.step-card,
.highlight-item {
  background-color: #ffffff; /* Updated card background */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.knowledge-card:hover,
.step-card:hover,
.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.15);
}

.neon-highlight-blue {
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.3), 0 0 20px rgba(59, 130, 246, 0.2);
}

.glassmorphism {
  background: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #ffffff;
}

.scroll-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f0f9ff;
}

::-webkit-scrollbar-thumb {
  background: #60a5fa;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3b82f6;
}

.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
              0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

/* Modal Styles */
.modal {
  transition: opacity 0.25s ease;
}

.modal-active {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-content {
  transition: transform 0.25s ease;
}

.highlights-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}
