/* 
  Custom styles for Aura Care Portfolio Project 
  (Most styling is handled by Tailwind CDN, these are just specifics)
*/

html {
  scroll-behavior: smooth;
}

/* Hide scrollbar for clean aesthetic */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1; 
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; 
}

/* Animations */
.step-container {
  animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateX(20px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}
