/* Custom animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

/* Custom styles */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: scale(1.03);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Mobile menu transition */
#mobileMenu {
    transition: all 0.3s ease;
}