    .clover-section {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;

    }

    @media (max-width: 990px) {
        .clover-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
    }

    @media (max-width: 600px) {
        .clover-section {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
        }
    }


    /* ERP solution section start */


    .netsuite-container {
        /* max-width: 1400px; */
        margin: 0 auto;
        text-align: center;
    }

    /* Grid Layout */
    .netsuite-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 25px;
    }

    /* Default: 4 cards per row */
    .netsuite-card {
        grid-column: span 3;
    }

    /* Center the last 3 cards */
    .netsuite-card:nth-child(5) {
        grid-column: 3 / span 3;
    }

    .netsuite-card:nth-child(6) {
        grid-column: 6 / span 3;
    }

    .netsuite-card:nth-child(7) {
        grid-column: 9 / span 3;
    }

    /* Tablet: 2 per row */
    @media (max-width: 992px) {
        .netsuite-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .netsuite-card {
            grid-column: auto;
        }

        /* Center the last 3 cards */
        .netsuite-card:nth-child(5) {
            grid-column: auto;
        }

        .netsuite-card:nth-child(6) {
            grid-column: auto;
        }

        .netsuite-card:nth-child(7) {
            grid-column: auto;
        }

    }

    /* Mobile: 1 per row */
    @media (max-width: 576px) {
        .netsuite-grid {
            grid-template-columns: 1fr;
        }

        .netsuite-card {
            grid-column: span 1 !important;
        }
    }

    /* Card */
    .netsuite-card {
        background: #f5f5f5;
        border-radius: 14px;
        padding: 20px;
        text-align: left;
        min-height: 180px;

        display: flex;
        flex-direction: column;
        justify-content: space-between;

        transition: 0.3s ease;
    }

    .netsuite-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    .netsuite-card h3 {
        font-size: 18px;
        font-weight: 600;
        color: #111;
        margin-bottom: 10px;
        text-align: center;
    }

    .netsuite-card img {
        width: 100%;
        max-height: 130px;
        object-fit: contain;
        margin: 10px 0;
        align-self: right;
    }

    .netsuite-cta-btn {
        display: inline-block;
        background: #f15a0f;
        color: #fff;
        padding: 16px 32px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: 0.3s ease;
    }

    /* @media (max-width: 992px) {
        .netsuite-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    } */

    @media (max-width: 576px) {
        .netsuite-card {
            text-align: center;
        }
    }

    /* ERP solution section end */
    /* Case-study CSS */
    .quote-banner {
        background: url(/netsuite-erp/img/strip-bg.webp) no-repeat center center;
        background-size: cover;
        padding: 25px 20px;
        text-align: center;
        color: white;
        font-family: Arial, sans-serif;
    }

    .sap-img-content-section img {
        min-height: 330px;
        object-fit: contain;
    }

    .img-content-section img {
        /* max-height: 400px; */
        width: 100%;
    }

    .powered-sap img {
        max-width: 400px;
    }

    .img-content-section {
        text-align: right;
    }


    .case-study-logo {
        height: 60px;
    }


    .study-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .highlight-orange {
        font-weight: 800;
    }

    .study-box {
        background: #fff;
        border: 2px solid #00A5B5;
        border-radius: 6px;
        padding: 20px;
        flex: 1 1 calc(50% - 40px);
        max-width: 500px;
        min-width: 280px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .case-title {
        color: #1991a3;
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .case-heading {
        color: #C0471B;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .case-description {
        font-size: 16px;
        color: #333;
        line-height: 1.5;
        margin-bottom: 15px;
        text-align: left;
    }

    .case-description b {
        color: #007A8D;
    }

    .case-study-underline {
        width: 80%;
        height: 2px;
        background-color: #a5a5a5;
        margin: 0 auto 15px auto;
    }

    .logo-wrapper {
        margin-top: auto;
    }

    .brand-logo {
        max-height: 50px;
        width: auto;
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

    .it-leader-sec {
        background-color: #edfafc;
    }

    .drawline-3:after {
        background: transparent;
    }

    /* .img-content-section img{
        min-height:230px;
    } */
    .it-leaderimg-sec img {
        min-height: 350px;
    }

    .itsm-client-list {
        min-height: 150px;
    }

    .sap-product-implementation ul li {
        margin-bottom: 25px;
    }

    .youtube-head {
        line-height: 1.1;
    }

    .drawline-3:before {
        position: absolute;
        content: "";
        width: 2px;
        height: 100%;
        background: #5ebdc6;
        left: -2%;
    }

    .bg-grey {
        background: #ecf5f4;
    }

    .equal-div {
        display: flex;
    }

    .equal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .ico-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    .ico-bg {
        background: linear-gradient(90deg, hsla(20, 75%, 98%, 1) 21%, hsla(140, 18%, 97%, 1) 60%, hsla(180, 87%, 94%, 1) 100%);
    }

    .future-ready {
        box-shadow: 6px 2px 16px 0px rgba(136, 165, 191, 0.48), -6px -2px 16px 0px rgba(255, 255, 255, 0.8);
        padding: 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        background-color: #fff;
    }

    @media (max-width: 1600px) and (min-width: 1200px) {
        .future-ready p {
            padding-left: 30px;
        }
    }

    @media (max-width: 1100px) and (min-width: 992px) {
        .equal-div {
            width: 100% !important;
        }

        .bg-grey {
            background: #ecf5f4;
            width: 100%;
        }
    }

    @media (min-width: 0px) and (max-width: 1100px) {
        .equal-image img {
            width: auto;
            height: 100%;
            object-fit: cover;
        }
    }

    @media (max-width: 1100px) and (min-width: 320px) {
        .equal-div {
            flex-direction: column;
        }
    }


    @media(max-width:1200px) {
        .img-content-section {
            padding-left: 0px;
        }
    }

    @media(max-width: 991px) {

        .ico-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }


        .it-leaderimg-sec {
            text-align: center;
            padding: 0 15px;
        }

        .drawline-3:before {
            display: none;
        }

        .img-content-section img {
            min-height: unset;
            width: auto;

        }

        .it-leader-sec {
            background-color: #ffffff;
        }

        .img-content-section {
            text-align: center;
        }

        .img-content-section-list {
            background-color: transparent;
        }


    }


    @media(max-width:768px) {

        .ico-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }


        .it-leaderimg-sec img {
            padding: 0 15px;
        }

        .sap-img-content-section img {
            min-height: auto;
        }

        .img-content-section img,
        .it-leaderimg-sec img {
            min-height: auto;
        }

        .img-content-section img {
            max-height: 300px;
            width: auto;
        }

    }

    @media (max-width: 560px) {

        .ico-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
        }

        .future-ready {
            flex-direction: column;
            gap: 10px;
        }
    }

    /* Case-study CSS End */