/* BinaryKode Technologies - Custom Styles */

/* Fade-in Animation */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Mobile Menu Animation */
#mobile-menu {
  transition: max-height 0.3s ease-in-out;
  max-height: 0;
  overflow: hidden;
}

#mobile-menu.open {
  max-height: 400px;
}

/* Blob Animation for Background */
@keyframes blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #0ea5e9;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0284c7;
}

/* Loading Animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fa-spin {
  animation: spin 1s linear infinite;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

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

/* Dark Mode Overrides */
:root {
  color-scheme: light;
}

.dark {
  color-scheme: dark;
}

.dark body {
  background-color: #0f172a;
  color: #cbd5e1;
}

.dark .bg-white {
  background-color: #0f172a !important;
}

.dark .bg-slate-50 {
  background-color: #0b1524 !important;
}

.dark .bg-slate-100 {
  background-color: #131c2c !important;
}

.dark .bg-slate-200 {
  background-color: #1f2a3a !important;
}

.dark .text-slate-900 {
  color: #f8fafc !important;
}

.dark .text-slate-800 {
  color: #f1f5f9 !important;
}

.dark .text-slate-700 {
  color: #e2e8f0 !important;
}

.dark .text-slate-600 {
  color: #cbd5e1 !important;
}

.dark .text-slate-500,
.dark .text-slate-400 {
  color: #94a3b8 !important;
}

.dark .text-brand-600 {
  color: #38bdf8 !important;
}

.dark .border-slate-200 {
  border-color: #1e293b !important;
}

.dark .border-slate-100 {
  border-color: #131c2c !important;
}

.dark .hover\:bg-slate-50:hover {
  background-color: #1f2a3a !important;
}

.dark .hover\:bg-slate-100:hover {
  background-color: #243049 !important;
}
