@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&display=swap');

/* Animation */
@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 1s ease-out forwards;
}

/* Custom styles */
.service-card:hover i[data-feather] {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Form input focus */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2) !important;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .service-card {
        margin-bottom: 1.5rem;
    }
}/* CSS Document */

