
        /* Unique Custom CSS */
        :root {
            --lkh-primary-blue: #0d6efd;
            --lkh-light-bg: #f4f8fd;
            --lkh-text-dark: #1a1e29;
            --lkh-text-muted: #6c757d;
            --lkh-orange: #fd7e14;
            --lkh-green: #20c997;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #ffffff;
        }

        /* Main Section Styling */
        .lkh-about-section {
            
            background-image: url(../nimg/abt-bg.png);
            background-size: cover;
            background-repeat: no-repeat;
            padding: 30px 0;
            overflow: hidden;
        }

.abt-row{
    padding: 0 30px;
}

        /* Left Column: Text Content */
        .lkh-tagline {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--lkh-primary-blue);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .lkh-tagline-line {
            width: 30px;
            height: 3px;
            background: linear-gradient(to right, #fd7e14, #0d6efd, #20c997);
            border-radius: 2px;
        }

        .lkh-main-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--lkh-text-dark);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .lkh-gradient-text {
            background: linear-gradient(90deg, #fd7e14, #0d6efd, #20c997);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .lkh-description {
            font-size: 1rem;
            color: var(--lkh-text-muted);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* Mission Box */
        .lkh-mission-box {
            background-color: #eef5ff;
            border-radius: 16px;
            padding: 20px 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            max-width: 500px;
        }

        .lkh-mission-icon-wrap {
            background-color: var(--lkh-primary-blue);
            color: white;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
        }

        .lkh-mission-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--lkh-primary-blue);
            margin-bottom: 5px;
        }

        .lkh-mission-text {
            font-size: 0.9rem;
            color: var(--lkh-text-muted);
            margin: 0;
        }

        /* Right Column: Image & Badges */
        .lkh-image-wrapper {
            position: relative;
            padding: 20px;
            display: flex;
            justify-content: flex-end;
        }

       

        .lkh-main-image {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 500px;
            height: 450px;
            object-fit: cover;
            border-radius: 2rem;
        transform: skewX(-10deg);
           
            border: 2px soild white;
        }

        /* Floating Badges */
        .lkh-badges-container {
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .lkh-badge-item {
            background: #ffffff;
            border-radius: 50px;
            padding: 12px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            min-width: 230px;
            transition: transform 0.3s ease;
        }

        .lkh-badge-item:hover {
            transform: translateX(-5px);
        }

        .lkh-badge-icon {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .lkh-icon-blue {
            color: var(--lkh-primary-blue);
            background-color: rgba(13, 110, 253, 0.1);
        }

        .lkh-icon-green {
            color: var(--lkh-green);
            background-color: rgba(32, 201, 151, 0.1);
        }

        .lkh-icon-orange {
            color: var(--lkh-orange);
            background-color: rgba(253, 126, 20, 0.1);
        }

        .lkh-badge-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--lkh-text-dark);
            margin: 0 0 2px 0;
        }

        .lkh-badge-subtitle {
            font-size: 0.8rem;
            color: var(--lkh-text-muted);
            margin: 0;
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .lkh-main-title {
                font-size: 2rem;
            }
            .lkh-image-wrapper {
                margin-top: 50px;
                justify-content: center;
            }
            
            .lkh-main-image {
                border-radius: 20px;
                height: 350px;
            }
            .lkh-badges-container {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                margin-top: -30px;
                align-items: center;
            }
            .lkh-badge-item {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 575.98px) {
            .lkh-about-section {
                padding: 50px 0;
            }
            .lkh-mission-box {
                flex-direction: column;
                text-align: center;
            }
            .lkh-main-image {
                height: 250px;
            }

            .lkh-badges-container{
                display: none;
            }

.lkh-about-section{
    background-position: 75% 65%;
}

.abt-row{
    padding: 0 0px;
}


        }
   



 :root {
        --lkh-dark-blue: #0b2545;
        --lkh-primary-blue: #0d6efd;
        --lkh-text-muted: #6c757d;
        --lkh-purple: #8b5cf6;
        --lkh-pink: #ec4899;
        --lkh-green: #10b981;
        --lkh-orange: #f59e0b;
    }
        
    .lkh-expertise-section {
        padding: 80px 0;
        background: #fff;
        overflow: hidden;
    }

    /* =========================
       TAGLINE
    ========================= */

    .lkh-tagline {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;

        color: var(--lkh-primary-blue);
        font-size: 0.85rem;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .lkh-tagline-line {
        width: 25px;
        height: 3px;
        flex-shrink: 0;

        background: #f97316;
        border-radius: 2px;
    }

    /* =========================
       TITLE
    ========================= */

    .lkh-main-title {
        margin-bottom: 20px;

        color: var(--lkh-dark-blue);
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        font-weight: 800;
        line-height: 1.2;
    }

    /* =========================
       DESCRIPTION
    ========================= */

    .lkh-description {
        margin-bottom: 30px;

        color: var(--lkh-text-muted);
        font-size: 1rem;
        line-height: 1.6;
    }

    /* =========================
       BUTTON
    ========================= */

    .lkh-btn-gradient {
        display: inline-flex;
        align-items: center;
        gap: 10px;

        padding: 14px 30px;

        border: 0;
        border-radius: 50px;

        background: linear-gradient(
            90deg,
            #ff8a00,
            #e52e71
        );

        box-shadow: 0 10px 20px rgba(229, 46, 113, 0.2);

        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;

        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
    }

    .lkh-btn-gradient:hover {
        color: #fff;

        transform: translateY(-3px);

        box-shadow: 0 15px 25px rgba(229, 46, 113, 0.3);
    }

    /* =========================
       FEATURE LIST
    ========================= */

    .lkh-feature-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .lkh-feature-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    /* Feature Icon */

    .lkh-feature-icon {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 45px;
        height: 45px;
        flex: 0 0 45px;

        border-radius: 50%;

        font-size: 1.3rem;
    }

    .lkh-icon-purple {
        background: #f3e8ff;
        color: var(--lkh-purple);
    }

    .lkh-icon-pink {
        background: #fce7f3;
        color: var(--lkh-pink);
    }

    .lkh-icon-green {
        background: #d1fae5;
        color: var(--lkh-green);
    }

    .lkh-icon-orange {
        background: #fef3c7;
        color: var(--lkh-orange);
    }

    /* Feature Text */

    .lkh-feature-title {
        margin: 0 0 4px;

        color: var(--lkh-dark-blue);
        font-size: 1rem;
        font-weight: 700;
    }

    .lkh-feature-subtitle {
        margin: 0;

        color: var(--lkh-text-muted);
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* =========================
       PRODUCT IMAGE
    ========================= */

    .lkh-product-image-wrapper {
        position: relative;

        min-height: 350px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Background Shape */

    .lkh-product-bg-shape {
        position: absolute;

        top: 5%;
        right: -10%;

        width: 100%;
        height: 90%;

        border-radius: 20px;

        background: linear-gradient(
            135deg,
            #e0f2fe,
            #bae6fd
        );

        clip-path: polygon(
            15% 0,
            100% 0,
            100% 100%,
            0 100%
        );
    }

    /* Product Image */

    .lkh-product-image {
        position: relative;
        z-index: 1;

        width: 100%;
        max-width: 100%;
        max-height: 400px;

        object-fit: contain;

        filter: drop-shadow(
            0 20px 30px rgba(0, 0, 0, 0.15)
        );
    }

    /* =========================
       TABLET
    ========================= */

    @media (max-width: 991.98px) {

        .lkh-expertise-section {
            padding: 65px 0;
        }

        .lkh-product-image-wrapper {
            min-height: 300px;
            margin-top: 30px;
        }

        .lkh-product-bg-shape {
            right: 0;
            width: 100%;
        }
    }

    /* =========================
       MOBILE
    ========================= */

    @media (max-width: 575.98px) {

        .lkh-expertise-section {
            padding: 50px 0;
        }

        .lkh-tagline {
            font-size: 0.8rem;
        }

        .lkh-description {
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .lkh-btn-gradient {
            padding: 12px 24px;
            font-size: 0.95rem;
        }

        .lkh-feature-list {
            gap: 20px;
            margin-top: 30px;
        }

        .lkh-feature-item {
            gap: 12px;
        }

        .lkh-feature-icon {
            width: 42px;
            height: 42px;
            flex-basis: 42px;
            font-size: 1.15rem;
        }

        .lkh-feature-title {
            font-size: 0.95rem;
        }

        .lkh-feature-subtitle {
            font-size: 0.8rem;
        }

        .lkh-product-image-wrapper {
            min-height: 250px;
            margin-top: 25px;
        }

        .lkh-product-bg-shape {
            top: 10%;
            height: 80%;
        }
    }

    /* =========================
       EXTRA SMALL DEVICES
    ========================= */

    @media (max-width: 380px) {

        .lkh-btn-gradient {
            width: 100%;
            justify-content: center;
        }

        .lkh-feature-item {
            gap: 10px;
        }

        .lkh-feature-title {
            font-size: 0.9rem;
        }

        .lkh-feature-subtitle {
            font-size: 0.78rem;
        }
    }








/* ==========================================
   LIGHT KHARIDO SHOWCASE CARDS
========================================== */

.lk-showcase-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.lk-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}


/* Image */

.lk-showcase-image {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: #f5f7fa;
}

.lk-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lk-showcase-card:hover .lk-showcase-image img {
    transform: scale(1.07);
}


/* Service / Product Badge */

.lk-showcase-type {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 13px;
    background: #ec253f;
    color: #ffffff;
    border-radius: 30px;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
}

.lk-showcase-type.product {
    background: #172033;
}


/* Bottom Content */

.lk-showcase-content {
    padding: 20px 21px 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 88px;
}

.lk-showcase-content h5 {
    margin: 0;
    color: #172033;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 750;
}


/* Explore Link */

.lk-showcase-content a {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff0f2;
    color: #ec253f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lk-showcase-content a span {
    display: none;
}

.lk-showcase-content a:hover {
    background: #ec253f;
    color: #ffffff;
    transform: translateX(3px);
}


/* Mobile */

@media (max-width: 767px) {

    .lk-showcase-image {
        height: 220px;
    }

    .lk-showcase-content {
        padding: 18px;
    }

    .lk-showcase-content h5 {
        font-size: 16px;
    }

}





/* ================================
   WHY CHOOSE US - LIGHT KHARIDO
================================ */

.lk-why-section {
    padding: 50px 0;
    background: #f8f9fb;
    overflow: hidden;
}

/* Heading */

.lk-why-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.lk-why-tag {
    display: inline-block;
    margin-bottom: 13px;
    padding: 8px 16px;
    background: #fff0f2;
    color: #ec253f;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.lk-why-heading h2 {
    margin: 0 0 16px;
    color: #172033;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.lk-why-heading h2 span {
    color: #ec253f;
}

.lk-why-heading p {
    margin: 0;
    color: #6c7482;
    font-size: 16px;
    line-height: 1.8;
}

/* Image */

.lk-why-image {
    position: relative;
    height: 560px;
    border-radius: 25px;
    overflow: hidden;
    background: #e9edf2;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.10);
}

.lk-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.lk-why-image:hover img {
    transform: scale(1.05);
}

/* Experience Badge */

.lk-why-experience {
    position: absolute;
    left: 25px;
    bottom: 25px;
    width: 190px;
    padding: 22px 24px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.lk-why-experience strong {
    display: block;
    color: #707784;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lk-why-experience span {
    display: block;
    margin: 2px 0 3px;
    color: #ec253f;
    font-size: 36px;
    line-height: 1;
    font-weight: 850;
}

.lk-why-experience small {
    color: #172033;
    font-size: 11px;
    font-weight: 700;
}

/* Feature Cards */

.lk-why-card {
    position: relative;
    height: 100%;
    padding: 28px 25px 25px;
    background: #ffffff;
    border: 1px solid #eceef2;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.lk-why-card:hover {
    transform: translateY(-7px);
    border-color: #ec253f;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

/* Number */

.lk-why-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #edf0f4;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    transition: color 0.3s ease;
}

.lk-why-card:hover .lk-why-number {
    color: #ffe4e8;
}

/* Icon */

.lk-why-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f2;
    color: #ec253f;
    border-radius: 14px;
    font-size: 21px;
    transition: all 0.3s ease;
}

.lk-why-card:hover .lk-why-icon {
    background: #ec253f;
    color: #ffffff;
    transform: rotate(-5deg);
}

/* Content */

.lk-why-card h4 {
    position: relative;
    margin: 0 0 11px;
    color: #172033;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 750;
}

.lk-why-card p {
    margin: 0;
    color: #737b88;
    font-size: 14px;
    line-height: 1.75;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .lk-why-section {
        padding: 75px 0;
    }

    .lk-why-heading {
        margin-bottom: 45px;
    }

    .lk-why-heading h2 {
        font-size: 36px;
    }

    .lk-why-image {
        height: 450px;
    }
}

@media (max-width: 767px) {

    .lk-why-section {
        padding: 60px 0;
    }

    .lk-why-heading h2 {
        font-size: 30px;
    }

    .lk-why-heading p {
        font-size: 14px;
    }

    .lk-why-image {
        height: 380px;
        border-radius: 20px;
    }

    .lk-why-experience {
        left: 15px;
        bottom: 15px;
        width: 165px;
        padding: 18px;
    }

    .lk-why-experience span {
        font-size: 30px;
    }

    .lk-why-card {
        padding: 23px 20px;
    }

    .lk-why-card h4 {
        font-size: 17px;
    }

    .lk-why-card p {
        font-size: 13px;
    }
}





/* =========================================
   LIGHT KHARIDO BLOG SECTION
========================================= */

.lk-blog-section {
    padding: 50px 0;
    background: #ffffff;
}


/* =========================================
   HEADING
========================================= */

.lk-blog-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.lk-blog-tag {
    display: inline-block;
    margin-bottom: 13px;
    padding: 8px 17px;
    background: #fff0f2;
    color: #ec253f;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.lk-blog-heading h2 {
    margin: 0;
    color: #172033;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.lk-blog-heading h2 span {
    color: #ec253f;
}

.lk-blog-heading-text {
    max-width: 500px;
}

.lk-blog-heading-text p {
    margin: 0;
    color: #707784;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   BLOG CARD
========================================= */

.lk-blog-card {
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e9ebef;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.lk-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.11);
}


/* =========================================
   BLOG IMAGE
========================================= */

.lk-blog-image {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: #f3f5f7;
}

.lk-blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lk-blog-card:hover .lk-blog-image img {
    transform: scale(1.07);
}


/* Category */

.lk-blog-category {
    position: absolute;
    left: 18px;
    bottom: 18px;

    padding: 8px 13px;

    background: #ffffff;
    color: #ec253f;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}


/* =========================================
   BLOG CONTENT
========================================= */

.lk-blog-content {
    padding: 25px 25px 27px;
}


/* Meta */

.lk-blog-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
}

.lk-blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #9298a2;
    font-size: 11px;
    font-weight: 600;
}

.lk-blog-meta i {
    color: #ec253f;
    font-size: 12px;
}


/* Title */

.lk-blog-content h3 {
    margin: 0 0 13px;

    color: #172033;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 750;

    transition: color 0.3s ease;
}

.lk-blog-card:hover .lk-blog-content h3 {
    color: #ec253f;
}


/* Description */

.lk-blog-content p {
    margin: 0 0 22px;

    color: #737b87;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================
   READ ARTICLE
========================================= */

.lk-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #172033;

    font-size: 13px;
    font-weight: 750;

    text-decoration: none;

    transition: all 0.3s ease;
}

.lk-blog-read span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff0f2;
    color: #ec253f;

    transition: all 0.3s ease;
}

.lk-blog-read:hover {
    color: #ec253f;
}

.lk-blog-read:hover span {
    background: #ec253f;
    color: #ffffff;
    transform: translateX(4px);
}


/* =========================================
   VIEW ALL
========================================= */

.lk-blog-bottom {
    margin-top: 45px;
}

.lk-blog-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 22px;

    background: #172033;
    color: #ffffff;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.lk-blog-all-btn i {
    transition: transform 0.3s ease;
}

.lk-blog-all-btn:hover {
    background: #ec253f;
    color: #ffffff;
}

.lk-blog-all-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .lk-blog-section {
        padding: 75px 0;
    }

    .lk-blog-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
        gap: 15px;
    }

    .lk-blog-heading h2 {
        font-size: 36px;
    }

    .lk-blog-heading-text {
        max-width: 650px;
    }
}


@media (max-width: 767px) {

    .lk-blog-section {
        padding: 60px 0;
    }

    .lk-blog-heading h2 {
        font-size: 30px;
    }

    .lk-blog-heading-text p {
        font-size: 14px;
    }

    .lk-blog-image {
        height: 220px;
    }

    .lk-blog-content {
        padding: 21px;
    }

    .lk-blog-content h3 {
        font-size: 18px;
    }

    .lk-blog-content p {
        font-size: 13px;
    }

}







/* =========================================
   LIGHT KHARIDO TESTIMONIAL SECTION
========================================= */

.lk-testimonial-section {
    position: relative;
    padding: 50px 0;
    background: #f8f9fb;
    overflow: hidden;
}

/* Heading */

.lk-testimonial-heading {
    max-width: 720px;
    margin: 0 auto 55px;
}

.lk-testimonial-tag {
    display: inline-block;
    margin-bottom: 13px;
    padding: 8px 17px;
    background: #fff0f2;
    color: #ec253f;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.lk-testimonial-heading h2 {
    margin: 0 0 15px;
    color: #172033;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.lk-testimonial-heading h2 span {
    color: #ec253f;
}

.lk-testimonial-heading p {
    margin: 0;
    color: #707784;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   SWIPER
========================================= */

.lk-testimonial-swiper {
    width: 100%;
    padding: 10px 5px 70px;
    overflow: hidden;
}

.lk-testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

.lk-testimonial-swiper .swiper-slide {
    height: auto;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.lk-testimonial-card {
    position: relative;
    height: 100%;
    min-height: 330px;
    padding: 35px 32px 30px;
    background: #ffffff;
    border: 1px solid #eceef2;
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.lk-testimonial-card:hover {
    transform: translateY(-7px);
    border-color: #ec253f;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}


/* Quote */

.lk-quote-icon {
    position: absolute;
    top: 25px;
    right: 27px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0f2;
    color: #ec253f;

    border-radius: 50%;
    font-size: 18px;
}


/* Stars */

.lk-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.lk-stars i {
    color: #f5b301;
    font-size: 13px;
}


/* Review */

.lk-testimonial-text {
    margin: 0 0 30px;
    color: #626b78;
    font-size: 15px;
    line-height: 1.85;
}


/* Client */

.lk-client-info {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}

.lk-client-avatar {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #ec253f;
    color: #ffffff;

    border-radius: 50%;

    font-size: 17px;
    font-weight: 800;
}

.lk-client-info h5 {
    margin: 0 0 4px;
    color: #172033;
    font-size: 16px;
    font-weight: 750;
}

.lk-client-info span {
    color: #8a919c;
    font-size: 12px;
}


/* =========================================
   NAVIGATION
========================================= */

.lk-testimonial-navigation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.lk-testimonial-prev,
.lk-testimonial-next {
    width: 45px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e1e4e9;
    border-radius: 50%;

    background: #ffffff;
    color: #172033;

    cursor: pointer;

    transition: all 0.3s ease;
}

.lk-testimonial-prev:hover,
.lk-testimonial-next:hover {
    background: #ec253f;
    color: #ffffff;
    border-color: #ec253f;
}

.lk-testimonial-pagination {
    width: auto !important;
}

.lk-testimonial-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    background: #d4d8de;
    opacity: 1;
    transition: all 0.3s ease;
}

.lk-testimonial-pagination .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 10px;
    background: #ec253f;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .lk-testimonial-section {
        padding: 75px 0;
    }

    .lk-testimonial-heading {
        margin-bottom: 40px;
    }

    .lk-testimonial-heading h2 {
        font-size: 36px;
    }

    .lk-testimonial-card {
        min-height: 320px;
    }
}


@media (max-width: 767px) {

    .lk-testimonial-section {
        padding: 60px 0;
    }

    .lk-testimonial-heading h2 {
        font-size: 30px;
    }

    .lk-testimonial-heading p {
        font-size: 14px;
    }

    .lk-testimonial-card {
        min-height: 315px;
        padding: 28px 22px 25px;
        border-radius: 18px;
    }

    .lk-testimonial-text {
        font-size: 14px;
        line-height: 1.75;
    }

    .lk-quote-icon {
        width: 42px;
        height: 42px;
        top: 20px;
        right: 20px;
    }

}







/* =========================================
   LIGHT KHARIDO HERO SLIDER
========================================= */

.lk-hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.lk-hero-swiper {
    width: 100%;
    height: auto;
}

.lk-hero-swiper .swiper-slide {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.lk-hero-swiper picture {
    display: block;
    width: 100%;
    line-height: 0;
}

.lk-hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* =========================================
   NAVIGATION
========================================= */

.lk-hero-prev,
.lk-hero-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.lk-hero-prev:after,
.lk-hero-next:after {
    font-size: 18px;
    font-weight: 700;
    color: #172033;
}

.lk-hero-prev:hover,
.lk-hero-next:hover {
    background: #EC253F;
}

.lk-hero-prev:hover:after,
.lk-hero-next:hover:after {
    color: #ffffff;
}


/* =========================================
   PAGINATION
========================================= */

.lk-hero-pagination {
    bottom: 25px !important;
}

.lk-hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #ffffff;
    transition: all 0.3s ease;
}

.lk-hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    background: #EC253F;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .lk-hero-prev,
    .lk-hero-next {
        width: 42px;
        height: 42px;
    }

    .lk-hero-prev:after,
    .lk-hero-next:after {
        font-size: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .lk-hero-section {
        width: 100%;
    }

    .lk-hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .lk-hero-prev,
    .lk-hero-next {
        width: 34px;
        height: 34px;
    }

    .lk-hero-prev {
        left: 10px;
    }

    .lk-hero-next {
        right: 10px;
    }

    .lk-hero-prev:after,
    .lk-hero-next:after {
        font-size: 12px;
    }

    .lk-hero-pagination {
        bottom: 12px !important;
    }

    .lk-hero-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

    .lk-hero-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }

}