/* =========================================
   WHY CHOOSE US
========================================= */

.why-section {
    padding: 90px 0;
    background: #f8f9fc;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* =========================================
   SECTION HEADING
========================================= */

.why-section .section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.why-section .section-heading span {
    display: block;
    color: #d4a017;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.why-section .section-heading h2 {
    margin: 0 0 15px;
    color: #0d2d73;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
}

.why-section .section-heading p {
    margin: 0;
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

/* =========================================
   WHY GRID
========================================= */

.why-grid {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px;

    padding: 0 20px;

    box-sizing: border-box;
}

/* =========================================
   WHY CARD
========================================= */

.why-card {
    width: 100%;
    min-width: 0;

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    transition: transform 0.35s ease,
                box-shadow 0.35s ease;

    box-sizing: border-box;

    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* =========================================
   ICON
========================================= */

.why-icon {
    width: 70px;
    height: 70px;

    background: #0b2a6b;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    margin-bottom: 25px;

    flex-shrink: 0;

    transition: background 0.3s ease,
                transform 0.3s ease;
}

.why-card:hover .why-icon {
    background: #d4a017;
    transform: scale(1.05);
}

/* =========================================
   CARD HEADING
========================================= */

.why-card h3 {
    margin: 0 0 15px;

    color: #0b2a6b;

    font-size: 28px;
    line-height: 1.3;

    font-weight: 700;

    overflow-wrap: break-word;
}

/* =========================================
   CARD TEXT
========================================= */

.why-card p {
    margin: 0;

    color: #666;

    font-size: 17px;
    line-height: 1.8;

    overflow-wrap: break-word;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .why-section {
        padding: 70px 0;
    }

    .why-section .section-heading {
        margin-bottom: 40px;
    }

    .why-section .section-heading h2 {
        font-size: 42px;
    }

    .why-section .section-heading p {
        font-size: 17px;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 22px;

        margin-top: 45px;

        padding: 0 18px;
    }

    .why-card {
        padding: 28px;
    }

    .why-icon {
        width: 62px;
        height: 62px;
        font-size: 29px;
        margin-bottom: 20px;
    }

    .why-card h3 {
        font-size: 23px;
    }

    .why-card p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .why-section {
        padding: 60px 0;
    }

    .why-section .section-heading {
        margin-bottom: 35px;

        padding: 0 15px;
    }

    .why-section .section-heading span {
        font-size: 13px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .why-section .section-heading h2 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .why-section .section-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 35px;

        padding: 0 16px;
    }

    .why-card {
        width: 100%;

        padding: 25px;

        border-radius: 16px;
    }

    .why-icon {
        width: 60px;
        height: 60px;

        font-size: 28px;

        margin-bottom: 18px;
    }

    .why-card h3 {
        font-size: 22px;
        line-height: 1.35;

        margin-bottom: 10px;
    }

    .why-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Disable large hover movement on touch devices */
    .why-card:hover {
        transform: none;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .why-card:hover .why-icon {
        transform: none;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .why-section {
        padding: 50px 0;
    }

    .why-section .section-heading {
        padding: 0 14px;
    }

    .why-section .section-heading h2 {
        font-size: 30px;
    }

    .why-section .section-heading p {
        font-size: 14px;
    }

    .why-grid {
        gap: 16px;

        padding: 0 12px;

        margin-top: 30px;
    }

    .why-card {
        padding: 22px;

        border-radius: 15px;
    }

    .why-icon {
        width: 56px;
        height: 56px;

        font-size: 25px;

        margin-bottom: 16px;
    }

    .why-card h3 {
        font-size: 20px;
        line-height: 1.35;
    }

    .why-card p {
        font-size: 14px;
        line-height: 1.65;
    }
}/* =========================================
   MOBILE HEADING FIX
========================================= */

@media (max-width: 767px) {

    .why-section .section-heading {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        overflow: visible;
    }

    .why-section .section-heading h2 {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;

        font-size: 32px;
        line-height: 1.2;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;

        text-align: center;

        box-sizing: border-box;
    }

    .why-section .section-heading p {
        width: 100%;
        max-width: 100%;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;

        text-align: center;

        box-sizing: border-box;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .why-section .section-heading {
        padding: 0 12px;
    }

    .why-section .section-heading h2 {
        font-size: 29px;
        line-height: 1.2;

        white-space: normal !important;
    }

    .why-section .section-heading p {
        font-size: 15px;
        line-height: 1.6;
    }
}