/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Base styles */
body {
    scroll-behavior: smooth;
}

/* Section animations */
section {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Delay animations for sequential loading */
section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }
section:nth-child(6) { animation-delay: 0.6s; }
section:nth-child(7) { animation-delay: 0.7s; }
section:nth-child(8) { animation-delay: 0.8s; }

/* Custom shadow for cards */
.shadow-custom {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

/* Hover effects */
.hover-grow {
    transition: transform 0.3s ease;
}
.hover-grow:hover {
    transform: scale(1.03);
}

/* Timeline dots for how it works section */
.timeline-dot {
    width: 16px;
    height: 16px;
    border: 3px solid #2563eb;
    border-radius: 50%;
    background: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-dot {
        display: none;
    }
}