Spaces:
Running
Running
File size: 1,152 Bytes
4f91b68 5217984 4f91b68 5217984 4f91b68 5217984 4f91b68 5217984 4f91b68 5217984 4f91b68 5217984 4f91b68 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
@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);
} |