/* Scaleasy Custom Styles */

/* Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Animation Utilities */
.animation-delay-2000 {
  animation-delay: 2s;
}
.animation-delay-4000 {
  animation-delay: 4s;
}

/* Height Animation for Accordions */
.h-anim {
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

/* Active Language Switcher */
.active-lang {
  background: linear-gradient(90deg, #0ea5e9, #10b981);
  color: white;
  box-shadow: 0 2px 4px rgba(14, 165, 233, 0.2);
}

/* Glassmorphism Utilities */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Text Gradient Utility */
.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #0ea5e9, #10b981);
}

/* Custom Selection Color */
::selection {
  background-color: rgba(14, 165, 233, 0.2);
  color: #0f172a;
}