/* =========================================
   GLOBAL RESET
========================================= */

/* *,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
} */


/* =========================================
   COMMON CONTAINER
========================================= */

.netrvis-container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================
   COMMON SECTION HEADING
========================================= */

.section-heading {
    width: 100%;
    margin-bottom: 45px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.netrvis-glance-section {
    width: 100%;
    padding: 70px 0;
    background: #f7f9fc;
}

.netrvis-glance-section .section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.netrvis-glance-section .section-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}


/* =========================================
   HIGHLIGHTS GRID
========================================= */

.netrvis-glance-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================
   HIGHLIGHT CARD
========================================= */

.netrvis-glance-card {
    width: 100%;
    min-width: 0;
    min-height: 280px;

    padding: 30px 24px;

    display: flex;
    flex-direction: column;
    align-items: center;

    justify-content: flex-start;

    text-align: center;

    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 16px;

    transition: transform .3s ease, box-shadow .3s ease;
}

.netrvis-glance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* =========================================
   HIGHLIGHT ICON CIRCLE
========================================= */

.netrvis-highlight-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;

    border-radius: 50%;
    background: #eef6ff;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    /* Keeps every icon at the same vertical position */
    flex-shrink: 0;
}

.netrvis-highlight-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}


/* =========================================
   HIGHLIGHT HEADING
========================================= */

.netrvis-glance-card h3 {
    margin: 0 0 12px;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;

    color: #3f4d85;
}


/* =========================================
   HIGHLIGHT DESCRIPTION
========================================= */

.netrvis-glance-card p {
    margin: 0;

    font-size: 14px;
    line-height: 1.55;

    color: #333333;
}


/* =========================================
   WHY NETRAVIS
========================================= */

.netrvis-why-section {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
}

.netrvis-why-content {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 45px;
}

.netrvis-why-content p {
    margin: 0;

    text-align: center;

    font-size: 17px;
    line-height: 1.75;

    color: #333333;
}


/* =========================================
   WHY NETRAVIS CARDS
========================================= */

.netrvis-why-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.netrvis-why-card {
    width: 100%;
    min-width: 0;

    padding: 30px;

    background: #f7f9fb;
    border: 1px solid #e1e5e8;
    border-radius: 10px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.netrvis-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.netrvis-why-card h3 {
    margin: 0 0 12px;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;

    color: #222222;
}

.netrvis-why-card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.65;

    color: #444444;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .netrvis-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .netrvis-glance-section,
    .netrvis-why-section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 32px;
    }


    /* -----------------------------------------
       HIGHLIGHTS
    ----------------------------------------- */

    .netrvis-glance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .netrvis-glance-card {
        min-height: 270px;
    }

    .netrvis-glance-card h3 {
        font-size: 21px;
    }

    .netrvis-glance-card p {
        font-size: 15px;
    }


    /* -----------------------------------------
       WHY NETRAVIS
    ----------------------------------------- */

    .netrvis-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .netrvis-container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .netrvis-glance-section,
    .netrvis-why-section {
        padding: 55px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 28px;
    }


    /* -----------------------------------------
       HIGHLIGHTS
       ONE CARD PER ROW
    ----------------------------------------- */

    .netrvis-glance-grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .netrvis-glance-card {
        width: 100%;
        min-height: 250px;
        padding: 28px 20px;
    }

    .netrvis-highlight-icon {
        width: 65px;
        height: 65px;

        min-width: 65px;
        min-height: 65px;

        margin-bottom: 18px;
    }

    .netrvis-highlight-icon img {
        width: 38px;
        height: 38px;
    }

    .netrvis-glance-card h3 {
        font-size: 21px;
        line-height: 1.3;
    }

    .netrvis-glance-card p {
        font-size: 15px;
        line-height: 1.55;
    }


    /* -----------------------------------------
       WHY NETRAVIS
       ONE CARD PER ROW
    ----------------------------------------- */

    .netrvis-why-content {
        width: 100%;
        margin-bottom: 30px;
    }

    .netrvis-why-content p {
        text-align: left;
        font-size: 16px;
        line-height: 1.7;
    }

    .netrvis-why-grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .netrvis-why-card {
        width: 100%;
        padding: 25px 20px;
    }

    .netrvis-why-card h3 {
        font-size: 19px;
    }

    .netrvis-why-card p {
        font-size: 15px;
        line-height: 1.65;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .netrvis-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .netrvis-glance-section,
    .netrvis-why-section {
        padding: 45px 0;
    }

    .section-heading {
        margin-bottom: 25px;
    }

    .section-heading h2 {
        font-size: 26px;
    }


    /* -----------------------------------------
       HIGHLIGHTS
    ----------------------------------------- */

    .netrvis-glance-grid {
        gap: 14px;
    }

    .netrvis-glance-card {
        min-height: 230px;
        padding: 24px 16px;
    }

    .netrvis-highlight-icon {
        width: 60px;
        height: 60px;

        min-width: 60px;
        min-height: 60px;

        margin-bottom: 16px;
    }

    .netrvis-highlight-icon img {
        width: 38px;
        height: 38px;
    }

    .netrvis-glance-card h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .netrvis-glance-card p {
        font-size: 15px;
        line-height: 1.5;
    }


    /* -----------------------------------------
       WHY NETRAVIS
    ----------------------------------------- */

    .netrvis-why-grid {
        gap: 14px;
    }

    .netrvis-why-card {
        padding: 22px 18px;
    }

    .netrvis-why-card h3 {
        font-size: 18px;
    }

    .netrvis-why-card p {
        font-size: 15px;
    }
}