/* Shree Shivay Hospital - Custom Styles */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.nav-link {
  position: relative;
}

.feature-card, .dept-card, .doctor-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form-input::placeholder {
  color: #94a3b8;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #1a56a8;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0d3b73;
}

/* Fade in animation for sections */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
