/* ==========================================================================
   Technology Partners Double Marquee Strip Styles
   ========================================================================== */

.partner-text-strip-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background-color: #fbfcfe;
}

.partner-text-strip-section .sec-title_two {
    margin-bottom: 40px;
}

.partner-text-strip-section .sec-title_two-subtext {
    max-width: 680px;
    margin: 12px auto 0;
    font-size: 15px;
    color: #6c757d;
    line-height: 1.65;
    font-weight: 400;
}

/* Marquee Container & Gradient Masks */
.text-marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.text-marquee-wrapper.strip-offset {
    margin-top: 16px;
}

/* Animation Tracks */
.text-marquee-track {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    white-space: nowrap;
    will-change: transform;
}

.track-left {
    animation: marqueeScrollLeft 38s linear infinite;
}

.track-right {
    animation: marqueeScrollRight 42s linear infinite;
}

.text-marquee-wrapper:hover .text-marquee-track {
    animation-play-state: paused;
}

/* Individual Partner Chips */
.partner-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #1a2238;
    background: #ffffff;
    border: 1px solid rgba(27, 42, 74, 0.12);
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
    cursor: default;
}

.partner-chip:hover {
    color: #3b6bf0;
    border-color: #3b6bf0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 107, 240, 0.14);
}

/* Keyframes */
@keyframes marqueeScrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes marqueeScrollRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .partner-text-strip-section {
        padding: 50px 0;
    }
    
    .partner-chip {
        padding: 9px 18px;
        font-size: 13.5px;
    }
    
    .text-marquee-track {
        gap: 12px;
    }
    
    .track-left {
        animation-duration: 28s;
    }
    
    .track-right {
        animation-duration: 32s;
    }
}



/* ==========================================================================
   Delivery Model / 5-Stage Lifecycle (Clean & Readable)
   ========================================================================== */

.delivery-model-section {
    position: relative;
    padding: 90px 0 80px;
    background-color: #f7faff;
}

.delivery-model-section .sec-title_two {
    margin-bottom: 50px;
}

.delivery-model-section .sec-title_two-subtext {
    max-width: 760px;
    margin: 14px auto 0;
    font-size: 16px;
    color: #556987;
    line-height: 1.7;
}

/* 5-Column Grid Layout for Desktop */
.delivery-flow_wrapper .row {
    row-gap: 24px;
}

@media (min-width: 1200px) {
    .delivery-flow_wrapper .col-xl-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Card Base Style */
.delivery-step_inner {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(59, 107, 240, 0.15);
    border-radius: 16px;
    padding: 36px 24px 32px;
    text-align: left;
    box-shadow: 0 6px 20px rgba(15, 34, 77, 0.04);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
}

/* Step Number Badge */
.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #edf3ff;
    color: #2b5ce6;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

/* Phase Label */
.step-phase {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #7b8fa8;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: color 0.35s ease;
}

/* Step Title */
.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #111b33;
    margin-bottom: 14px;
    transition: color 0.35s ease;
}

/* Step Description */
.step-desc {
    font-size: 15px;
    color: #556987;
    line-height: 1.65;
    margin-bottom: 0;
    transition: color 0.35s ease;
}

/* ==========================================================================
   Hover State: Blue Background & White Text
   ========================================================================== */

.delivery-step_inner:hover {
    background: linear-gradient(145deg, #2b5ce6 0%, #1742c0 100%);
    border-color: #1742c0;
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(27, 66, 192, 0.25);
}

.delivery-step_inner:hover .step-badge {
    background: #ffffff;
    color: #1742c0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.delivery-step_inner:hover .step-phase {
    color: #b5ceff;
}

.delivery-step_inner:hover .step-title {
    color: #ffffff;
}

.delivery-step_inner:hover .step-desc {
    color: #f0f5ff;
}

/* Responsive Handling */
@media (max-width: 991px) {
    .delivery-model-section {
        padding: 65px 0;
    }

    .delivery-step_inner {
        padding: 28px 20px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-desc {
        font-size: 14px;
    }
}












