/* Custom Styles for AvraVoice Senior Care Page */

html {
    scroll-behavior: smooth;
}

/* Custom Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Form Styles */
input:focus,
select:focus {
    box-shadow: 0 0 0 2px rgba(244, 212, 124, 0.4);
    /* Gold shadow */
}

/* Utility */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}