
/* Base styles */
body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Efek gradasi halus untuk latar belakang */
.gradient-bg {
    background-image: linear-gradient(120deg, #e0f7fa 0%, #ffffff 100%);
}

/* Step card styles */
.step-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Animasi untuk tombol utama */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-pulse-custom {
    animation: pulse 2s infinite;
}
