/* Custom CSS Styles */
.gradient-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-card {
    transition: all 0.3s ease;
}

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

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.section-divider {
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, #f3f4f6 50%), linear-gradient(to bottom left, transparent 49%, #f3f4f6 50%);
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-position: left, right;
}

/* Note: Tailwind CSS classes defined in the HTML are handled by the Tailwind CDN script */
/* You only need custom CSS rules here */