:root {
  --primary: #2563eb;
  --secondary: #0f172a;
  --accent: #3b82f6;
  --bg-subtle: #f8fafc;
}

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  height: 70px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.animate-bounce-slow {
  animation: bounce 3s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: -11px;
    background-color: white;
    border: 4px solid #2563eb;
    top: 0;
    border-radius: 50%;
    z-index: 1;
}

@media (min-width: 768px) {
    .timeline-item::after {
        left: 50%;
        margin-left: -10px;
    }
}

.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px);
    background: #1e293b;
    border-color: #3b82f6;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

.input-focus-effect:focus {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
