/* =========================================
   SOFTWARE & INTEGRATION
========================================= */

.netrvis-software-section {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
}

.netrvis-software-section .section-heading {
    width: 100%;
    margin-bottom: 45px;
    text-align: center;
}

.netrvis-software-section .section-heading h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}

.netrvis-software-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.netrvis-software-card {
    width: 100%;
    min-width: 0;

    padding: 30px;

    background: #ffffff;
    border: 1px solid #e1e5e8;
    border-radius: 10px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.netrvis-software-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.netrvis-software-card h3 {
    margin: 0 0 12px;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;

    color: #222222;
}

.netrvis-software-card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.65;

    color: #444444;
}


/* =========================================
   FAQ
========================================= */

.netrvis-faq-section {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
}

.netrvis-faq-section .section-heading {
    width: 100%;
    margin-bottom: 45px;
    text-align: center;
}

.netrvis-faq-section .section-heading h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}

.netrvis-faq-list {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    width: 100%;
    margin-bottom: 14px;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e1e5e8;
    border-radius: 8px;
}

.faq-item:last-child {
    margin-bottom: 0;
}


/* =========================================
   FAQ QUESTION
========================================= */

.faq-questions {
    width: 100%;
    padding: 20px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border: 0;
    background: #f7f9fb;

    text-align: left;

    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;

    color: #010000;

    cursor: pointer;

}



.faq-questions span:first-child {
    min-width: 0;
}

.faq-icon {
    flex: 0 0 auto;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    line-height: 1;

    color: #0878d1;
}


/* =========================================
   FAQ ANSWER
========================================= */

.faq-answer {
    display: none;

    padding: 20px 22px;

    background: #ffffff;
}

.faq-answer p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: #444444;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .netrvis-software-section,
    .netrvis-faq-section {
        padding: 70px 0;
    }

    .netrvis-software-section .section-heading,
    .netrvis-faq-section .section-heading {
        margin-bottom: 35px;
    }

    .netrvis-software-section .section-heading h2,
    .netrvis-faq-section .section-heading h2 {
        font-size: 32px;
    }

    .netrvis-software-card {
        padding: 26px 22px;
    }

    .faq-questions {
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 18px 20px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .netrvis-software-section,
    .netrvis-faq-section {
        padding: 55px 0;
    }

    .netrvis-software-section .section-heading,
    .netrvis-faq-section .section-heading {
        margin-bottom: 30px;
    }

    .netrvis-software-section .section-heading h2,
    .netrvis-faq-section .section-heading h2 {
        font-size: 28px;
    }


    /* -----------------------------------------
       SOFTWARE
       ONE CARD PER ROW
    ----------------------------------------- */

    .netrvis-software-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .netrvis-software-card {
        padding: 24px 20px;
    }

    .netrvis-software-card h3 {
        font-size: 19px;
    }

    .netrvis-software-card p {
        font-size: 15px;
        line-height: 1.65;
    }


    /* -----------------------------------------
       FAQ
    ----------------------------------------- */

    .netrvis-faq-list {
        width: 100%;
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 12px;
        border-radius: 7px;
    }

    .faq-questions {
        padding: 17px 16px;

        gap: 12px;

        font-size: 16px;
        line-height: 1.5;
    }

    .faq-icon {
        width: 26px;
        height: 26px;
        font-size: 21px;
    }

    .faq-answer {
        padding: 17px 16px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.65;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .netrvis-software-section,
    .netrvis-faq-section {
        padding: 45px 0;
    }

    .netrvis-software-section .section-heading h2,
    .netrvis-faq-section .section-heading h2 {
        font-size: 26px;
    }

    .netrvis-software-card {
        padding: 22px 18px;
    }

    .netrvis-software-card h3 {
        font-size: 18px;
    }

    .netrvis-software-card p {
        font-size: 15px;
    }

    .faq-questions {
        padding: 16px 14px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 16px 14px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}









/* =========================================
   RELATED PRODUCTS TABLE
========================================= */

.netrvis-related-products {
    padding: 60px 0;
    background: #f8f8f8;
}

.netrvis-related-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.netrvis-related-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-family: Arial, sans-serif;
}

.netrvis-related-table th {
    background: #c8c9cd;
    color: #111;
    padding: 15px 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

.netrvis-related-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    color: #222;
}

.netrvis-related-table tbody tr:nth-child(even) {
    background: #f2f2f2;
}

.netrvis-related-table tbody tr:hover {
    background: #eef5e8;
}


/* Contact button */

.netrvis-contact-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #3da9e8;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.netrvis-contact-btn:hover {
    background: #77af10;
    color: #fff;
}


/* Mobile */

@media (max-width: 600px) {

    .netrvis-related-products {
        padding: 40px 15px;
    }

    .netrvis-related-table {
        min-width: 650px;
    }

}