/* Styles for service_booking.php */
body {
    background-color: #f8f9fa;
}

.service-card {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.service-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.service-card .card-body p {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.progress {
    height: 20px;
    border-radius: 10px;
}

.progress-bar {
    font-size: 14px;
    line-height: 20px;
}

.btn-next {
    background-color: #ff7f00;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
}

.btn-next:hover {
    background-color: #e66e00;
}
