/* MediCare Plus - Healthcare Template Styles */

html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

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

::-webkit-scrollbar-thumb {
    background: #0077b6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #03045e;
}
