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

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.9) 0%, rgba(249, 115, 22, 0.7) 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.03);
}

.contact-input {
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}