﻿/* ========== SECTION ========== */
.a-sub-banner-section {
    height: auto;
    overflow: visible;
}

.a-demo-list {
    padding: 40px 0;
}

    .a-demo-list img {
        max-width: 100%;
        height: auto;
    }

.edi-benefits-section {
    background-color: #f4f5f7;
    padding: 60px 20px 70px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

    /* ========== HEADING ========== */
    .edi-benefits-section .section-title {
        text-align: center;
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 50px;
        line-height: 1.3;
    }

        .edi-benefits-section .section-title span {
            color: #1e81c2;
        }

/* ========== GRID ========== */
.edi-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== CARD ========== */
.edi-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

    .edi-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    }

    /* ========== ICON WRAPPER ========== */
    .edi-card .icon-wrapper {
        width: 80px;
        height: 80px;
        background: #f0f2f8;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
        position: relative;
        top: -10px;
    }

        .edi-card .icon-wrapper svg {
            width: 44px;
            height: 44px;
        }

    /* ========== CARD TITLE ========== */
    .edi-card .card-title {
        font-size: 1rem;
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 14px;
        line-height: 1.4;
    }

    /* ========== CARD TEXT ========== */
    .edi-card .card-text {
        font-size: 0.88rem;
        color: #555e6d;
        line-height: 1.75;
        font-weight: 400;
    }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .edi-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .edi-benefits-grid {
        grid-template-columns: 1fr;
    }

    .edi-benefits-section {
        padding: 40px 16px 50px;
    }
}
/* Section 2.1 Csss */
.edi-transactions-section {
    background-color: #0d1b2e;
    padding: 60px 40px;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .edi-transactions-section .section-title {
        text-align: center;
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 6px;
        line-height: 1.3;
    }

.edi-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.edi-subtitle-brand {
    color: #1e81c2;
    font-size: 22px;
    font-weight: 600;
}

/* Top row: 3 cards */
.edi-transactions-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 960px;
    width: 100%;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

    .edi-transactions-row .edi-card {
        background-color: #152238;
        border-radius: 14px;
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: calc(33.33% - 14px);
        min-width: 220px;
        box-shadow: none;
        text-align: center;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .edi-transactions-row .edi-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(230, 57, 41, 0.15);
        }

/* Bottom row: 2 cards centered */
.edi-transactions-row-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 960px;
    width: 100%;
    flex-wrap: wrap;
}

    .edi-transactions-row-bottom .edi-card {
        background-color: #152238;
        border-radius: 14px;
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: calc(50% - 10px);
        min-width: 220px;
        box-shadow: none;
        text-align: center;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .edi-transactions-row-bottom .edi-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(230, 57, 41, 0.15);
        }

.edi-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.edi-tx-icon-box {
    background-color: white;
    border-radius: 10px;
    width: 70px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .edi-tx-icon-box svg {
        width: 26px;
        height: 26px;
        fill: #e63329;
    }

.edi-tx-number {
    color: white;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
}

.edi-tx-label {
    color: #c8d8e8;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .edi-transactions-row .edi-card,
    .edi-transactions-row-bottom .edi-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .edi-transactions-row .edi-card,
    .edi-transactions-row-bottom .edi-card {
        width: 100%;
    }
}


/*First Section CSS*/
.a-sub-banner-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: -80px;
    background-color: #1e81c2;
    width: 100%;
    height: 350px;
}

.a-demo-section-container .a-demo-form textarea {
    padding: 1.8rem 0.9rem;
    height: 211px;
}




.a-service-section {
    padding: 10px 0px;
    margin-top: 55px;
    background-color: #f7f9fb;
}