Spaces:
Running
Running
| /* Global Styles */ | |
| body { | |
| scroll-behavior: smooth; | |
| } | |
| /* Custom scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #f1f1f1; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #4f46e5; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #4338ca; | |
| } | |
| /* Animation for stats cards */ | |
| @keyframes countUp { | |
| from { transform: translateY(20px); opacity: 0; } | |
| to { transform: translateY(0); opacity: 1; } | |
| } | |
| .stats-card { | |
| animation: countUp 0.6s ease-out forwards; | |
| } | |
| /* Hover effects for campaign cards */ | |
| .campaign-card:hover .campaign-image { | |
| transform: scale(1.05); | |
| } | |
| .campaign-image { | |
| transition: transform 0.3s ease; | |
| } | |
| /* Pulse animation for CTA buttons */ | |
| @keyframes pulse { | |
| 0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7); } | |
| 70% { box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); } | |
| 100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); } | |
| } | |
| .pulse { | |
| animation: pulse 2s infinite; | |
| } |