@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #3b82f6;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2563eb;
}

/* Animation classes */
.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Button styles */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('http://static.photos/medical/640x360/1');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.button-primary {
  background-color: #3b82f6;
  color: white;
  border: 1px solid #3b82f6;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.25);
  position: relative;
}

.button-primary:hover {
  background-color: #eb2525;
  border-color: #2563eb;
}
.button-secondary {
  background-color: #3b82f6;
  color: white;
  border: 1px solid #3b82f6;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.25);
  position: relative;
}

.button-secondary:hover {
  background-color: #eb2525;
  border-color: #2563eb;
}

.button-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('http://static.photos/medical/640x360/1');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.button > * {
  position: relative;
  z-index: 1;
}
/* Section transitions */
.section-transition {
  transition: all 0.4s ease-out;
}