/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}
#hero {
    background: none;
}
.service-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}