hugmeena's picture
رنگ این بخش را متناسب با شخصیت سایت عوض کن
7211ec8 verified
raw
history blame contribute delete
877 Bytes
@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;
}