Rust196/springbok-suds-sparkle
0
1/* Custom styles that complement Tailwind */2@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');3 4body {5 font-family: 'Poppins', sans-serif;6 scroll-behavior: smooth;7}8 9/* Custom scrollbar */10::-webkit-scrollbar {11 width: 8px;12}13 14::-webkit-scrollbar-track {15 background: #f3f4f6;16}17 18::-webkit-scrollbar-thumb {19 background: #1d4ed8;20 border-radius: 4px;21}22 23::-webkit-scrollbar-thumb:hover {24 background: #1e40af;25}26 27/* Animation for service items */28.service-item {29 transition: all 0.3s ease;30 transform: translateY(0);31}32 33.service-item:hover {34 transform: translateY(-5px);35}