
/* Custom styles that complement Tailwind */
img.blur-sm {
    filter: blur(2px);
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}

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

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Section spacing */
section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Custom shadow for cards */
.custom-shadow {
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
}

/* Hover effect for service cards */
.service-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Custom gradient for buttons */
.btn-gradient {
    background-image: linear-gradient(to right, #1E40AF, #1E3A8A);
}

.btn-gradient:hover {
    background-image: linear-gradient(to right, #1E3A8A, #1E40AF);
}