
@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.navbar {
    backdrop-filter: blur(10px);
    background: rgba(17, 24, 39, 0.8);
}

.hero-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

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

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

.process-step {
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: scale(1.05);
}

footer {
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(10px);
}
