* {
  font-family: "Inter", sans-serif;
}

body {
  transition: background-color 0.3s ease;
}
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
* {
  font-family: "Inter", sans-serif;
}
.gradient-bg {
  background: linear-gradient(135deg, #0500ff 0%, #7c3aed 50%, #ec4899 100%);
}
.gradient-text {
  background: linear-gradient(135deg, #0500ff 0%, #7c3aed 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dark .gradient-text {
  background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}
.dot-pattern {
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}
.dark .dot-pattern {
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.2) 1px, transparent 1px);
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dark body {
  background-color: #0a0a0a;
  color: #ffffff;
}

.dark .bg-white {
  background-color: #1a1a1a;
}

.dark .text-gray-800 {
  color: #ffffff;
}

.dark .text-gray-600 {
  color: #a0a0a0;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0500ff, #7c3aed);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-gradient {
  background: linear-gradient(135deg, #0500ff 0%, #7c3aed 100%);
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(5, 0, 255, 0.3);
}

.service-card {
  background: linear-gradient(135deg, rgba(5, 0, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  transform: translateY(-5px);
}

.dark .service-card {
  background: linear-gradient(135deg, rgba(5, 0, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
}

.pricing-card {
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #7c3aed;
  transform: scale(1.02);
}

.pricing-card.popular {
  background: linear-gradient(135deg, #0500ff 0%, #7c3aed 100%);
  color: white;
}

.timeline-dot {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

#darkModeToggle {
  cursor: pointer;
  transition: all 0.3s ease;
}

.loading {
  pointer-events: none;
  opacity: 0.6;
}

.dark nav a {
  color: #d1d5db;
}
.dark nav a:hover {
  color: #60a5fa;
}
.dark footer a {
  color: #c7d2fe;
}
.dark footer a:hover {
  color: #ffffff;
}

.aspect-16-9 {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.aspect-16-9 > iframe,
.aspect-16-9 > img,
.aspect-16-9 > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
