/* Custom Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

/* Dropdown animation */
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
  visibility: visible;
}

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

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

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

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

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

/* Hero Slider */
.hero-slide {
  transition: opacity 1s ease-in-out;
}

.slider-dot {
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8) !important;
}

/* Hero content animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide.opacity-100 .max-w-2xl > * {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-slide.opacity-100 .max-w-2xl > *:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-slide.opacity-100 .max-w-2xl > *:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-slide.opacity-100 .max-w-2xl > *:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-slide.opacity-100 .max-w-2xl > *:nth-child(4) {
  animation-delay: 0.4s;
}

/* FAQ Icon Rotation */
.faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.rotate-180 {
  transform: rotate(180deg);
}