/* Custom CSS */
.gradient-bg {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
}
.hover-lift {
    transition: transform 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-10px);
}
.testimonial-card {
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
} 