/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-section {
    width: 100%;
    padding: 100px 0;
    background: #eef6ff;
    overflow: hidden;
}

.why-section .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Content Area
   ========================================================================== */

.why-section .section-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 50px;
    background: #e7f1ff;
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.why-section .section-title {
    margin: 0 0 18px;
    color: #111827;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
}

.why-section .section-text {
    margin-bottom: 28px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
	font-weight: 600;
}


/* ==========================================================================
   Feature List
   ========================================================================== */

.why-section .why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #111827;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    transition: transform 0.25s ease;
}

.why-section .why-item:hover {
    transform: translateX(4px);
}

.why-section .why-item i {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #0d6efd;
    color: #ffffff;

    font-size: 11px;
    line-height: 1;
}


/* ==========================================================================
   CTA
   ========================================================================== */

.why-section .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 24px;
    border: 1px solid #0d6efd;
    border-radius: 50px;

    background: #0d6efd;
    color: #ffffff;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.why-section .btn-primary:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.20);
}


/* ==========================================================================
   Image
   ========================================================================== */

.why-section .why-image {
    display: block;

    width: 100%;
    max-width: 460px;
    height: auto;

    margin-left: auto;
    margin-right: auto;

    border-radius: 22px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.why-section .why-image:hover {
    transform: translateY(-4px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.16);
}


/* ==========================================================================
   Bootstrap Row Compatibility
   ========================================================================== */

.why-section .row {
    position: relative;
}

.why-section .col-lg-7,
.why-section .col-lg-5 {
    position: relative;
}


/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 991.98px) {

    .why-section {
        padding: 80px 0;
    }

    .why-section .section-title {
        font-size: 38px;
    }

    .why-section .why-image {
        max-width: 520px;
        margin-top: 20px;
    }

}


/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767.98px) {

    .why-section {
        padding: 65px 0;
    }

    .why-section .section-tag {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .why-section .section-title {
        margin-bottom: 16px;
        font-size: 32px;
        line-height: 1.2;
    }

    .why-section .section-text {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.7;
    }

    .why-section .why-item {
        margin-bottom: 14px;
        font-size: 14px;
    }

    .why-section .why-item i {
        flex: 0 0 22px;
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .why-section .why-image {
        max-width: 100%;
        margin-top: 25px;
        border-radius: 16px;
    }

    .why-section .btn-primary {
        padding: 11px 22px;
        font-size: 15px;
    }

}


/* ==========================================================================
   Small Mobile
   ========================================================================== */

@media (max-width: 575.98px) {

    .why-section {
        padding: 55px 0;
    }

    .why-section .section-title {
        font-size: 29px;
    }

    .why-section .why-item {
        font-size: 14px;
    }

}