

.step-box {
    position: relative;
    background: #f8f9fa;
    padding: 20px 15px 15px 15px;
    border-radius: 10px;
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

.step-box:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.step-badge {
    position: absolute;
    top: -12px;
    left: 15px;
    background: #134059;
    color: #fff;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.step-box p {
    margin: 0;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}


.why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

.why-item i {
    color: #134059;
    font-size: 18px;
    margin-top: 3px;
}

.why-item span {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.why-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Contact Box */
.contact-box {
    background: #134059;
    color: #fff;
}

.contact-box i {
    margin-right: 8px;
}

    .book-btn {
    font-size: 15px;
    background-color: #134059;
    padding: 12px 18px;
    display: inline-block;
    transition: 0.3s;
    text-decoration: none;
}

/* Hover */
.book-btn:hover {
    background-color: #0f3448;
    color: #fff;
}

/* Mobile Fix */
@media (max-width: 576px) {
    .book-btn {
        display: block;
        width: 100%;
        font-size: 14px;
        padding: 14px;
    }
}



