.product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .product {
        line-height: 1.6;
    }

    .product h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .teal {
        color: #44e1be !important;
        font-weight: 900;
    }

    .blue {
        color: #7ab9ff !important;
        font-weight: 900;
    }

    .purple {
        color: #d291ff !important;
        font-weight: 900;
    }

    @media (max-width: 768px) {
        .product-grid {
            grid-template-columns: 1fr;
        }

    }


    .section {
        margin: 0 auto;
        padding: 40px 0px;
    }

    .step-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .step-header .titles {
        max-width: 60%;
    }

    .step-header h4 {
        color: #8C8FA6;
        font-weight: normal;
        margin: 0 0 10px 0;
        font-size: 16px;
    }

    .step-header h1 {
        font-size: 48px;
        margin: 0;
    }

    .get-started-btn {
        background: linear-gradient(to right, #845ef7, #d17fff);
        border: none;
        border-radius: 8px;
        padding: 12px 24px;
        font-size: 16px;
        color: white;
        cursor: pointer;
    }

    .card-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .cardHeader {
        opacity: 0.9;
        background: linear-gradient(to right, #30E2BE, #6FD5FF);
        height: 22px;
        position: relative;
        width: 118%;
        /* margin: 0 auto; */
        left: -9%;
        margin-top: -30px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;

    }

    .cardHeader1 {
        opacity: 0.9;
        background: linear-gradient(to right, #6FD5FF, #7C88FF);
        height: 22px;
        position: relative;
        width: 118%;
        /* margin: 0 auto; */
        left: -9%;
        margin-top: -30px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;

    }

    .cardHeader2 {
        opacity: 0.9;
        background: linear-gradient(to right, #E475F7, #FFA78D);
        height: 22px;
        position: relative;
        width: 118%;
        /* margin: 0 auto; */
        left: -9%;
        margin-top: -30px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;

    }

    .card {
        background: linear-gradient(145deg, #0F1326, #0F1326);
        border-radius: 20px;
        padding: 30px;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .card h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .card p {
        color: #A0A0B3;
        font-size: 14px;
        line-height: 1.5;
    }

    .card .number {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 37px;
        font-weight: bold;
        opacity: 0.9;
        background: linear-gradient(to right, #30E2BE, #6FD5FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .card:nth-child(2) .number {
        background: linear-gradient(to right, #6FD5FF, #7C88FF);
        -webkit-background-clip: text;
    }

    .card:nth-child(3) .number {
        background: linear-gradient(to right, #E475F7, #FFA78D);
        -webkit-background-clip: text;
    }

    .card .icon {
        font-size: 28px;
        margin-bottom: 15px;
        margin-top: 20px
    }

    @media (max-width: 768px) {
        .card-container {
            grid-template-columns: 1fr;
        }

        .step-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .step-header .titles {
            max-width: 100%;
            margin-bottom: 20px;
        }
    }
    .interconnect-scheme{
        margin: 0;
        background-image: url('https://www.liasail.com/wp-content/uploads/2025/04/aboutus1.png' );
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }
