/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Smooth Scroll for whole page */
html {
    scroll-behavior: smooth;
}

/* Custom dashed line for process section (if Tailwind arbitrary values get too messy) */
.process-line-dashed {
    background-image: linear-gradient(to right, #4FAFDA 50%, transparent 50%);
    background-size: 20px 2px;
    background-repeat: repeat-x;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}