/* =========================================================
   PRODUCTS HERO
========================================================= */

.lakhsai-products-hero {
    width: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.lakhsai-products-container {
    width: 100%;
    max-width: 1450px;
    min-height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.lakhsai-products-content {
    width: 50%;
    padding-left: 65px;
    padding-right: 30px;
    position: relative;
    z-index: 5;
}

.lakhsai-products-label {
    margin-bottom: 25px;
    color: #f49b00;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .8px;
}

.lakhsai-products-content h1 {
    margin: 0;
    color: #07132f;
    font-size: 46px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -1px;
}

.lakhsai-products-content h1 span {
    color: #205bd8;
}

.lakhsai-products-content p {
    max-width: 590px;
    margin: 28px 0 0;
    color: #263044;
    font-size: 20px;
    line-height: 1.8;
}


/* =========================================================
   RIGHT IMAGE - FIXED TO RIGHT END
========================================================= */

.lakhsai-products-image {
    position: absolute;

    right: 0;
    top: 0;

    width: 58%;
    height:100%;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    z-index: 2;
}

.lakhsai-products-image img {
    width: 100%;
    height: auto;

    max-width: none;

    display: block;

    object-fit: contain;

    object-position: right center;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1451px) {

    .lakhsai-products-image {
        width: 60vw;
        right: calc((1450px - 100vw) / 2);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .lakhsai-products-container {
        min-height: 450px;
    }

    .lakhsai-products-content {
        width: 48%;
        padding-left: 35px;
    }

    .lakhsai-products-content h1 {
        font-size: 38px;
    }

    .lakhsai-products-content p {
        font-size: 15px;
    }

    .lakhsai-products-image {
        width: 58%;
    }

    .lakhsai-products-image img {
        width: 110%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .lakhsai-products-container {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .lakhsai-products-content {
        width: 100%;
        padding: 45px 25px 20px;
        text-align: center;
    }

    .lakhsai-products-label {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .lakhsai-products-content h1 {
        font-size: 30px;
        line-height: 1.25;
    }

    .lakhsai-products-content p {
        margin: 20px auto 0;
        font-size: 14px;
        line-height: 1.7;
    }


    /* Reset absolute positioning on mobile */

    .lakhsai-products-image {
        position: relative;

        right: auto;
        top: auto;

        width: 100%;
        height: auto;

        min-height: 300px;

        display: flex;
        align-items: center;
        justify-content: flex-end;

        overflow: hidden;
    }

    .lakhsai-products-image img {
        width: 125%;

        max-width: none;

        height: auto;

        margin-left: auto;
        margin-right: -1px;

        object-position: right center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .lakhsai-products-content {
        padding: 35px 18px 15px;
    }

    .lakhsai-products-content h1 {
        font-size: 27px;
    }

    .lakhsai-products-content p {
        font-size: 14px;
    }

    .lakhsai-products-image {
        min-height: 250px;
    }

    .lakhsai-products-image img {
        width: 135%;
        margin-right: -1px;
    }

}


/* =========================================================
   DIGITAL PRODUCTS SECTION
========================================================= */

.lakhsai-products-section {

    width: 100%;

    padding: 15px 0 45px;

    background: #ffffff;

    overflow: hidden;

}


/* =========================================================
   WRAPPER
========================================================= */

.lakhsai-products-wrapper {

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 0 18px;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.lakhsai-products-heading {

    text-align: center;

    margin-bottom: 18px;

}


.lakhsai-products-heading h2 {

    margin: 0;

    color: #07132f;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;

}


.lakhsai-products-heading h2 span {

    color: #205bd8;

}


/* =========================================================
   TITLE DECORATION
========================================================= */

.lakhsai-title-decoration {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 9px;

    margin-top: 5px;

}


.lakhsai-title-decoration span {

    display: block;

    width: 45px;

    height: 2px;

    background: #efa300;

}


.lakhsai-title-decoration i {

    color: #efa300;

    font-size: 14px;

}


/* =========================================================
   PRODUCTS GRID
========================================================= */

.lakhsai-products-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;

    align-items: stretch;

}


/* =========================================================
   PRODUCT CARD
========================================================= */

.lakhsai-product-card {

    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    min-height: 620px;

    padding: 20px 18px 18px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 12px;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.04);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.lakhsai-product-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.09);

}


/* =========================================================
   PRODUCT ICON
========================================================= */

.lakhsai-product-icon {

    width: 55px;

    height: 55px;

    min-width: 55px;

    margin: 0 auto 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

}


.lakhsai-product-icon i {

    font-size: 27px;

}


/* Pink */

.lakhsai-product-icon.pink {

    background:
        linear-gradient(
            135deg,
            #ec3975,
            #d92d69
        );

}


/* Purple */

.lakhsai-product-icon.purple {

    background:
        linear-gradient(
            135deg,
            #8b45d4,
            #6724bb
        );

}


/* Green */

.lakhsai-product-icon.green {

    background:
        linear-gradient(
            135deg,
            #0cb85c,
            #079c4d
        );

}


/* =========================================================
   PRODUCT ICON CIRCLES
========================================================= */

.lakhsai-product-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;

    margin: 0 auto 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    flex-shrink: 0;
}


/* Ambulance */

.lakhsai-product-icon.red {
    background: #ed3030;
}


/* HR Sakthi */

.lakhsai-product-icon.blue {
    background: #1685d8;
}


/* T2H */

.lakhsai-product-icon.orange {
    background: #f47a00;
}


/* Smart Agriculture */

.lakhsai-product-icon.green {
    background: #0aaa55;
}


/* Temple */

.lakhsai-product-icon.purple {
    background: #7540c8;
}


/* Icon */

.lakhsai-product-icon i {
    display: block;

    font-size: 25px;

    line-height: 1;

    color: #ffffff;
}


/* =========================================================
   FIX VIEW DETAILS BUTTON
========================================================= */

.lakhsai-product-card {
    display: flex;
    flex-direction: column;
}


/* Push button to bottom */

.lakhsai-product-button {
    width: 100%;
    height: 38px;
    min-height: 38px;

    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    border-radius: 22px;

    color: #fff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    flex-shrink: 0;
}


/* Make sure the button is visible */

.lakhsai-product-button span {
    display: inline-block;
}

.lakhsai-product-button i {
    display: inline-block;

    font-size: 12px;

    color: #fff;
}


/* =========================================================
   BUTTON COLORS
========================================================= */

.red-button {
    background: #ed3030 !important;
}

.blue-button {
    background: #1685d8 !important;
}

.orange-button {
    background: #f47a00 !important;
}

.green-button {
    background: #0aaa55 !important;
}

.purple-button {
    background: #7540c8 !important;
}

/* =========================================================
   PRODUCT TITLE
========================================================= */

.lakhsai-product-card h3 {

    min-height: 45px;

    margin: 0 0 4px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #111827;

    font-size: 19px;

    line-height: 1.2;

    font-weight: 700;

}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.lakhsai-product-image {

    width: 100%;

    height: 250px;

    margin: 4px 0 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.lakhsai-product-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.lakhsai-product-card p {

    min-height: 80px;

    margin: 5px 0 8px;

    color: #303846;

    font-size: 14px;

    line-height: 1.55;

    font-weight: 400;

}


/* =========================================================
   FEATURE LIST
========================================================= */

.lakhsai-product-card ul {

    list-style: none;

    margin: 0;

    padding: 0;

    min-height: 106px;

}


.lakhsai-product-card ul li {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-bottom: 9px;

    color: #27303d;

    font-size:14px;

    line-height: 1.35;

}


.lakhsai-product-card ul li i {

    flex-shrink: 0;

    margin-top: 2px;

    font-size: 10px;

}


/* Pink check */

.lakhsai-product-card:nth-child(1)
ul li i {

    color: #df3b72;

}


/* Purple check */

.lakhsai-product-card:nth-child(2)
ul li i {

    color: #8134c9;

}


/* Green checks */

.lakhsai-product-card:nth-child(3)
ul li i,
.lakhsai-product-card:nth-child(4)
ul li i {

    color: #08a653;

}



.lakhsai-product-card:nth-child(5)
ul li i {

    color:red;

}

.lakhsai-product-card:nth-child(6)
ul li i {

    color:blue;

}

.lakhsai-product-card:nth-child(7)
ul li i {

    color:orange;

}

.lakhsai-product-card:nth-child(8)
ul li i {

    color:#7540c8;

}

/* =========================================================
   VIEW DETAILS BUTTON
========================================================= */

.lakhsai-product-button {

    width: 100%;

    min-height: 38px;

    margin-top: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 17px;

    border-radius: 25px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.lakhsai-product-button i {

    font-size: 13px;

    transition: transform .25s ease;

}


.lakhsai-product-button:hover {

    color: #ffffff;

    transform: translateY(-2px);

}


.lakhsai-product-button:hover i {

    transform: translateX(4px);

}


/* Pink button */

.pink-button {

    background:
        linear-gradient(
            90deg,
            #ed3975,
            #e52d6c
        );

}


/* Purple button */

.purple-button {

    background:
        linear-gradient(
            90deg,
            #863ed4,
            #7130c5
        );

}


/* Green button */

.green-button {

    background:
        linear-gradient(
            90deg,
            #0ab65b,
            #08a451
        );

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .lakhsai-products-wrapper {

        max-width: 750px;

    }


    .lakhsai-products-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;

    }


    .lakhsai-product-card {

        min-height: 610px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .lakhsai-products-section {

        padding: 20px 0 35px;

    }


    .lakhsai-products-wrapper {

        padding: 0 15px;

    }


    .lakhsai-products-heading {

        margin-bottom: 20px;

    }


    .lakhsai-products-heading h2 {

        font-size: 25px;

    }


    .lakhsai-products-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .lakhsai-product-card {

        min-height: 0;

        padding: 22px 20px 20px;

    }


    .lakhsai-product-card h3 {

        min-height: auto;

        font-size: 20px;

    }


    .lakhsai-product-image {

        height: 230px;

    }


    .lakhsai-product-card p {

        min-height: auto;

        font-size: 14px;

    }


    .lakhsai-product-card ul {

        min-height: auto;

        margin-bottom: 15px;

    }


    .lakhsai-product-card ul li {

        font-size: 13px;

    }


    .lakhsai-product-button {

        min-height: 42px;

        font-size: 14px;

    }


    .desktop-break {

        display: none;

    }

}

/* =========================================================
   IDEA CTA BANNER
========================================================= */

.lakhsai-idea-banner {

    position: relative;

    width: 94%;
    max-width: 1200px;

    height: 180px;

    margin: 25px auto 35px;

    overflow: hidden;

    border-radius: 14px;

    background:
   #000080;

    display: flex;
    align-items: center;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.12);
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.lakhsai-idea-content {

    position: relative;
    z-index: 3;

    width: 50%;

    padding-left: 46px;

    color: #fff;
}


.lakhsai-idea-content h2 {

    margin: 0 0 8px;

    color: #fff;

    font-size: 27px;
    font-weight: 600;

    line-height: 1.2;
}


.lakhsai-idea-content p {

    margin: 0 0 15px;

    color: #fff;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;
}


/* =========================================================
   BUTTON
========================================================= */

.lakhsai-idea-button {

    width: 153px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    border: 1px solid rgba(255,255,255,0.65);

    border-radius: 7px;

    color: #fff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 500;

    background: rgba(255,255,255,0.03);

    transition: all .3s ease;
}


.lakhsai-idea-button i {

    font-size: 12px;

    transition: transform .3s ease;
}


.lakhsai-idea-button:hover {

    color: #fff;

    background: rgba(255,255,255,0.12);

    border-color: #fff;
}


.lakhsai-idea-button:hover i {

    transform: translateX(4px);
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.lakhsai-idea-image {

    position: absolute;

    right: 0;
    top: 0;

    width: 48%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    overflow: hidden;
}


.lakhsai-idea-image img {

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: right center;

    display: block;
}