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

.bounce-animation {
    animation: bounce 2s infinite;
}

/* Custom styles that extend Tailwind */
.hero-clip-path {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    line-height: 1;
    color: rgba(78, 205, 196, 0.2);
    position: absolute;
    top: -1rem;
    left: -1rem;
    z-index: 0;
}

/* Custom button hover effects */
.btn-hover-effect {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .hero-heading {
        font-size: 2.5rem;
    }
}