/* The Animated Path */
.process-row {
    position: relative;
}

/* SVG Path Connector (Hidden on Mobile) */
.path-svg {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
}

/* Card Styling */
.step-container {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.step-card {
    background: #0d6f3e;
    border: none;
    border-radius: 35px;
    padding: 40px 25px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.8);
    text-align: center;
}

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

.icon-wrapper {
    height: 140px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.step-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.step-text {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.6;
}
.step-card button.btn {
    width: 100%;
    background: #FFD700;
    color: #0d6f3e;
    font-weight: 700;
}
.step-card button.btn:hover {
    color: #2f8c3c !important;
}
/* Footer Guarantee Section */
.footer-info {
    margin-top: 100px;
    border-top: 2px solid rgba(26, 77, 58, 0.1);
    padding-top: 30px;
}

.guarantee-box {
    background: white;
    border-radius: 25px;
    padding: 20px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: left;
    position: relative;
}

.badge-logo {
    color: #2e7d32;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.badge-main {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
    font-weight: 700;
    font-size: 1rem;
    margin: 5px 0;
}
.nobullets li{
    margin-left: 0px !important;
}
section.steps-besh {
    margin: 30px 0px 0px;
}
.step-title span {
    display: block;
}
@media (max-width: 991px) {
    .path-svg { display: none; }
    .main-title { font-size: 2rem; }
    .step-title span {
        display: initial;
    }
}