@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); html { scroll-behavior: smooth; } body { font-family: 'Inter', sans-serif; } .section-title { position: relative; display: inline-block; } .section-title::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 50%; height: 3px; background: #3b82f6; } .service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); } .testimonial-card { transition: all 0.3s ease; } .testimonial-card:hover { transform: scale(1.02); }