/* Custom animations */ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .animate-fade-in { animation: fadeIn 0.6s ease-out forwards; } /* Custom scroll behavior */ html { scroll-behavior: smooth; } /* Hero section image hover effect */ .hero-image { transition: transform 0.3s ease; } .hero-image:hover { transform: translateY(-5px) rotate(1deg); } /* Feature card hover effect */ .feature-card { transition: all 0.3s ease; } .feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); } /* Pricing card hover effect */ .pricing-card:hover { transform: scale(1.03); } /* Testimonial card styling */ .testimonial-card { transition: all 0.3s ease; } .testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); } /* Custom button hover effects */ .btn-primary { transition: all 0.3s ease; } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3); } /* Telegram button animation */ @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } } .fixed.bottom-6.right-6 { animation: pulse 2s infinite; } /* Responsive adjustments */ @media (max-width: 768px) { .hero-content { text-align: center; } .hero-buttons { justify-content: center; } .hero-stats { justify-content: center; } }