/* Custom CSS to complement Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Animation for section reveal */
.section-hidden {
    opacity: 0;
    transform: translateY(8rem);
}

.section {
    transition: transform 1s, opacity 1s;
}

/* Custom hover effect for service cards */
.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-img {
    transition: transform 0.5s ease;
}

/* Custom pulse animation for CTA */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #f59e0b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d97706;
}