﻿
/* ==============================================================*/
/*         new website updation for mobile app*/
/*===============================================================*/

/* ==================================================
   NAVBAR APP LAUNCH COUNTDOWN
================================================== */

.kh-nav-launch {
    width: 100%;
    background: #0a9415;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.kh-nav-launch-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================
   LEFT TITLE
========================= */

.kh-nav-launch-title {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

    .kh-nav-launch-title strong {
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
        line-height: 1;
    }

.kh-nav-launch-date {
    color: #111111;
    font-size: 14px;
    font-weight: 600;
}


/* =========================
   COUNTDOWN
========================= */

.kh-nav-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.kh-nav-count-box {
    min-width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

    .kh-nav-count-box strong {
        color: #ffffff;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .kh-nav-count-box span {
        color: rgba(255, 255, 255, 0.9);
        font-size: 11px;
        font-weight: 500;
    }


/* =========================
   REGISTER BUTTON
========================= */

.kh-nav-launch-btn {
    background: rgba(0,0,0,0);
    color: #111111;
    padding: 10px 22px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.2s ease;
}

    .kh-nav-launch-btn:hover {
        background: #ffffff;
        color: #111111;
    }


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .kh-nav-launch-inner {
        min-height: 65px;
        gap: 15px;
    }

    .kh-nav-launch-title strong {
        font-size: 16px;
    }

    .kh-nav-launch-date {
        font-size: 12px;
    }

    .kh-nav-countdown {
        gap: 12px;
    }

    .kh-nav-count-box {
        min-width: 38px;
    }

        .kh-nav-count-box strong {
            font-size: 18px;
        }

        .kh-nav-count-box span {
            font-size: 9px;
        }

    .kh-nav-launch-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}




/* ==================================================
   NAVBAR + COUNTDOWN TWO ROW FIX
================================================== */

.kh-navbar-with-launch {
    padding: 0 !important;
    /* Bootstrap navbar normally uses flex row */
    flex-direction: column !important;
    align-items: stretch !important;
}


    /* First navbar row */

    .kh-navbar-with-launch > .container {
        width: 100%;
        min-height: 100px;
    }


    /* Second countdown row */

    .kh-navbar-with-launch .kh-nav-launch {
        width: 100%;
        flex: 0 0 auto;
        background: #0a9415;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }


/* Countdown content */

.kh-nav-launch-inner {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* APP LAUNCH */

.kh-nav-launch-title {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

    .kh-nav-launch-title strong {
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
    }

.kh-nav-launch-date {
    color: #111111;
    font-size: 14px;
    font-weight: 700;
}


/* COUNTDOWN */

.kh-nav-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.kh-nav-count-box {
    min-width: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

    .kh-nav-count-box strong {
        color: #ffffff;
        font-size: 22px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 5px;
    }

    .kh-nav-count-box span {
        color: #ffffff;
        font-size: 11px;
        line-height: 1;
    }


/* REGISTER */

.kh-nav-launch-btn {
    display: inline-block;
    background: #111111;
    color: #A4CE2D;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

    .kh-nav-launch-btn:hover {
        background: #ffffff;
        color: #111111;
    }

/* ==================================================
   COUNTDOWN - MOBILE RESPONSIVE
================================================== */

@media (max-width: 767px) {

    .kh-navbar-with-launch .kh-nav-launch {
        width: 100%;
        overflow: hidden;
    }

    .kh-nav-launch .container {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .kh-nav-launch-inner {
        width: 100%;
        min-height: 64px;
        display: grid;
        /* APP LAUNCH | TIMER | BUTTON */
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 10px;
    }


    /* -------------------------
       APP LAUNCH
    ------------------------- */

    .kh-nav-launch-title {
        display: block;
        white-space: nowrap;
    }

        .kh-nav-launch-title strong {
            display: block;
            font-size: 13px;
            line-height: 1;
            color: #ffffff;
        }

    /* Hide launch date on mobile */

    .kh-nav-launch-date {
        display: none;
    }


    /* -------------------------
       COUNTDOWN
    ------------------------- */

    .kh-nav-countdown {
        min-width: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        align-items: center;
    }

    .kh-nav-count-box {
        min-width: 0;
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .kh-nav-count-box strong {
            font-size: 16px;
            line-height: 1;
            margin: 0 0 4px;
            color: #ffffff;
        }

        .kh-nav-count-box span {
            font-size: 8px;
            line-height: 1;
            color: #ffffff;
            white-space: nowrap;
        }


    /* -------------------------
       REGISTER
    ------------------------- */

    .kh-nav-launch-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 10px;
        font-size: 9px;
        line-height: 1;
        border-radius: 7px;
        white-space: nowrap;
        margin: 0;
    }
}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .kh-nav-launch .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .kh-nav-launch-inner {
        min-height: 60px;
        grid-template-columns: auto 1fr auto;
        gap: 7px;
    }

    .kh-nav-launch-title strong {
        font-size: 11px;
    }

    .kh-nav-countdown {
        gap: 2px;
    }

    .kh-nav-count-box strong {
        font-size: 14px;
    }

    .kh-nav-count-box span {
        font-size: 7px;
    }

    .kh-nav-launch-btn {
        font-size: 8px;
        padding: 7px 8px;
        border-radius: 6px;
    }
}

/* ==================================================
   VERY SMALL MOBILE
================================================== */

@media (max-width: 380px) {

    .kh-nav-launch-inner {
        grid-template-columns: 1fr auto;
        gap: 8px;
    }

    .kh-nav-launch-title {
        display: none;
    }

    .kh-nav-countdown {
        gap: 4px;
    }

    .kh-nav-count-box strong {
        font-size: 14px;
    }

    .kh-nav-count-box span {
        font-size: 7px;
    }

    .kh-nav-launch-btn {
        padding: 7px 9px;
        font-size: 8px;
    }
}



/*==========================================================
                INDOOR HERO SECTION
==========================================================*/
/*=========================================================
            INDOOR HERO
=========================================================*/

.indoor-hero-section {
    background: #FCFCEF;
    padding: 90px 0;
}

.indoor-content {
    max-width: 560px;
}

.indoor-title {
    font-size: 24px;
    font-weight: 800;
    color: #7BAF18;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.trusted-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #D7E7A8;
    border-radius: 40px;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

    .trusted-pill i {
        color: #7FB51E;
        font-size: 14px;
    }

.indoor-heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.12;
    color: #111;
    margin-bottom: 16px;
}

    .indoor-heading span {
        color: #89BC22;
    }

.indoor-description {
    font-size: 18px;
    line-height: 1.75;
    color: #606060;
    margin-bottom: 20px;
}

/* FEATURES */

.feature-row {
    margin-bottom: 18px;
}

.feature-card {
    background: #fff;
    border: 2px solid #D7E7A8;
    border-radius: 16px;
    height: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    transition: .30s;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }

    .feature-card i {
        font-size: 18px;
        color: #89BC22;
    }

    .feature-card span {
        font-size: 14px;
        line-height: 1.35;
        color: #222;
        font-weight: 600;
    }

/* Launch text */

.launch-note {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

    .launch-note span {
        color: #89BC22;
    }

/* Button */

.indoor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    height: 72px;
    background: #A4CE2D;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    transition: .30s;
}

    .indoor-btn:hover {
        background: #86B91F;
        color: #fff;
    }

    .indoor-btn i {
        font-size: 18px;
    }

/* IMAGE */

.indoor-image {
    text-align: right;
}

    .indoor-image img {
        width: 100%;
        max-width: 560px;
        border-radius: 34px;
        box-shadow: 0 25px 60px rgba(0,0,0,.12);
    }

/*=========================
TABLET
=========================*/

@media(max-width:991px) {

    .indoor-hero-section {
        padding: 70px 0;
    }

    .indoor-content {
        max-width: 100%;
        text-align: center;
    }

    .indoor-title {
        font-size: 54px;
    }

    .indoor-heading {
        font-size: 48px;
    }

    .indoor-description {
        font-size: 20px;
    }

    .launch-note {
        font-size: 26px;
    }

    .indoor-image {
        text-align: center;
        margin-bottom: 40px;
    }

    .indoor-btn {
        margin: auto;
    }
}

/*=========================
MOBILE
=========================*/

@media(max-width:576px) {

    .indoor-title {
        font-size: 42px;
    }

    .indoor-heading {
        font-size: 36px;
    }

    .indoor-description {
        font-size: 18px;
    }

    .feature-card {
        justify-content: flex-start;
        padding: 16px;
    }

        .feature-card span {
            font-size: 15px;
        }

    .launch-note {
        font-size: 22px;
        line-height: 1.5;
    }

    .indoor-btn {
        font-size: 20px;
        height: 60px;
        max-width: 100%;
    }

        .indoor-btn i {
            font-size: 20px;
        }
}



/*=========================================================
                OUTDOOR HERO
=========================================================*/

.outdoor-hero-section {
    background: #FFFFFF;
    padding: 70px 0 90px;
}

.outdoor-content {
    max-width: 560px;
}

.outdoor-label {
    font-size: 24px;
    font-weight: 800;
    color: #7BAF18;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.outdoor-heading {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    color: #111;
}

    .outdoor-heading span {
        color: #7FB51E;
    }

.outdoor-description {
    font-size: 18px;
    line-height: 1.75;
    color: #606060;
    margin-bottom: 20px;
}

.outdoor-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Sign In Button */

.btn-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    height: 58px;
    border: 2px solid #7FB51E;
    border-radius: 14px;
    background: #fff;
    color: #7FB51E;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

    .btn-signin:hover {
        background: #7FB51E;
        color: #fff;
    }

/* Register Button */

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    height: 58px;
    border-radius: 14px;
    background: #A4CE2D;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

    .btn-register:hover {
        background: #86B91F;
        color: #fff;
    }

/* IMAGE */

.outdoor-image {
    text-align: right;
}

    .outdoor-image img {
        width: 100%;
        max-width: 520px;
        border-radius: 28px;
        box-shadow: 0 20px 50px rgba(0,0,0,.10);
    }

/*=========================
TABLET
=========================*/

@media(max-width:991px) {

    .outdoor-hero-section {
        padding: 60px 0;
    }

    .outdoor-content {
        text-align: center;
        max-width: 100%;
    }

    .outdoor-label {
        font-size: 28px;
    }

    .outdoor-heading {
        font-size: 42px;
    }

    .outdoor-description {
        font-size: 19px;
    }

    .outdoor-buttons {
        justify-content: center;
    }

    .outdoor-image {
        text-align: center;
        margin-bottom: 35px;
    }
}

/*=========================
MOBILE
=========================*/

@media(max-width:576px) {

    .outdoor-heading {
        font-size: 34px;
    }

    .outdoor-description {
        font-size: 18px;
    }

    .outdoor-label {
        font-size: 24px;
        padding: 10px 22px;
    }

    .btn-signin,
    .btn-register {
        width: 100%;
        min-width: 100%;
    }
}


/* ============================================================
   KHADIM ABOUT V2 - FINAL ISOLATED CSS
============================================================ */

section.kh-about-v2-section {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 65px 0 !important;
    margin: 0 !important;
    background: linear-gradient( 135deg, #f8fbea 0%, #ffffff 55%, #f3f9df 100% ) !important;
}


/* ---------- TOP HEADER ---------- */

.kh-about-v2-section .kh-about-v2-header {
    width: 100% !important;
    max-width: 720px !important;
    margin: 0 auto 45px !important;
    padding: 0 15px !important;
    text-align: center !important;
}

.kh-about-v2-section .kh-about-v2-badge {
    display: inline-block !important;
    margin: 0 0 12px !important;
    padding: 6px 15px !important;
    background: rgba(164, 206, 45, 0.15) !important;
    border: 1px solid rgba(164, 206, 45, 0.4) !important;
    border-radius: 30px !important;
    color: #76a400 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    letter-spacing: 1px !important;
}

.kh-about-v2-section .kh-about-v2-header h2 {
    display: block !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
    color: #171717 !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.kh-about-v2-section .kh-about-v2-header p {
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 620px !important;
    color: #666 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}


/* ============================================================
   IMAGE
============================================================ */

.kh-about-v2-section .kh-about-v2-image-box {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 410px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 22px !important;
    background: #eeeeee !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10) !important;
}

.kh-about-v2-section .kh-about-v2-image {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    transform: none !important;
}


/* ---------- IMAGE FLOATING CARD ---------- */

.kh-about-v2-section .kh-about-v2-image-label {
    position: absolute !important;
    left: 20px !important;
    bottom: 20px !important;
    right: auto !important;
    top: auto !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: 330px !important;
    gap: 12px !important;
    padding: 12px 15px !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 12px !important;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12) !important;
}

.kh-about-v2-section .kh-about-v2-label-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    background: #A4CE2D !important;
    color: #111 !important;
    border-radius: 50% !important;
    font-size: 18px !important;
}

.kh-about-v2-section .kh-about-v2-image-label strong {
    display: block !important;
    margin: 0 0 2px !important;
    color: #171717 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.kh-about-v2-section .kh-about-v2-image-label span {
    display: block !important;
    color: #6b6b6b !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
}


/* ============================================================
   RIGHT CONTENT
============================================================ */

.kh-about-v2-section .kh-about-v2-content {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 10px 0 10px 15px !important;
    background: transparent !important;
    transform: none !important;
}

.kh-about-v2-section .kh-about-v2-small-title {
    display: block !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
    color: #7ba900 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    letter-spacing: 1.4px !important;
}

.kh-about-v2-section .kh-about-v2-title {
    display: block !important;
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 0 17px !important;
    padding: 0 !important;
    color: #171717 !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    position: static !important;
    transform: none !important;
}

    .kh-about-v2-section .kh-about-v2-title span {
        color: #7eaf0e !important;
    }

.kh-about-v2-section .kh-about-v2-description {
    display: block !important;
    width: 100% !important;
    max-width: 540px !important;
    margin: 0 0 25px !important;
    padding: 0 !important;
    color: #666666 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
}


/* ============================================================
   FEATURES
============================================================ */

.kh-about-v2-section .kh-about-v2-features {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 15px !important;
    margin: 0 0 23px !important;
    padding: 0 !important;
}

.kh-about-v2-section .kh-about-v2-feature {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.kh-about-v2-section .kh-about-v2-feature-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    background: rgba(164, 206, 45, 0.17) !important;
    color: #7eae0d !important;
    border-radius: 10px !important;
    font-size: 18px !important;
}

.kh-about-v2-section .kh-about-v2-feature h5 {
    margin: 0 0 3px !important;
    padding: 0 !important;
    color: #202020 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
}

.kh-about-v2-section .kh-about-v2-feature p {
    margin: 0 !important;
    padding: 0 !important;
    color: #707070 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}


/* ============================================================
   BOTTOM HIGHLIGHT
============================================================ */

.kh-about-v2-section .kh-about-v2-highlight {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 0 !important;
    padding: 11px 15px !important;
    background: #f2f7df !important;
    border: 0 !important;
    border-left: 4px solid #A4CE2D !important;
    border-radius: 0 9px 9px 0 !important;
    color: #404040 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
}

    .kh-about-v2-section .kh-about-v2-highlight i {
        color: #7eae0d !important;
        font-size: 16px !important;
    }


/* ============================================================
   TABLET
============================================================ */

@media screen and (max-width: 991px) {

    section.kh-about-v2-section {
        padding: 50px 0 !important;
    }

    .kh-about-v2-section .kh-about-v2-header {
        margin-bottom: 32px !important;
    }

        .kh-about-v2-section .kh-about-v2-header h2 {
            font-size: 29px !important;
        }

    .kh-about-v2-section .kh-about-v2-image-box {
        height: 380px !important;
        margin-bottom: 20px !important;
    }

    .kh-about-v2-section .kh-about-v2-content {
        padding: 10px 0 0 !important;
    }

    .kh-about-v2-section .kh-about-v2-title {
        max-width: 100% !important;
        font-size: 29px !important;
    }

    .kh-about-v2-section .kh-about-v2-description {
        max-width: 100% !important;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media screen and (max-width: 767px) {

    section.kh-about-v2-section {
        padding: 38px 0 !important;
    }

    .kh-about-v2-section .kh-about-v2-header {
        margin-bottom: 25px !important;
    }

        .kh-about-v2-section .kh-about-v2-header h2 {
            font-size: 24px !important;
        }

        .kh-about-v2-section .kh-about-v2-header p {
            font-size: 13px !important;
        }

    .kh-about-v2-section .kh-about-v2-image-box {
        height: 290px !important;
        border-radius: 16px !important;
    }

    .kh-about-v2-section .kh-about-v2-image-label {
        left: 12px !important;
        bottom: 12px !important;
        max-width: calc(100% - 24px) !important;
    }

    .kh-about-v2-section .kh-about-v2-content {
        padding: 5px 2px 0 !important;
    }

    .kh-about-v2-section .kh-about-v2-small-title {
        font-size: 10px !important;
    }

    .kh-about-v2-section .kh-about-v2-title {
        font-size: 25px !important;
        line-height: 1.25 !important;
    }

    .kh-about-v2-section .kh-about-v2-description {
        font-size: 13px !important;
    }

    .kh-about-v2-section .kh-about-v2-highlight {
        display: flex !important;
        width: 100% !important;
    }
}


/* =========================================================
   KHADIM SERVICES SECTION
========================================================= */

.kh-services-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0 90px;
}


/* =========================
   HEADER
========================= */

.kh-services-header {
    max-width: 850px;
    margin-bottom: 48px;
}

.kh-services-label {
    display: inline-block;
    color: #7ab516;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.kh-services-header h2 {
    color: #111111;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 18px;
}

.kh-services-header p {
    max-width: 760px;
    color: #666666;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   GRID
========================================================= */

.kh-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.kh-service-card {
    min-width: 0;
    background: #ffffff;
    border: 1px solid #dfe5d8;
    border-radius: 22px;
    padding: 14px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .kh-service-card:hover {
        transform: translateY(-5px);
        border-color: #96cc20;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }


/* =========================================================
   SERVICE IMAGE
========================================================= */

.kh-service-image-box {
    width: 100%;
    height: 210px;
    overflow: hidden;
    border-radius: 17px;
    background: #f7f8f5;
}

.kh-service-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

/* Small zoom when mouse is over card */
.kh-service-card:hover .kh-service-image {
    transform: scale(1.05);
}

/* =========================================================
   CARD BOTTOM
========================================================= */

.kh-service-bottom {
    min-height: 72px;
    padding: 18px 8px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

    .kh-service-bottom h3 {
        color: #171717;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.3;
        margin: 0;
    }

.kh-service-arrow {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    transition: 0.25s ease;
}

    .kh-service-arrow i {
        font-size: 18px;
    }

.kh-service-card:hover .kh-service-arrow {
    background: #96cc20;
    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .kh-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 991px) {

    .kh-services-section {
        padding: 65px 0 70px;
    }

    .kh-services-header {
        margin-bottom: 35px;
    }

        .kh-services-header h2 {
            font-size: 42px;
        }

    .kh-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .kh-services-section {
        padding: 45px 0 55px;
    }

    .kh-services-label {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .kh-services-header {
        margin-bottom: 28px;
    }

        .kh-services-header h2 {
            font-size: 31px;
            line-height: 1.15;
            margin-bottom: 12px;
        }

        .kh-services-header p {
            font-size: 14px;
            line-height: 1.6;
        }

    /*
       Keep 2 cards per row on mobile.
       Similar to modern service apps.
    */

    .kh-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .kh-service-card {
        padding: 8px;
        border-radius: 15px;
    }

    .kh-service-icon {
        height: 125px;
        border-radius: 12px;
    }

        .kh-service-icon i {
            font-size: 45px;
        }

    @media (max-width: 575px) {

        .kh-service-image-box {
            height: 135px;
            border-radius: 12px;
        }
    }

    .kh-service-bottom {
        min-height: 60px;
        padding: 12px 4px 4px;
        align-items: flex-start;
    }

        .kh-service-bottom h3 {
            font-size: 13px;
            line-height: 1.3;
        }

    .kh-service-arrow {
        width: 25px;
        height: 25px;
    }

        .kh-service-arrow i {
            font-size: 14px;
        }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .kh-services-grid {
        grid-template-columns: 1fr;
    }

    .kh-service-icon {
        height: 150px;
    }

    @media (max-width: 360px) {

        .kh-service-image-box {
            height: 190px;
        }
    }
}


/* ==============================================================*/
/*       End of  new website updation for mobile app*/
/*===============================================================*/

