.step-card {
    transition: all 0.3s ease-in-out;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

.step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: #ff5722;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


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

.service-card {
    border-radius: 20px;
    overflow: hidden;
}

.service-overlay {
    width: calc(100% - 20px);
    margin-right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 20px 0 0;
}

.service-overlay h4 {
    font-size: 1.5rem;
    color: #fff;
}

.service-overlay p {
    font-size: 1.1rem;
    color: #fff;
}