/* @import "tailwindcss"; */

.hero {
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem;
}

.highlight {
  color: #6d28d9;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to bottom right, #6d28d9, #7c3aed);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.note {
  font-size: 0.9rem;
  color: #6b7280;
  margin-left: 1rem;
}

.languages span {
  display: inline-block;
  margin-right: 0.5rem;
  background: #f5f3ff;
  color: #6d28d9;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  font-weight: 500;
  font-size: 0.85rem;
}

/* Screens */
.screens {
  position: relative;
}
.screens .bg {
  position: absolute;
  inset: -2rem;
  border-radius: 2rem;
  background: linear-gradient(
    to bottom right,
    rgba(167, 139, 250, 0.3),
    rgba(139, 92, 246, 0.1)
  );
  filter: blur(40px);
  z-index: -1;
}
.card {
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}

/* features section style */

#features-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 2rem;
}

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .feature-item {
    display: flex;
    align-items: flex-start; 
    gap: 0.75rem; 
    margin-bottom: 1rem;
  }

  .feature-icon {
    font-size: 1.5rem; 
    flex-shrink: 0; 
  }

  .feature-content strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .feature-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
  }