/* Custom styles for Giggle Byte website - professional edition */

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

/* Card hover effects */
.service-card, .project-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover, .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
}

/* Form focus styles - warm orange */
input:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
  border-color: #f97316;
}

/* Navbar shadow on scroll (light theme) */
.navbar-scrolled {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.06), 0 2px 4px -2px rgb(0 0 0 / 0.06);
  background-color: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px);
}

/* Mobile menu animation */
#mobile-menu {
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stat counter animation */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* Professional card styling */
.service-card {
  border: 1px solid #e4e4e7;
}

.service-card:hover {
  border-color: #fed7aa;
}
