/* Custom CSS if needed beyond Tailwind */
html {
    scroll-behavior: smooth;
}

/* Base custom styles to complement Tailwind */
.bg-gradient-tech {
    background: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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