@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Custom animation for tracking steps */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tracking-step {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.tracking-step:nth-child(1) { animation-delay: 0.2s; }
.tracking-step:nth-child(2) { animation-delay: 0.4s; }
.tracking-step:nth-child(3) { animation-delay: 0.6s; }
.tracking-step:nth-child(4) { animation-delay: 0.8s; }

/* Custom shadow for cards */
.card-shadow {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem;
    }
}