.kkm-about-why {
    --kkm-about-why-container-width: 1400px;
    position: relative;
    overflow: hidden;
    padding: 86px 20px;
    background: #ffffff;
}

.kkm-about-why,
.kkm-about-why * {
    box-sizing: border-box;
}

.kkm-about-why__container {
    width: min(100%, var(--kkm-about-why-container-width));
    max-width: var(--kkm-about-why-container-width);
    margin: 0 auto;
}

.kkm-about-why__heading {
    text-align: center;
    margin-bottom: 80px;
}

.kkm-about-why__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ff6a00;
}

.kkm-about-why__eyebrow::before,
.kkm-about-why__eyebrow::after {
    content: "";
    width: 25px;
    height: 2px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #ff6a00;
}

.kkm-about-why__title {
    margin: 0 auto;
    max-width: 860px;
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    color: #0d3474;
}

.kkm-about-why__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 90px;
}

.kkm-about-why__card {
    --kkm-about-card-accent: #0d3474;
    position: relative;
    min-height: 292px;
    padding: 76px 30px 46px;
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    border-bottom: 5px solid var(--kkm-about-card-accent);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kkm-about-why__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.13);
}

.kkm-about-why__card-icon-wrap {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #edf1f7;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
}

.kkm-about-why__card-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    color: var(--kkm-about-card-accent);
    font-size: 26px;
    line-height: 1;
}

.kkm-about-why__card-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.kkm-about-why__card-title {
    margin: 0 0 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.12;
    color: #0d3474;
}

.kkm-about-why__card-line {
    display: block;
    width: 48px;
    height: 3px;
    margin: 0 auto 21px;
    border-radius: 999px;
    background: var(--kkm-about-card-accent);
}

.kkm-about-why__card-description {
    margin: 0 auto;
    max-width: 248px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #4b5563;
}

.kkm-about-why__feature-box {
    width: 100%;
    padding: 34px 50px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.kkm-about-why__feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 38px;
    row-gap: 30px;
}

.kkm-about-why__feature {
    --kkm-about-feature-accent: #ff6a00;
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.kkm-about-why__feature:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -19px;
    top: 3px;
    bottom: 3px;
    width: 1px;
    background: #b9c0c9;
}

.kkm-about-why__feature-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1.5px solid var(--kkm-about-feature-accent);
    background: #ffffff;
    color: var(--kkm-about-feature-accent);
    font-size: 18px;
    line-height: 1;
}

.kkm-about-why__feature-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.kkm-about-why__feature-copy {
    min-width: 0;
}

.kkm-about-why__feature-title {
    margin: 0 0 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: #0d3474;
}

.kkm-about-why__feature-description {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: #1f2937;
}

@media (max-width: 1200px) {
    .kkm-about-why__cards {
        gap: 26px;
    }

    .kkm-about-why__card {
        padding-left: 24px;
        padding-right: 24px;
    }

    .kkm-about-why__feature-box {
        padding-left: 32px;
        padding-right: 32px;
    }

    .kkm-about-why__feature-grid {
        column-gap: 28px;
    }

    .kkm-about-why__feature:not(:first-child)::before {
        left: -14px;
    }
}

@media (max-width: 1024px) {
    .kkm-about-why {
        padding: 64px 20px;
    }

    .kkm-about-why__heading {
        margin-bottom: 62px;
    }

    .kkm-about-why__title {
        max-width: 760px;
        font-size: 32px;
    }

    .kkm-about-why__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 58px 28px;
        margin-bottom: 66px;
    }

    .kkm-about-why__card {
        min-height: 270px;
    }

    .kkm-about-why__feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 34px;
    }

    .kkm-about-why__feature:nth-child(odd)::before {
        display: none;
    }

    .kkm-about-why__feature:nth-child(even)::before {
        left: -17px;
    }
}

@media (max-width: 767px) {
    .kkm-about-why {
        padding: 48px 16px;
    }

    .kkm-about-why__heading {
        margin-bottom: 48px;
    }

    .kkm-about-why__eyebrow {
        gap: 10px;
        margin-bottom: 14px;
        font-size: 12px;
    }

    .kkm-about-why__eyebrow::before,
    .kkm-about-why__eyebrow::after {
        width: 18px;
    }

    .kkm-about-why__title {
        font-size: 27px;
        line-height: 1.18;
    }

    .kkm-about-why__cards {
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
        margin-bottom: 46px;
    }

    .kkm-about-why__card {
        min-height: auto;
        padding: 70px 22px 36px;
    }

    .kkm-about-why__card-title {
        font-size: 17px;
    }

    .kkm-about-why__feature-box {
        padding: 24px 18px;
        border-radius: 10px;
    }

    .kkm-about-why__feature-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .kkm-about-why__feature {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
    }

    .kkm-about-why__feature::before {
        display: none !important;
    }

    .kkm-about-why__feature:not(:last-child) {
        padding-bottom: 22px;
        border-bottom: 1px solid #e5e7eb;
    }

    .kkm-about-why__feature-icon {
        width: 40px;
        height: 40px;
    }

    .kkm-about-why__feature-title {
        font-size: 17px;
    }

    .kkm-about-why__feature-description {
        font-size: 14px;
    }
}

/* KKM v9.0.7 full-page same-width alignment patch
   Keeps every KKM widget aligned to the header container width. */
:root {
    --kkm-global-container-width: 1400px;
}

body:not(.elementor-editor-active) .elementor-widget-kkm_2026_header,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_footer,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_hero,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_about,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_about_page_hero,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_about_intro,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_about_why_choose,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_about_final_cta,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_why_choose,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_core_services,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_process,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_products,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_project_experience,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_industries,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_vision_mission,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_final_cta,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_contact,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_website_fix,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_partners {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.elementor-widget-kkm_2026_header .elementor-widget-container,
.elementor-widget-kkm_2026_footer .elementor-widget-container,
.elementor-widget-kkm_2026_hero .elementor-widget-container,
.elementor-widget-kkm_2026_about .elementor-widget-container,
.elementor-widget-kkm_2026_about_page_hero .elementor-widget-container,
.elementor-widget-kkm_2026_about_intro .elementor-widget-container,
.elementor-widget-kkm_2026_about_why_choose .elementor-widget-container,
.elementor-widget-kkm_2026_about_final_cta .elementor-widget-container,
.elementor-widget-kkm_2026_why_choose .elementor-widget-container,
.elementor-widget-kkm_2026_core_services .elementor-widget-container,
.elementor-widget-kkm_2026_process .elementor-widget-container,
.elementor-widget-kkm_2026_products .elementor-widget-container,
.elementor-widget-kkm_2026_project_experience .elementor-widget-container,
.elementor-widget-kkm_2026_industries .elementor-widget-container,
.elementor-widget-kkm_2026_vision_mission .elementor-widget-container,
.elementor-widget-kkm_2026_final_cta .elementor-widget-container,
.elementor-widget-kkm_2026_contact .elementor-widget-container,
.elementor-widget-kkm_2026_website_fix .elementor-widget-container,
.elementor-widget-kkm_2026_partners .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
}

.kkm-header__container,
.kkm-footer__container,
.kkm-hero__container,
.kkm-about__container,
.kkm-about-page-hero__container,
.kkm-about-intro__container,
.kkm-about-why__container,
.kkm-about-final-cta__container,
.kkm-why__container,
.kkm-core-services__container,
.kkm-process__container,
.kkm-products__container,
.kkm-project-exp__container,
.kkm-industries__container,
.kkm-vm__container,
.kkm-final-cta__container,
.kkm-contact__container,
.kkm-webfix__container,
.kkm-partners__container {
    width: min(100%, var(--kkm-global-container-width)) !important;
    max-width: var(--kkm-global-container-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

@media (min-width: 768px) {
    .kkm-header__container,
    .kkm-footer__container,
    .kkm-hero__container,
    .kkm-about__container,
    .kkm-about-page-hero__container,
    .kkm-about-intro__container,
    .kkm-about-why__container,
    .kkm-about-final-cta__container,
    .kkm-why__container,
    .kkm-core-services__container,
    .kkm-process__container,
    .kkm-products__container,
    .kkm-project-exp__container,
    .kkm-industries__container,
    .kkm-vm__container,
    .kkm-final-cta__container,
    .kkm-contact__container,
    .kkm-webfix__container,
    .kkm-partners__container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 767px) {
    .kkm-header__container,
    .kkm-footer__container,
    .kkm-hero__container,
    .kkm-about__container,
    .kkm-about-page-hero__container,
    .kkm-about-intro__container,
    .kkm-about-why__container,
    .kkm-about-final-cta__container,
    .kkm-why__container,
    .kkm-core-services__container,
    .kkm-process__container,
    .kkm-products__container,
    .kkm-project-exp__container,
    .kkm-industries__container,
    .kkm-vm__container,
    .kkm-final-cta__container,
    .kkm-contact__container,
    .kkm-webfix__container,
    .kkm-partners__container {
        width: 100% !important;
        max-width: 100% !important;
    }
}
