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

/* Base Styles */
html {
    scroll-behavior: smooth;
}

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

/* Custom Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out forwards;
}

/* Project Card Hover Effect */
.project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

/* Service Card Icon Animation */
.service-card:hover .feather {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
}

.testimonial-slide {
    transition: transform 0.5s ease;
}

.testimonial-dot.active {
    background-color: white;
    width: 1rem;
}

/* Form Input Focus */
input:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}