:root {
    --elima-primary: #1B6CA8;
    --elima-border: #E6EEF5;
    --elima-text: #333333;
    --elima-text-light: #666666;
}

.elima-process-section-ab70a8d9 {
    position: relative;
    padding: 80px 20px;
    background-color: #ffffff;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

.elima-header-ab70a8d9 {
    text-align: left;
    max-width: 800px;
    margin: 0 0 60px 0;
}

.elima-label-ab70a8d9 {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--elima-primary);
    margin-bottom: 20px;
}

.elima-heading-ab70a8d9 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 500;
    color: #111111;
    margin: 0 0 24px;
    line-height: 1.1;
}

.elima-desc-ab70a8d9 {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: var(--elima-text-light);
    line-height: 1.6;
    margin: 0;
}

.elima-journey-container-ab70a8d9 {
    position: relative;
    width: 100%;
    margin: 0;
    display: flex;
}

.elima-journey-row-ab70a8d9 {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 60px; /* Space between cards */
}

/* Staggered Vertical Offsets (Single row) */
.elima-pos-1 { margin-top: -20px; } /* Slightly higher */
.elima-pos-2 { margin-top: 40px; }  /* Slightly lower */
.elima-pos-3 { margin-top: -20px; } /* Slightly higher */
.elima-pos-4 { margin-top: 40px; }  /* Slightly lower */
.elima-pos-5 { margin-top: -20px; } /* Slightly higher */

.elima-card-wrapper-ab70a8d9 {
    position: relative;
    width: 260px; /* Maintained larger width */
    min-height: 280px; /* Prevent overflow */
    flex-shrink: 0;
    z-index: 2;
}

.elima-card-inner-ab70a8d9 {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--elima-border);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.elima-card-wrapper-ab70a8d9:hover .elima-card-inner-ab70a8d9 {
    transform: translateY(-12px);
    border-color: var(--elima-primary);
    box-shadow: 0 20px 40px rgba(27, 108, 168, 0.1);
}

/* Floating Arrow Connectors */
.elima-arrow-connector-ab70a8d9 {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid var(--elima-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(27, 108, 168, 0.15);
    z-index: 1;
    transition: all 0.4s ease;
    color: var(--elima-primary);
}

.elima-arrow-connector-ab70a8d9 svg {
    width: 20px;
    height: 20px;
}

.elima-card-wrapper-ab70a8d9:hover .elima-arrow-connector-ab70a8d9 {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(27, 108, 168, 0.25);
}

/* Horizontal Connector Placement */
.elima-arrow-horizontal-ab70a8d9 {
    top: 50%;
    right: -54px; /* Midpoint of the 60px gap */
    margin-top: -24px;
}

/* Card Internals - PERFECT CIRCLE ICON FIX */
.elima-card-icon-wrap-ab70a8d9 {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--elima-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    box-sizing: border-box; /* Prevent stretching */
}

.elima-card-icon-wrap-ab70a8d9 i, 
.elima-card-icon-wrap-ab70a8d9 svg {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--elima-primary);
    fill: var(--elima-primary);
    transition: all 0.4s ease;
}

.elima-card-wrapper-ab70a8d9:hover .elima-card-icon-wrap-ab70a8d9 {
    background: var(--elima-primary);
    border-color: var(--elima-primary);
}

.elima-card-wrapper-ab70a8d9:hover .elima-card-icon-wrap-ab70a8d9 i,
.elima-card-wrapper-ab70a8d9:hover .elima-card-icon-wrap-ab70a8d9 svg {
    color: #ffffff;
    fill: #ffffff;
}

.elima-card-num-ab70a8d9 {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--elima-text-light);
    margin-bottom: 12px;
}

.elima-card-title-ab70a8d9 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--elima-text);
    margin: 0 0 16px;
    line-height: 1.2;
}

.elima-card-desc-ab70a8d9 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--elima-text-light);
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .elima-journey-row-ab70a8d9 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 60px;
    }
    .elima-card-wrapper-ab70a8d9 {
        margin-top: 0 !important; /* Remove offset on smaller screens */
    }
    .elima-arrow-connector-ab70a8d9 {
        display: none; /* Hide connectors when wrapping */
    }
}

@media (max-width: 767px) {
    .elima-process-section-ab70a8d9 {
        padding: 40px 16px;
    }
    .elima-heading-ab70a8d9 {
        font-size: 26px;
    }
    .elima-desc-ab70a8d9 {
        font-size: 15px;
    }
    .elima-journey-row-ab70a8d9 {
        flex-direction: column;
        align-items: center;
        gap: 20px !important;
    }
    .elima-card-wrapper-ab70a8d9 {
        width: 100%;
        max-width: 320px;
        min-height: auto;
    }
}
