Spaces:
Running
Running
File size: 877 Bytes
4bfc3ec ccd67ce 4bfc3ec 7211ec8 4bfc3ec ccd67ce 4bfc3ec 7211ec8 ccd67ce 4bfc3ec ccd67ce 4bfc3ec ccd67ce 4bfc3ec ccd67ce 4bfc3ec | 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 | @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;200;300;400;500;600;700;800;900&display=swap');
body {
font-family: 'Vazirmatn', sans-serif;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #8B5CF6;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #7C3AED;
}
/* Animation for cards */
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
}
/* Pulse animation for CTA */
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
}
}
.pulse-animation {
animation: pulse 2s infinite;
} |