.card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #A1C837;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    z-index: 0;
}

body {
    background: #1789AF;
}


.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.step {
    text-align: center;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.step-circle.active {
    background-color: #007bff;
    color: white;
}

.step-circle.completed {
    background-color: #28a745;
    color: white;
}

.line {
    flex-grow: 1;
    height: 2px;
    background-color: #ccc;
}

.line.active {
    background-color: #007bff;
}

.line.completed {
    background-color: #28a745;
}