/* Custom animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Custom styles for therapy focus */
.therapy-card {
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.therapy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.play-therapy:hover {
    border-top-color: #6EC1E4;
}

.cyber-therapy:hover {
    border-top-color: #F9A8D4;
}

.epigenetics-therapy:hover {
    border-top-color: #A6E3A1;
}

/* Custom button styles */
.btn-primary {
    background-color: #6EC1E4;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5aa8d1;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #F9A8D4;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f48fc7;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}