body {
  background-color: #0B0F19;
  color: white;
}

/* Gradient text for the rotating icon in the Process section footer */
.process-icon-gradient {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Custom scrollbar hide for the feature strip */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Style for footer and contact form input fields (Improved) */
.footer-input {
  /* Better contrast, subtle background, and a sharp focus */
  @apply w-full px-5 py-3.5 bg-white/5 border border-white/10 rounded-xl text-base text-white placeholder-slate-500 transition-all duration-300;
  /* Focus state uses the primary color */
  outline: none;
}

.footer-input:focus {
  border-color: #f43f5e;
  /* Rose-500 for clear focus */
  box-shadow: 0 0 0 1px #f43f5e;
}

/* Apply background to the primary form card */
.contact-form-card {
  @apply bg-card p-8 md:p-12 rounded-2xl shadow-2xl shadow-black/30 border border-white/10 transition-all duration-300 group-hover:border-rose-500/50;
}

.logo-art {
  color: rgb(244 63 94);
}

.text-whatsapp {
  color: #25D366;
}

.hover\:bg-whatsapp:hover {
  background-color: #25D366;
  /* WhatsApp green for hover effects */
}

.hover\:bg-whatsapp-dark:hover {
  background-color: #1DA851;
  /* Slightly darker green for hover */
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Variants */
.reveal-fade-down {
  transform: translateY(-40px);
}

.reveal-zoom {
  transform: scale(0.94);
}

/* Delays */
.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}

/* Outline effect for the "Art" word */
.art-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.95);
  text-stroke: 2px rgba(255, 255, 255, 0.95);
  paint-order: stroke fill;
}

/* Ensure proper text rendering on all devices */
@media (max-width: 640px) {
  .art-outline {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.95);
    text-stroke: 1.5px rgba(255, 255, 255, 0.95);
  }
}

/* Improve text rendering */
h1 {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}