/* Custom journey path styling */
.services-journey-container-5292db97 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 0;
}

/* Connecting horizontal line for desktop */
@media (min-width: 1025px) {
    .services-journey-container-5292db97::before {
        content: '';
        position: absolute;
        top: 75px; /* Aligned with the badges */
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #6ec1e4 20%, #6ec1e4 80%, transparent);
        z-index: 1;
    }
}

/* Individual Card */
.service-journey-card-5292db97 {
    position: relative;
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(15, 41, 74, 0.08);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(15, 41, 74, 0.02);
}

.service-journey-card-5292db97:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15, 41, 74, 0.06);
    border-color: #6ec1e4;
}

/* Number badge */
.service-journey-number-5292db97 {
    width: 64px;
    height: 64px;
    background-color: #0f294a;
    border: 2px solid #c5a059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 20px;
    font-weight: bold;
    color: #6ec1e4;
    box-shadow: 0 4px 10px rgba(15, 41, 74, 0.15);
}

/* Title & Text */
.service-journey-title-5292db97 {
    font-family: 'Cairo', sans-serif;
    color: #0f294a;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-journey-desc-5292db97 {
    font-family: 'Cairo', sans-serif;
    color: #6c7a89;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-journey-link-5292db97 {
    font-family: 'Cairo', sans-serif;
    color: #6ec1e4;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.service-journey-link-5292db97:hover {
    color: #0f294a;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .services-journey-container-5292db97 {
        flex-wrap: wrap;
        gap: 20px;
    }
    .service-journey-card-5292db97 {
        flex: 1 1 calc(50% - 20px);
        min-width: 250px;
    }
}

@media (max-width: 767px) {
    .service-journey-card-5292db97 {
        flex: 1 1 100%;
    }
}
