﻿.industry-section {
    background-color: #f2f2f2;
    padding: 5rem 2rem 0.5rem;
    margin: 5rem 1rem 0 1rem;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
}


.industry-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.industry-left {
    flex: 1;
    min-width: 400px;
    max-width: 50%;
}

    .industry-left h1 {
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #3b3b3b;
        font-family: lato;
    }

    .industry-left p {
        color: #3b3b3b;
        font-size: 20px;
        margin-bottom: 2rem;
        line-height: 2.2rem;
        margin-top: -1rem;
        font-family: 'Lato';
    }

.industry-right {
    flex: 1;
    min-width: 400px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: -2rem;
}

.industry-card.large {
    background: linear-gradient(135deg, #A8E6CF, #AAE8D1, #ACEAD3, #AEECD5, #B0EED7);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /*    padding: 1rem;*/
    position: relative;
}

.card-left img {
    width: 18rem;
    border-radius: 10px;
    margin-top: -3rem;
}

.dividers {
    width: 2px;
    height: 13rem;
    background: #bbb;
    margin-left: -2rem;
}

.card-right {
    flex: 1;
}

.icon img {
    height: 1.7rem;
    margin-top: -5px;
    margin-left: -1px;
}


.card-right h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #3b3b3b;
    line-height: 3rem;
    font-family: 'Lato';
}

.card-right p {
    color: #3b3b3b;
    font-size: 20px;
    font-family: unset;
    text-align: left;
    font-family: 'Lato';
}


.industry-dropdown {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #dcdcdc;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 4rem;
}

    .industry-dropdown .fa-search {
        font-size: 20px;
        margin-right: 12px;
    }

    .industry-dropdown select {
        border: none;
        background: transparent;
        font-size: 20px;
        padding: 4px;
        outline: none;
        appearance: none;
        cursor: pointer;
        margin-top: 18px;
        font-family: 'Lato';
    }

.industry-dropdown {
    position: relative;
}

.dropdown-arrow {
    position: absolute;
    right: 14px;
    width: 40px;
    height: auto;
    pointer-events: none;
}




/* DROPDOWN OPTIONS */
.industry-dropdown select option {
    padding: 12px;
    font-size: 18px;
    font-family: 'Montserrat';
}

    .industry-dropdown select option:hover {
        background: #f0f0f0 !important;
    }

    .industry-dropdown select option:checked {
        background: #e6e6e6 !important;
    }

    .industry-dropdown select option:active {
        background: #dcdcdc !important;
    }

/* ICONS */
.top-icon,
.icon {
    position: absolute;
    top: 6px;
    right: 15px;
    background: white;
    border-radius: 50%;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
}

/* GRID (3-CARD + 2-CARD) */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: -1.4rem;
}

.industry-grids {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: -1.4rem;
}

/* SMALL CARD */
.small-card {
    background: white;
    border-radius: 1rem;
    padding: 1.2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.6rem;
    min-height: 180px;
    min-width: 0px;
}

    .small-card h4 {
        font-size: 18px;
        margin-top: 2.5rem;
        white-space: nowrap;
        color: #3b3b3b;
        margin-left: -5px;
        font-family: 'Lato';
        font-weight: 600;
    }

    .small-card p {
        font-size: 17px;
        color: #3b3b3b;
        line-height: 1.3rem;
        margin-bottom: -3rem;
        margin-top: -2.6rem;
        text-align: left;
        font-family: 'Lato';
    }

    .small-card .icon {
        position: absolute;
        top: 15px;
        left: 15px;
        font-size: 1.2rem;
    }

/* COLORS */
.blue {
    background: linear-gradient(123.5deg, #AECBFA 7.21%, #B8D1FB 28.24%, #C1D8FC 49.28%, #CBDEFD 70.32%, #D4E4FE 91.35%);
}

.purple {
    background: linear-gradient(121.88deg, #CDB4DB 7.17%, #D0BADD 27.94%, #D4BFE0 48.7%, #D7C5E2 69.47%, #DBCBE4 90.23%);
}

.pink {
    background: #FFD3B6;
}

.teal {
    background: #B2DFDB;
}

.violet {
    background: #FFB6B9;
}

/* TABLET RESPONSIVE */
@media (max-width: 992px) {
    .industry-container {
        flex-direction: column;
    }

    .industry-left,
    .industry-right {
        max-width: 100%;
    }

    .industry-card.large {
        flex-direction: column;
        text-align: center;
    }

    .divider {
        display: none;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE – 1 COLUMN */
@media (max-width: 600px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

/* 6 CARD RESPONSIVE (2-2-2) */
@media (max-width:1024px) {

    .industry-right {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .industry-card.large {
        order: 1;
        width: 100%;
        display: block !important;
    }

        .industry-card.large .card-left img,
        .industry-card.large .dividers {
            display: none !important;
        }

    .industry-grid,
    .industry-grids {
        display: contents !important;
    }

    .card-right h3 {
        text-align: left;
        white-space: nowrap;
        line-height: 2.5rem;
        font-size: 30px;
        margin-top: 3rem;
        font-weight: 600;
        padding-left: 12px;
    }

    .industry-left h1 {
        font-size: 70px;
        font-weight: 600;
        margin-bottom: 2.5rem;
        line-height: 5rem;
        margin-top: 0.5rem;
        font-family: 'Lato';
    }

    .industry-left p {
        font-size: 35px;
        line-height: 3.2rem;
        font-family: 'Lato';
    }

    .card-right p {
        font-size: 30px;
        line-height: 2.5rem;
        margin-bottom: 2rem;
        margin-top: 1rem 15px;
        font-family: 'Lato';
        padding-left: 12px;
    }

    .small-card p {
        font-size: 30px;
        line-height: 2.5rem;
        margin-bottom: 2rem;
        margin-top: -1rem;
        font-family: 'Lato';
    }

    .small-card h4 {
        font-size: 30px;
        margin-top: 3.5rem;
        font-family: 'Lato';
    }

    .small-card {
        min-height: 160px;
        padding: 1rem;
    }

    .industry-dropdown select option {
        padding: 12px;
        font-size: 13px;
        font-family: 'Montserrat';
    }


    .industry-dropdown .fa-search {
        font-size: 23px;
        color: #555;
        margin-right: 12px;
    }

    .industry-dropdown select {
        width: 100%;
        border: none;
        background: transparent;
        font-size: 27px;
        padding: 4px;
        outline: none;
        appearance: none;
        cursor: pointer;
        margin-top: 18px;
        font-family: 'Montserrat';
    }

    .industry-dropdown::after {
        content: "▾";
        position: absolute;
        right: 14px;
        font-size: 37px;
        color: #3b3b3b;
        display: none;
    }

    .top-icon, .icon {
        position: absolute;
        top: 6px;
        /* right: 15px; */
        background: white;
        border-radius: 50%;
        padding: 0.5rem;
        width: 2.5rem;
        height: 2.5rem;
        left: 1.5rem;
    }
}

/* MOBILE DROPDOWN */
@media (max-width: 600px) {
    .industry-dropdown {
        max-width: 100%;
        padding: 10px 14px;
        border-radius: 14px;
    }

        .industry-dropdown .fa-search {
            font-size: 16px;
            margin-right: 10px;
        }

        .industry-dropdown select {
            font-size: 14px;
        }

        .industry-dropdown::after {
            font-size: 14px;
            right: 14px;
        }
}








/*Section first*/
/* Whole section wrapper */
.healthcare-section {
    width: 100%;
    padding: 60px 80px;
    box-sizing: border-box;
}

/* Top Row: Heading + Stats */
.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.intro h1 {
    margin: 0;
    font-size: 2.2rem;
    color: #3b3b3b;
    font-weight: 600;
    font-family: 'Lato';
    line-height: 3rem;
}

.intro p {
    color: #3b3b3b;
    font-size: 20px;
    font-family: 'Lato';
}

/* Stats Styling */
.stats {
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
}

.stat-block {
    text-align: center;
    min-width: 129px;
    height: 4rem;
}

    .stat-block h2 {
        margin: 0;
        font-size: 40px;
        font-weight: bold;
        color: #3b3b3b;
        margin-top: -2rem;
    }

    .stat-block p {
        margin: 4px 0 0 0;
        font-size: 20px;
        color: #3b3b3b;
        line-height: 1.2em;
        font-family: unset;
    }

.divider {
    height: 88px;
    width: 1px;
    background-color: #3b3b3b;
    margin-top: -2rem;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 100px;
    gap: 40px;
}

/* ==== CHALLENGES DESKTOP ==== */
.challenges-section {
    flex: 1;
    max-width: 55%;
}

    .challenges-section h1 {
        /*        font-size: 50px;
        font-weight: 500;
        color: #3b3b3b;
        font-family: unset;
        line-height: 3.5rem;
        margin-top: -2rem;*/

        font-size: 2.2rem;
        font-weight: 600;
        color: #3b3b3b;
        line-height: 3rem;
        margin-top: -2rem;
        font-family: 'Lato';
    }

    .challenges-section p {
        font-size: 20px;
        color: #3b3b3b;
        margin-bottom: 18px;
        line-height: 1.5;
        margin-top: -1rem;
        font-family: 'Lato';
    }

.challenges-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #E8F2FB;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

    .icon-box img {
        width: 35px;
        height: 35px;
    }

.challenge-item h3 {
    margin: 0;
    font-size: 20px;
    color: #3b3b3b;
    margin-top: 1rem;
    line-height: 2rem;
    font-weight: 600;
    font-family: 'Lato';
}

.challenge-item p {
    font-size: 20px;
    color: #3b3b3b;
    margin-top: 0rem;
}

.underline {
    position: relative;
    height: 1px;
    background: #3b3b3b;
    margin: 15px 0;
    margin-top: -1rem;
}

    .underline::before,
    .underline::after {
        content: "";
        position: absolute;
        top: -4px;
        width: 7px;
        height: 7px;
        background: #3b3b3b;
        border-radius: 50%;
    }

    .underline::before {
        left: 0;
    }

    .underline::after {
        right: 0;
    }

.image-section {
    flex: 1;
    max-width: 40%;
}

    .image-section img {
        width: 109%;
        max-width: 120%;
        border-radius: 5px;
        margin-left: -3rem;
    }



/*Responsive*/
@media (max-width: 1024px) and (min-width: 601px) {

    .healthcare-section {
        padding: 50px 40px;
    }

    .intro h1 {
        font-size: 40px;
        line-height: 3.2rem;
    }

    .intro p {
        font-size: 16px;
    }

    .stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .divider {
        height: 70px;
        margin-top: 0;
    }

    .stat-block h2 {
        font-size: 32px;
    }

    .stat-block p {
        font-size: 15px;
    }

    .bottom-row {
        flex-direction: column;
        gap: 40px;
        margin-top: 70px;
    }

    /* Challenges Tablet */
    .challenges-section {
        max-width: 95%;
        text-align: center;
    }

        .challenges-section h1 {
            font-size: 34px;
            line-height: 3.6rem;
            text-align: left;
            color: #3b3b3b;
        }

        .challenges-section p {
            font-size: 22px;
            color: #3b3b3b;
            margin-bottom: 25px;
            font-family: 'Montserrat';
            text-align: left;
        }

    .challenge-item {
        justify-content: center;
    }

        .challenge-item h3 {
            margin: 0;
            font-size: 35px;
            color: #3b3b3b;
            margin-top: 1rem;
            line-height: 3rem;
            text-align: left;
            font-family: 'Lato';
            font-weight: 600;
        }

        .challenge-item p {
            font-size: 22px;
            color: #3b3b3b;
            font-family: 'Montserrat';
            text-align: left;
        }

    .icon-box {
        width: 140px;
        height: 86px;
        background: #E8F2FB;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1.5rem;
    }

        .icon-box img {
            width: 50px;
            height: 50px;
        }

    .image-section img {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}



/*Responsive*/
@media (max-width: 1024px) and (min-width: 601px) {

    .healthcare-section {
        padding: 50px 40px;
    }

    .intro h1 {
        font-size: 3.5rem;
        line-height: 4.2rem;
        font-family: 'Lato';
    }

    .intro p {
        font-size: 35px;
        font-family: 'Lato';
    }

    .stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .divider {
        height: 70px;
        margin-top: 0;
    }

    .stat-block h2 {
        font-size: 45px;
        padding-bottom: 16px;
    }

    .stat-block p {
        font-size: 35px;
        font-family: 'Lato';
    }

    .bottom-row {
        flex-direction: column;
        gap: 40px;
        margin-top: 70px;
    }

    /* Challenges Tablet */
    .challenges-section {
        max-width: 95%;
        text-align: center;
    }

        .challenges-section h1 {
            font-size: 35px;
            line-height: 3.6rem;
            text-align: left;
            color: #3b3b3b;
            margin-top: 19px;
            font-family: 'Lato';
        }

        .challenges-section p {
            font-size: 35px;
            color: #3b3b3b;
            margin-bottom: 25px;
            font-family: 'Lato';
            text-align: left;
        }

    .challenge-item {
        justify-content: center;
    }

    .image-section {
        flex: 1;
        max-width: 89%;
    }

        .image-section img {
            width: 122%;
            max-width: 122%;
            margin-left: 0;
            margin-top: 20px;
            height: 58rem;
        }
}





/*section third*/

.transform-section {
    width: 100%;
    padding: 60px 80px;
    box-sizing: border-box;
    text-align: center;
}

    .transform-section h1 {
        font-size: 2.2rem;
        color: #3b3b3b;
        font-family: 'Lato';
        line-height: 3rem;
        font-weight: 600;
    }

.content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.text-content {
    flex: 1;
    max-width: 50%;
}

.image-content {
    flex: 1;
    max-width: 45%;
    text-align: right;
}

    .image-content img {
        width: 100%;
        max-width: 400px;
        border-radius: 10px;
        height: auto;
    }


@media (max-width: 1024px) and (min-width: 601px) {

    .transform-section {
        padding: 40px 30px;
    }

        .transform-section h1 {
            font-size: 3.5rem;
            color: #3b3b3b;
            font-family: 'Lato';
            line-height: 4.5rem;
            font-weight: 600;
        }

    .content-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        text-align: left;
    }

    .text-content {
        max-width: 50%;
    }

    .image-content {
        max-width: 50%;
        text-align: right;
    }

        .image-content img {
            max-width: 100%;
        }
}



/* ======================================
   📱 MOBILE (max-width: 600px)
   ➤ Still SIDE-BY-SIDE
   ➤ compact 60/40 ratio
====================================== */
@media (max-width: 600px) {

    .transform-section {
        padding: 30px 20px;
    }

    .content-row {
        display: flex;
        flex-direction: row; /* SIDE BY SIDE */
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        text-align: left;
    }

    .text-content {
        max-width: 60%; /* More space for text */
    }

        .text-content h2 {
            font-size: 30px;
            margin-bottom: 20px;
            color: #3b3b3b;
            white-space: nowrap;
            font-weight: 600;
            font-family: 'Montserrat';
            text-align: left;
        }

        .text-content p {
            font-size: 13.5px;
            line-height: 1.5em;
        }

    .image-content {
        max-width: 40%;
        text-align: right;
    }

        .image-content img {
            width: 100%;
            max-width: 150px;
        }
}






/*second img section*/
/* 🔹 Full Width Section */
.reverse-section {
    width: 100%;
    background-color: #fff;
    padding: 60px 0;
    box-sizing: border-box;
}

    /* 🔹 Inner Container for Spacing */
    .reverse-section .container {
        width: 90%;
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }

/* 🔹 Left: Image */
.image-content {
    flex: 1;
    text-align: center;
}

    .image-content img {
        width: 100%;
        max-width: 550px;
        border-radius: 12px;
        height: auto;
    }

/* 🔹 Right: Text */
.text-content {
    flex: 1;
}

    .text-content h2 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }

    .text-content p {
        font-size: 16px;
        color: #555;
        line-height: 1.7em;
        max-width: 95%;
    }

/* 🔹 Responsive Design */
@media (max-width: 900px) {
    .reverse-section .container {
        flex-direction: column;
        text-align: center;
    }

    .text-content p {
        text-align: justify;
    }
}


/*Third-img section*/
/* 🔹 Full Width Section */
.normal-section {
    width: 100%;
    background-color: #fff;
    padding: 60px 0;
    box-sizing: border-box;
}

    /* 🔹 Inner Container for Spacing */
    .normal-section .container {
        width: 90%;
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }

/* 🔹 Left: Text */
.text-content {
    flex: 1;
}

    .text-content h2 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }

    .text-content p {
        font-size: 16px;
        color: #555;
        line-height: 1.7em;
        max-width: 95%;
    }

/* 🔹 Right: Image */
.image-content {
    flex: 1;
    text-align: center;
}

    .image-content img {
        width: 100%;
        max-width: 550px;
        border-radius: 12px;
        height: auto;
    }

/* 🔹 Responsive Design */
@media (max-width: 900px) {
    .normal-section .container {
        flex-direction: column;
        text-align: center;
    }

    .text-content p {
        text-align: justify;
    }
}


/*fourth img-section*/

.reverse-section {
    width: 100%;
    background-color: #fff;
    padding: 60px 0;
    box-sizing: border-box;
}

    .reverse-section .container {
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        margin-top: -4rem;
    }

.image-content {
    flex: 1;
    text-align: center;
}

    .image-content img {
        width: 100%;
        max-width: 550px;
        border-radius: 12px;
        height: auto;
    }

.text-content {
    flex: 1;
}

    .text-content h2 {
        font-size: 2.2rem 33px;
        margin-bottom: 20px;
        color: #3b3b3b;
        white-space: nowrap;
        font-weight: 600;
        line-height: 1.4;
        font-family: 'Lato';
    }

    .text-content p {
        font-size: 20px;
        color: #3b3b3b;
        line-height: 1.7em;
        text-align: justify;
        font-family: 'Lato';
    }

/* 🔹 Responsive Design */
@media (max-width: 900px) {
    .reverse-section .container {
        flex-direction: column;
        text-align: center;
    }

    .text-content p {
        text-align: justify;
    }
}





/*workflow-section*/

.workflow-section {
    background: #ABE9D233;
    padding: 60px 0;
    text-align: center;
    border-radius: 12px;
}

.workflow-heading {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    white-space: nowrap;
    font-family: 'Lato';
    margin-left: 3rem;
}

.flow-container {
    width: 600px;
    margin: auto;
    position: relative;
}

.flow-item {
    display: flex;
    align-items: center;
    margin: 80px 0;
    position: relative;
    margin-left: 5rem;
}

.box {
    width: 409px;
    background: #fbfbfb;
    padding: 7px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

    .box h4 {
        font-size: 32px;
        color: #3b3b3b;
        font-family: unset;
        text-align: justify;
        margin-left: 8px;
    }

.line {
    width: 140px;
    height: 160px;
    border: 2px solid #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.right-connect .line.right {
    right: -17px;
    border-left: none;
    border-radius: 0 60px 60px 0;
    margin-top: 8rem;
    border-color: #000;
}

/* Left connector — now BLACK + bigger */
.left-connect .line.left {
    left: -140px;
    border-right: none;
    border-radius: 60px 0 0 60px;
    margin-top: 7rem;
    border-color: #000; /* black */
}

/* Gray tag inside boxes */
.gray-tag {
    background: #f1f1f1;
    color: #3b3b3b;
    padding: 18px 21px;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Montserrat';
    white-space: nowrap;
}

/* Tablet + Mobile */
@media (max-width: 1024px) {

    .workflow-section {
        padding: 40px 15px;
    }

    .workflow-heading {
        font-size: 3.5rem;
        margin-left: 0;
        font-family: 'Lato';
    }

    .flow-container {
        width: 100%;
    }

    .flow-item {
        flex-direction: column;
        margin: 40px 0;
        margin-left: 0;
        text-align: center;
    }

    .box {
        width: 100%;
        max-width: 600px;
        margin: auto;
    }

        .box h4 {
            font-size: 33px;
            text-align: center;
            margin-left: 0;
            margin-top: 10px;
        }


    /* Gray tag fix */
    .gray-tag {
        white-space: normal;
        font-size: 14px;
    }

    .right-connect .line.right {
        right: 30px;
        border-left: none;
        border-radius: 0 60px 60px 0;
        margin-top: 6rem;
        border-color: #000;
    }

    .left-connect .line.left {
        left: 30px;
        border-right: none;
        border-radius: 60px 0 0 60px;
        margin-top: 7rem;
        border-color: #000;
    }

    .box p {
        background: #F6F8F9;
        padding: 10px 17px;
        border-radius: 8px;
        font-size: 30px !important;
        line-height: 1.5;
        text-align: left;
        color: #3b3b3b;
        font-family: unset;
        /* font-family: 'Lato'; */
    }
}



/* Viedo-section */
.video-section {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

    .video-section h2 {
        font-size: 1.8rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 50px;
        line-height: 2.4rem;
        margin-left: 21rem;
        white-space: nowrap;
        font-family: 'Montserrat';
    }


.video-container {
    display: flex;
    justify-content: center;
}

.video-box {
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background-color: #a9a9a9;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: white;
    opacity: 0.8;
    cursor: pointer;
    transition: 0.3s ease;
}

    .play-button:hover {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }

/* Responsive */

@media (max-width: 1024px) {
    .video-section h2 {
        font-size: 3.5rem !important;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 50px;
        line-height: 4.5rem !important;
        text-align: center;
        width: 100%;
        white-space: normal;
        margin-left: 0;
        font-family: 'Lato';
    }

    .video-box {
        width: 100% !important;
        max-width: 1300px;
        height: 500px;
        border-radius: 15px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .video-section {
        padding: 40px 10px;
    }

        .video-section h2 {
            font-size: 1.6rem;
        }

    .video-box {
        width: 100%;
        border-radius: 10px;
    }

    .play-button {
        font-size: 2.5rem;
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .video-section h2 {
        font-size: 1.4rem;
    }

    .play-button {
        font-size: 2rem;
    }
}


/*  Desktop Default View  */
.action-section {
    background: #B8F2E6;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 1300px;
    margin: 60px auto 40px;
}

.action-container {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}


    .action-container h2 {
        margin-top: -12px;
        color: #3b3b3b;
        font-size: 3.3rem;
        white-space: nowrap;
    }

    .action-container p {
        font-size: 16px;
        margin-top: -23px;
        color: #3b3b3b;
    }

.action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.action-card {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    height: 6.2rem;
}

    .action-card:hover {
        box-shadow: none;
        transform: translateY(2px);
    }


.icon-boxs {
    width: 48px;
    height: 32px;
    background: transparent;
    border-radius: 6px;
    flex-shrink: 0;
    margin-left: 6%;
}

.vertical-line {
    border-left: 1px solid black;
    height: 40px;
    margin: 0 10px;
}

.card-content h3 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 0px 3px 18px;
    color: #3b3b3b;
}

.card-content p {
    font-size: 12px;
    margin-left: 18px;
    margin-top: -10px;
    color: #3b3b3b;
}

/*  Mobile & Tablet View  */
@media (max-width: 1024px) {
    .action-section {
        background: #B8F2E6;
        border-radius: 12px;
        padding: 40px 30px;
        max-width: 1300px;
        margin: 0px 0px !important;
        width: 96%;
    }

    .action-container h2 {
        font-size: 4.5rem;
        white-space: normal;
        text-align: center;
        margin-bottom: 11px;
        line-height: 6rem;
    }

    .action-container p {
        font-size: 31px;
        text-align: justify;
        margin-top: 32px;
        color: #3b3b3b;
        margin-left: 3rem;
        line-height: 3rem;
    }

    /* Cards ek ke niche ek */
    .action-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .action-card {
        width: 100%;
        max-width: 800px; /* width thoda badhaya */
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 17px 14px;
        height: auto;
        border-radius: 11px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .icon-boxs {
        width: 68px;
        height: 68px;
        margin: 0 10px 0 15px;
        flex-shrink: 0;
    }

    .vertical-line {
        display: flex;
        height: 91px;
        margin: 0 10px;
    }

    .card-content {
        text-align: left;
    }

        .card-content h3 {
            font-size: 50px;
            color: #3b3b3b;
            margin-left: 0.5rem;
            margin-top: 1.1rem;
        }

        .card-content p {
            font-size: 26px;
            margin-top: 0px;
            color: #3b3b3b;
            white-space: nowrap;
            margin-left: 0.5rem;
            font-weight: 500;
        }
}

.healthcare-section {
    width: 94%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    /*    background: #f8f8f8;*/
    margin-left: 3rem;
    margin-top: 2rem;
}
    /*
    .healthcare-section img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }*/

    .healthcare-section .content-row,
    .healthcare-section .reverse-section,
    .healthcare-section .normal-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding: 77px 0%;
    }

    .healthcare-section .reverse-section {
        flex-direction: row-reverse;
    }

@media (max-width: 1024px) {
    .healthcare-section .content-row,
    .healthcare-section .reverse-section,
    .healthcare-section .normal-section {
        padding: 35px 0%;
        width: 100%;
        margin-left: -1rem;
    }

    .healthcare-section .image-content img {
        width: 102%;
        height: 28rem;
    }

    .text-content h2 {
        font-size: 44px;
        margin-bottom: 20px;
        color: #3b3b3b;
        white-space: nowrap;
        font-weight: 600;
        font-family: 'Lato';
    }

    .normal-section .container {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }

    .reverse-section .container {
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        margin-top: -4rem;
        width: 100%;
    }

    .text-content p {
        font-size: 26px;
        color: #3b3b3b;
        line-height: 1.5em;
        text-align: justify;
        font-family: 'Lato';
    }
}





/*Eduction Section first*/

.zs-demo-section {
    width: 100%;
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fbfbfb;
    margin-top: -9rem;
}

.zs-demo-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    max-width: 1300px;
    width: 100%;
}

.zs-demo-left {
    flex: 1;
}

    .zs-demo-left h2 {
        font-size: 2.2rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-left: -5rem;
        width: 80%;
        line-height: 3rem;
        font-family: 'Lato';
    }


.zs-demo-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .zs-demo-right p {
        font-size: 20px;
        line-height: 1.8rem;
        margin-bottom: 20px;
        margin-left: -9rem;
        font-family: 'Lato';
    }

.zs-demo-btn {
    display: inline-block;
    background: #fff;
    color: #3b3b3b;
    padding: 12px 33px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #333;
    transition: 0.3s;
    white-space: nowrap;
    margin-left: -9rem;
    font-size: 18px;
    font-family: 'Lato';
}

    .zs-demo-btn:hover {
        background: #333;
        color: #fff;
    }

/* ============================
   📱 TABLET (max-width: 992px)
============================ */
@media (max-width: 1024px) {

    .zs-demo-section {
        margin-top: -5rem;
        padding: 60px 6%;
    }

    .zs-demo-container {
        flex-direction: column;
        gap: 35px;
        align-items: center;
        text-align: center;
    }

    .zs-demo-left h2 {
        font-size: 3.5rem;
        white-space: nowrap;
        text-align: left;
        line-height: 4.5rem;
        font-family: 'Lato';
        margin-left: -7rem;
    }

    .zs-demo-right {
        align-items: center;
    }

        .zs-demo-right p {
            margin-left: -2rem;
            /* width: 100%; */
            font-size: 35px;
            text-align: justify;
            line-height: 3rem;
            margin-top: -2rem;
        }

    .zs-demo-btn {
        margin-left: -38rem;
        margin-top: 10px;
        font-size: 25px;
    }
}



/* ============================
   📱 MOBILE (max-width: 600px)
============================ */
@media (max-width: 600px) {

    .zs-demo-section {
        padding: 50px 5%;
        margin-top: -2rem;
    }

    .zs-demo-left h2 {
        font-size: 1.9rem;
        line-height: 2.4rem;
        margin-left: 0;
    }

    .zs-demo-right p {
        width: 100%;
        font-size: 15px;
        line-height: 1.7rem;
    }

    .zs-demo-btn {
        padding: 10px 28px;
        font-size: 16px;
        margin-left: 0;
    }
}





/*Eduction section 2*/
.zs-edu-section {
    width: 100%;
    background: #AECBFA66;
    padding: 80px 4%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zs-edu-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* max-width: 1300px; */
    width: 100%;
    gap: 65px;
    flex-wrap: wrap
}

.zs-edu-left {
    flex: 1;
    min-width: 300px;
}

    .zs-edu-left h2 {
        font-size: 2.2rem;
        color: #3b3b3b;
        margin-bottom: 22px;
        font-weight: 600;
        white-space: nowrap;
        line-height: 3rem;
        font-family: 'Lato';
    }

    .zs-edu-left p {
        font-size: 20px;
        color: #3b3b3b;
        line-height: 2rem;
        text-align: justify;
        font-family: 'Lato';
    }

.zs-edu-right {
    flex: 1;
    min-width: 300px;
}

    .zs-edu-right ul {
        list-style-type: disc;
        color: #3b3b3b;
        margin-top: 37px;
    }

    .zs-edu-right li {
        font-size: 20px;
        line-height: 2.9rem;
        margin-left: 0rem;
        white-space: nowrap;
        font-family: 'Lato';
    }



/* ============================
   📱 TABLET VIEW (max-width: 992px)
============================ */
@media (max-width: 992px) {

    .zs-edu-section {
        padding: 60px 9%;
        width: 97%;
        margin-left: 10px;
    }

    .zs-edu-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .zs-edu-left {
        margin-left: 0;
    }

        .zs-edu-left h2 {
            font-size: 3.5rem;
            line-height: 4.5rem;
            white-space: normal;
            text-align: left;
            margin-left: -60px;
            font-family: 'Lato';
        }

        .zs-edu-left p {
            font-size: 35px;
            line-height: 3.6rem;
            white-space: normal;
            text-align: left;
            text-align: justify;
            margin-left: -58px;
        }

    .zs-edu-right ul {
        padding-left: 0;
        margin-left: 0;
        text-align: left;
    }

    .zs-edu-right li {
        margin-left: -27px;
        font-size: 31px;
        line-height: 4.5rem;
    }
}



/* ============================
   📱 MOBILE VIEW (max-width: 600px)
============================ */
@media (max-width: 600px) {

    .zs-edu-section {
        padding: 50px 6%;
    }

    .zs-edu-left h2 {
        font-size: 2rem;
        line-height: 2.6rem;
        white-space: normal;
        text-align: left;
    }

    .zs-edu-left p {
        font-size: 15px;
        line-height: 1.7rem;
    }

    .zs-edu-right li {
        font-size: 15px;
        line-height: 2rem;
    }
}









/*Eduction 3*/
/* ============================
   DESKTOP — NO CHANGES
============================ */

.education-section {
    width: 100%;
    padding: 80px 10%;
}

.education-top {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

    .education-top h2 {
        font-size: 2.2rem;
        color: #3b3b3b;
        margin-bottom: 21px;
        font-weight: 600;
        width: 100%;
        line-height: 3rem;
        font-family: 'Lato';
    }

    .education-top p {
        font-size: 20px;
        color: #3b3b3b;
        width: 100%;
        max-width: 100%;
        margin: 0;
        font-family: 'Lato';
    }

.education-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.education-left {
    flex: 1;
    min-width: 350px;
}

    .education-left h3 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        font-weight: 600;
        color: #3b3b3b;
        font-family: 'Lato';
    }

    .education-left p {
        font-size: 20px;
        color: #3b3b3b;
        margin-bottom: 20px;
        line-height: 2rem;
        font-family: 'Lato';
    }

    .education-left ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-bottom: 30px;
        color: #3b3b3b;
        font-size: 20px;
        line-height: 2.5rem;
        font-family: 'Lato';
    }

.demo-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

    .demo-btn:hover {
        background-color: #0056b3;
    }

.education-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .education-right img {
        width: 100%;
        max-width: 480px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }



/* ============================
   📱 TABLET VIEW (600px – 992px)
============================ */
@media (max-width: 992px) {

    .education-section {
        padding: 60px 6%;
    }


    .education-top p {
        font-size: 35px;
        color: #3b3b3b;
        width: 100%;
        max-width: 100%;
        margin: 0;
        line-height: 3.7rem;
        font-family: 'Lato';
        margin-left: -1rem;
        text-align: justify;
    }

    .education-top h2 {
        font-size: 3.5rem;
        color: #3b3b3b;
        margin-bottom: 21px;
        font-weight: 600;
        width: 100%;
        line-height: 4.5rem;
        font-family: 'Lato';
        text-align: left;
        margin-left: -14px;
    }

    .education-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .education-left h3 {
        font-size: 3.5rem;
        color: #3b3b3b;
        margin-bottom: 20px;
        font-weight: 600;
        margin-left: -1rem;
        text-align: left;
        line-height: 4.5rem;
    }

    .education-left p {
        font-size: 35px;
        color: #3b3b3b;
        margin-bottom: 20px;
        line-height: 3.4rem;
        font-family: 'Lato';
        text-align: justify;
        margin-left: -10px;
    }


    .education-left ul {
        text-align: justify;
        padding-left: 19px;
        margin: 0 auto;
        font-size: 35px;
        line-height: 4rem;
        font-family: 'Lato';
    }

    .education-right img {
        max-width: 420px;
        display: none;
    }
}



/* ============================
   📱 MOBILE VIEW (max-width: 600px)
============================ */
@media (max-width: 600px) {

    .education-section {
        padding: 50px 5%;
    }

    .education-top h2 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }

    .education-top p {
        font-size: 16px;
        width: 100%;
        margin-left: 0;
    }

    .education-left h3 {
        font-size: 2.2rem;
    }

    .education-left p {
        font-size: 16px;
        line-height: 1.7rem;
    }

    .education-left ul {
        font-size: 15px;
        line-height: 2rem;
        padding-left: 20px;
    }

    .education-right img {
        max-width: 350px;
    }
}






/*Eduction-section 3.1*/
.simple-section {
    width: 100%;
    padding: 80px 8%;
    /*    background-color: #f8fbff;*/
}

.simple-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.simple-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .simple-left img {
        width: 100%;
        max-width: 480px;
        border-radius: 10px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

.simple-right {
    flex: 1;
    min-width: 350px;
}

    .simple-right h2 {
        font-size: 2.2rem;
        color: #3b3b3b;
        margin-bottom: 20px;
        white-space: nowrap;
        font-weight: 600;
        font-family: 'Lato';
    }



    .simple-right p {
        font-size: 20px;
        color: #3b3b3b;
        margin-bottom: 20px;
        line-height: 2rem;
        font-family: 'Lato';
    }

    .simple-right ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-bottom: 30px;
        color: #3b3b3b;
        font-size: 20px;
        line-height: 2rem;
        font-family: 'Lato';
    }

    .simple-right li {
        margin-bottom: 10px;
    }

/* ===========================
   MOBILE + TABLET RESPONSIVE
   =========================== */
@media (max-width: 992px) {

    .simple-container {
        flex-direction: column;
        text-align: center;
        gap: 40px !important;
    }

    .simple-left img {
        max-width: 100%;
        width: 100%;
        margin-top: -5rem;
    }

    .simple-right {
        min-width: 100%;
        padding: 0 10px;
    }

        .simple-right h2 {
            font-size: 3rem;
            white-space: normal;
            line-height: 4rem;
        }

        .simple-right p {
            font-size: 35px;
            line-height: 3.5rem;
            text-align: justify;
        }

        .simple-right ul {
            text-align: left;
            font-size: 16px;
            line-height: 1.8rem;
            margin: 0 auto;
            display: inline-block;
        }

        .simple-right li {
            margin-bottom: 11px;
            font-size: 35px;
            line-height: 4rem;
            text-align: justify;
        }
}

/* ===========================
   EXTRA SMALL (Mobile < 600px)
   =========================== */
@media (max-width: 600px) {

    .simple-section {
        padding: 50px 5%;
    }

    .simple-left img {
        max-width: 300px;
    }

    .simple-right h2 {
        font-size: 1.8rem;
    }

    .simple-right p,
    .simple-right ul {
        font-size: 15px;
    }
}







/*Eduction-section 3.2*/
.reverse-section {
    width: 100%;
    padding: 80px 8%;
    /*    background-color: #f8fbff;*/
}

.reverse-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.reverse-left {
    flex: 1;
    min-width: 350px;
}

    .reverse-left h2 {
        font-size: 2.2rem;
        color: #3b3b3b;
        margin-bottom: 20px;
        font-weight: 600;
        font-family: 'Lato';
        line-height: 3rem;
    }

    .reverse-left p {
        font-size: 20px;
        color: #3b3b3b;
        margin-bottom: 20px;
        line-height: 2rem;
        font-family: 'Lato';
    }

    .reverse-left ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-bottom: 30px;
        color: #3b3b3b;
        font-size: 20px;
        line-height: 2rem;
        font-family: 'Lato';
    }

    .reverse-left li {
        margin-bottom: 10px;
    }

.reverse-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .reverse-right img {
        width: 100%;
        max-width: 480px;
        border-radius: 10px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

/* ===========================
   MOBILE + TABLET RESPONSIVE
   =========================== */
@media (max-width: 992px) {

    .reverse-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px !important;
    }

    .reverse-right img {
        max-width: 100%;
        width: 100%;
        margin-top: -5rem;
    }

    .reverse-left {
        min-width: 100%;
        padding: 0 10px;
    }

        .reverse-left h2 {
            font-size: 3.5rem;
            white-space: normal;
            line-height: 4.5rem;
        }

        .reverse-left p {
            font-size: 35px;
            line-height: 3rem;
            text-align: justify;
            font-family: 'Lato';
        }

        .reverse-left ul {
            text-align: left;
            font-size: 16px;
            line-height: 1.8rem;
            margin: 0 auto;
            display: inline-block;
        }

        .reverse-left li {
            margin-bottom: 11px;
            font-size: 35px;
            line-height: 4rem;
            font-family: 'Lato';
            text-align: justify;
        }
}

/*  SMALL MOBILE (<600px)  */
@media (max-width: 600px) {

    .reverse-section {
        padding: 50px 5%;
    }

    .reverse-right img {
        max-width: 300px;
    }

    .reverse-left h2 {
        font-size: 1.8rem;
    }

    .reverse-left p,
    .reverse-left ul {
        font-size: 15px;
    }
}








/*Eduction-section 3.3*/
.right-section {
    width: 100%;
    padding: 80px 8%;
    /*    background-color: #f7faff;*/
}

.right-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.right-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .right-left img {
        width: 100%;
        max-width: 480px;
        border-radius: 10px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

.right-right {
    flex: 1;
    min-width: 350px;
}

    .right-right h2 {
        font-size: 2.2rem;
        color: #3b3b3b;
        margin-bottom: 20px;
        font-weight: 600;
        width: 100%;
        font-family: 'Lato';
        line-height: 3rem;
    }

    .right-right p {
        font-size: 20px;
        color: #3b3b3b;
        margin-bottom: 20px;
        line-height: 2rem;
        font-family: 'Lato';
    }

    .right-right ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-bottom: 30px;
        color: #3b3b3b;
        font-size: 20px;
        line-height: 2rem;
        font-family: 'Lato';
    }

    .right-right li {
        margin-bottom: 10px;
    }

/* ===========================
   MOBILE + TABLET RESPONSIVE
   =========================== */
@media (max-width: 992px) {

    .right-container {
        flex-direction: column; /* Image top, Text bottom */
        text-align: center;
        gap: 40px !important;
    }

    .right-left img {
        max-width: 100%;
        width: 100%;
        margin-top: -5rem;
    }

    .right-right {
        min-width: 100%;
    }

        .right-right h2 {
            font-size: 3.5rem;
            white-space: normal;
            line-height: 4.5rem;
            font-family: 'Lato';
        }

        .right-right p {
            font-size: 35px;
            line-height: 3.5rem;
            text-align: justify;
        }

        .right-right ul {
            text-align: left;
            width: fit-content;
            margin: 0 auto;
            padding-left: 20px;
        }

        .right-right li {
            margin-bottom: 11px;
            font-size: 35px;
            line-height: 4rem;
            text-align: justify;
        }
}





/*Eduction-challenge-section*/
.challenge-section {
    width: 100%;
    padding: 80px 8%;
}

.challenge-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}


.challenge-left {
    flex: 1;
    min-width: 340px;
}

    .challenge-left h2 {
        font-size: 2.2rem;
        color: #3b3b3b !important;
        margin-bottom: 20px;
        font-weight: 600;
        width: 100%;
        line-height: 3rem;
        font-family: 'Lato';
    }

    .challenge-left ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-bottom: 30px;
        color: #3b3b3b;
        font-size: 20px;
        line-height: 3rem;
        font-family: 'Lato';
    }

    .challenge-left li {
        margin-bottom: 12px;
    }

/* Right Side (Cards) */
.challenge-right {
    flex: 1;
    min-width: 340px;
    display: grid;
    grid-template-columns: repeat(2, 220px);
    justify-content: end;
    gap: 20px;
}

/* Smaller Card */
.challenge-card {
    background: #AECBFA66;
    border-radius: 12px;
    padding: 25px;
    height: 170px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

    /* Icon Top Left */
    .challenge-card img {
        width: 42px;
        position: absolute;
        top: 18px;
        left: 17px;
    }


    .challenge-card h3 {
        font-size: 2rem;
        font-weight: 700;
        margin: 0;
        position: absolute;
        bottom: 44px;
        right: 19px;
        color: #3b3b3b;
    }

    .challenge-card p {
        font-size: 1.2rem;
        margin: 0;
        position: absolute;
        bottom: 5px;
        right: 14px;
        color: #3b3b3b;
        text-align: end;
    }



/* TAB VIEW (max-width: 992px) */
@media (max-width: 992px) {

    .challenge-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    /* Left Text */
    .challenge-left {
        width: 100%;
        text-align: center;
    }

        .challenge-left h2 {
            font-size: 3.5rem;
            color: #3b3b3b;
            margin-bottom: 20px;
            font-weight: 600;
            width: 100%;
            line-height: 4.5rem;
            text-align: left;
        }


        .challenge-left ul {
            text-align: left;
        }

        .challenge-left li {
            margin-bottom: 17px;
            font-size: 35px;
            line-height: 4rem;
            font-family: 'Lato';
            text-align: justify;
        }
    /* Cards grid 2-Column */
    .challenge-right {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 25px;
    }

    .challenge-card {
        width: 100%;
        height: 19rem;
    }


        .challenge-card h3 {
            font-size: 3.5rem;
            font-weight: 800;
            margin: 0;
            position: absolute;
            bottom: 137px;
            right: 19px;
            color: #3b3b3b;
        }

        .challenge-card p {
            font-size: 3rem;
            margin: 0;
            position: absolute;
            bottom: 20px;
            right: 14px;
            color: #3b3b3b;
            text-align: end;
            line-height: 3.5rem;
            font-family: 'Lato';
            font-weight: 600;
        }

        .challenge-card img {
            width: 65px;
            position: absolute;
            top: 18px;
            left: 20px;
        }
}

/* MOBILE VIEW (max-width: 600px) */
@media (max-width: 600px) {

    .challenge-right {
        grid-template-columns: 1fr;
    }

    .challenge-card {
        width: 100%;
    }

    .challenge-left h2 {
        font-size: 2rem;
    }

    .challenge-left ul {
        font-size: 17px;
        line-height: 2.4rem;
    }

    .challenge-card h3 {
        font-size: 1.7rem;
    }

    .challenge-card p {
        font-size: 1.1rem;
    }
}









/*Eduction-section eduction*/
.edu2-sec {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 8%;
    font-family: "Poppins", sans-serif;
}

.edu2-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.edu2-left {
    flex: 1;
    min-width: 320px;
}

    .edu2-left h2 {
        font-size: 2.2rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 30px;
        margin-left: 0rem;
        width: 100%;
        font-family: 'Lato';
        line-height: 3rem;
    }

.edu2-btn {
    background: transparent;
    border: 1.5px solid #3b3b3b;
    color: #3b3b3b;
    padding: 9px 18px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: 'Lato';
    white-space: nowrap;
    margin-left: 0rem;
}

    .edu2-btn:hover {
        background: #000;
        color: #fff;
    }

.edu2-right {
    flex: 1;
    min-width: 350px;
    margin-left: -3rem;
}

    .edu2-right ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-bottom: 30px;
        color: #3b3b3b;
        font-family: 'Lato';
        font-size: 20px;
        line-height: 2rem;
    }

    .edu2-right li {
        margin-bottom: 22px;
        line-height: 1.6;
    }

        .edu2-right li strong {
            display: block;
            font-size: 20px;
            color: #3b3b3b;
            margin-bottom: 4px;
            font-family: 'Lato';
        }

        .edu2-right li span {
            font-size: 20px;
            color: #3b3b3b;
            font-family: unset;
        }

/* Tablet */
@media (max-width: 992px) {

    .edu2-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .edu2-left {
        width: 100%;
        margin-left: -4rem;
    }

        .edu2-left h2 {
            font-size: 3.5rem;
            font-weight: 600;
            color: #3b3b3b;
            margin-bottom: 50px;
            margin-left: 0rem;
            width: 100%;
            font-family: 'Lato';
            line-height: 4.5rem;
            margin-top: -4rem;
        }

    .edu2-btn {
        margin: 0 auto 25px auto;
        margin-left: -32rem;
        font-size: 25px;
        font-family: 'Lato';
    }

    .edu2-right ul {
        list-style-position: outside;
        text-align: left;
        margin: 0 auto;
        padding-left: 25px;
    }

    .edu2-right li strong {
        font-size: 35px;
        color: #3b3b3b;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .edu2-right {
        min-width: 355px;
        margin-left: -1rem;
    }

        .edu2-right li span {
            font-size: 35px;
            color: #3b3b3b;
            font-family: 'Lato';
        }
}

/* Mobile */
@media (max-width: 600px) {

    .edu2-sec {
        padding: 60px 6%;
    }

    .edu2-left h2 {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .edu2-right ul {
        list-style-position: outside;
        padding-left: 18px;
        font-size: 15px;
        line-height: 1.8rem;
    }

    .edu2-right li strong {
        font-size: 0.95rem;
    }

    .edu2-right li span {
        font-size: 0.85rem;
    }
}








/*Eduction-video section*/
.video-section {
    text-align: center;
    background-color: #fff;
    padding: 80px 20px;
    font-family: "Poppins", sans-serif;
}

    .video-section h2 {
        font-size: 2.2rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 50px;
        line-height: 3rem;
        text-align: center;
        width: 100%;
        white-space: normal;
        margin-left: 0;
        font-family: 'Lato';
    }

.video-box {
    width: 1300px;
    max-width: 1300px;
    height: 500px;
    border-radius: 15px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.play-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 32px;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .play-icon:hover {
        transform: scale(1.1);
        background: rgba(255,255,255,0.3);
    }

@media (max-width: 768px) {
    .video-section h2 {
        font-size: 1.4rem;
        line-height: 2rem;
    }

    .video-box {
        height: 220px;
    }

    .play-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/*Last section*/

.eductions-action-section {
    background: #B8F2E6;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 1300px;
    margin: 60px auto 40px;
    margin-bottom: -2rem;
}

.eductions-action-container {
    text-align: left;
    font-family: unset;
}

    .eductions-action-container h2 {
        margin-top: -12px;
        color: #3b3b3b;
        font-size: 4.3rem;
        white-space: nowrap;
        font-family: unset;
    }

    .eductions-action-container p {
        font-size: 20px;
        margin-top: -23px;
        color: #3b3b3b;
        font-family: unset;
    }

.eductions-action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.eductions-action-card {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    height: 6.2rem;
}

    .eductions-action-card:hover {
        box-shadow: none;
        transform: translateY(2px);
    }

.eductions-icon-boxs {
    width: 48px;
    height: 32px;
    background: transparent;
    border-radius: 6px;
    flex-shrink: 0;
    margin-left: 6%;
}

.eductions-vertical-line {
    border-left: 1px solid black;
    height: 40px;
    margin: 0 10px;
}

.eductions-card-content h3 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 0px 3px 18px;
    color: #3b3b3b;
}

.eductions-card-content p {
    font-size: 17px;
    margin-left: 18px;
    margin-top: -10px;
    color: #3b3b3b;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

    .eductions-action-section {
        padding: 25px 15px;
        margin: 30px auto;
        max-width: 95%;
    }

    .eductions-action-container h2 {
        font-size: 4.5rem;
        white-space: normal;
        text-align: center;
        margin-bottom: 11px;
        line-height: 6rem;
    }

    .eductions-action-container p {
        font-size: 34px;
        text-align: justify;
        margin-top: 32px;
        line-height: 3rem;
        font-family: 'Lato';
    }

    .eductions-action-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .eductions-action-card {
        width: 100%;
        max-width: 900px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 17px 14px;
        height: auto;
        border-radius: 11px;
    }

    .eductions-icon-boxs {
        width: 68px;
        height: 68px;
        margin: 0 10px 0 15px;
    }

    .eductions-vertical-line {
        display: flex;
        height: 91px;
        margin: 0 10px;
    }

    .eductions-card-content h3 {
        font-size: 44px;
        margin-left: 0.5rem;
        margin-top: 1.1rem;
        font-family: 'Lato';
    }

    .eductions-card-content p {
        font-size: 26px;
        margin-top: 0px;
        white-space: nowrap;
        margin-left: 0.5rem;
        font-weight: 500;
    }
}

/*END EDUCTION SECTION*/






/*BSFI SECTION*/

.bfsi-section {
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
    box-sizing: border-box;
}

.bfsi-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

    .bfsi-heading h2 {
        font-size: 2.2rem;
        font-weight: 600;
        color: #3b3b3b;
        line-height: 1.4;
        width: 95%;
        display: block;
        text-align: left;
        margin: 0px auto;
        margin-top: 1rem;
        font-family: 'Lato';
    }

.bfsi-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100vw;
    padding: 0 5%;
    box-sizing: border-box;
}

.bfsi-left {
    flex: 1 1 50%;
    min-width: 300px;
}

    .bfsi-left img {
        width: 100%;
        border-radius: 12px;
        object-fit: cover;
    }

.bfsi-right {
    flex: 1 1 50%;
    min-width: 320px;
}

    .bfsi-right h3 {
        font-size: 1.8rem;
        font-weight: 600;
        color: #CDB4DB;
        margin-bottom: 0px;
        font-family: 'Lato';
    }

    .bfsi-right p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #444;
    }



/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .bfsi-section {
        width: 96%;
        padding: 40px 0;
        background-color: #fff;
        box-sizing: border-box;
        margin-left: 1.5rem;
    }

    .bfsi-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .bfsi-right h3 {
        color: #5a5ab8;
        text-align: left;
        margin-left: 2rem;
        font-size: 35px;
        font-family: 'Lato';
    }

    .bfsi-right p {
        color: #3b3b3b !important;
        font-size: 35px !important;
        line-height: 1.9 !important;
        margin-bottom: 40px;
        font-family: 'lato' !important;
        text-align: justify !important;
        margin-left: 30px !important;
    }

    .bfsi-heading h2 {
        text-align: left;
        font-size: 3.5rem;
        line-height: 4.5rem;
        font-family: 'Lato';
        font-weight: 600;
    }

    .bfsi-left img {
        width: 100%;
        max-width: 900px !important;
        max-height: 480px;
        border-radius: 12px;
        object-fit: cover;
        margin-left: 1rem !important;
    }
}




/*2nd BSFI*/
.industry-challenges {
    width: 100%;
    padding: 71px 6%;
    background: linear-gradient(114.73deg, rgba(205, 180, 219, 0.6) 5.55%, rgba(207, 183, 220, 0.6) 27.67%, rgba(212, 191, 224, 0.6) 49.79%, rgba(215, 197, 226, 0.6) 71.91%, rgba(219, 203, 228, 0.6) 94.03%);
    border-radius: 9px;
}

.challenges-container {
    text-align: center;
    color: #222;
}

    .challenges-container h2 {
        font-size: 2.2rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #fbfbfb;
        text-align: left;
        font-family: 'Lato';
    }

    .challenges-container p {
        font-size: 20px;
        color: #fbfbfb;
        margin-bottom: 40px;
        text-align: left;
        font-family: 'Lato';
    }

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(396px, 1fr));
    gap: 21px;
}

.challenge-box {
    background-color: rgba(147, 112, 219, 0.3);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


    .challenge-box h3 {
        font-size: 4rem;
        font-weight: 900;
        opacity: 0.8;
        margin-bottom: 10px;
        background: linear-gradient(180deg, #FFFFFF 0%, #F3ECF6 25%, #E6DAED 50%, #DAC7E4 75%, #CDB4DB 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        margin-top: 7px;
    }


    .challenge-box h4 {
        font-size: 2rem;
        font-weight: 700;
        color: #fbfbfb;
        margin-bottom: 8px;
        white-space: nowrap;
        font-family: 'Lato';
    }

    .challenge-box p {
        font-size: 20px;
        color: #fbfbfb;
        line-height: 1.6;
        text-align: left;
        font-family: 'Lato';
    }

/* ---- TAB + MOBILE RESPONSIVE ---- */

@media (max-width: 1024px) {
    .industry-challenges {
        width: 95%;
        padding: 71px 6%;
        background: linear-gradient(114.73deg, rgba(205, 180, 219, 0.6) 5.55%, rgba(207, 183, 220, 0.6) 27.67%, rgba(212, 191, 224, 0.6) 49.79%, rgba(215, 197, 226, 0.6) 71.91%, rgba(219, 203, 228, 0.6) 94.03%);
        border-radius: 9px;
        margin-left: 1.5rem;
    }

    .challenges-container h2 {
        margin-left: 0;
        text-align: justify;
        font-size: 3.5rem;
        font-family: 'Lato';
        line-height: 4rem;
        font-weight: 600;
    }

    .challenges-container p {
        font-size: 35px;
        font-family: 'Lato';
    }

    .challenge-box h4 {
        font-size: 3.5rem;
        font-weight: 600;
        color: #fbfbfb;
        margin-bottom: 8px;
        white-space: nowrap;
        font-family: 'Lato';
        text-align: left;
        padding-bottom: 15px;
    }

    .challenges-grid {
        grid-template-columns: repeat(1, 1fr);
        margin-left: -27px;
    }

    .challenge-box {
        text-align: center;
    }

        .challenge-box p {
            font-size: 35px;
            font-family: 'Lato';
            line-height: 3.5rem;
            text-align: justify;
        }


        .challenge-box h3 {
            font-size: 4.5rem;
            font-weight: 900;
            opacity: 0.8;
            margin-bottom: 10px;
            background: linear-gradient(180deg, #FFFFFF 0%, #F3ECF6 25%, #E6DAED 50%, #DAC7E4 75%, #CDB4DB 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            text-align: left;
            padding-bottom: 22px;
        }
}

@media (max-width: 600px) {

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .challenge-box {
        text-align: center;
    }

        .challenge-box p {
            text-align: center;
        }

    .challenges-container h2 {
        font-size: 2rem;
    }

    .challenges-container p {
        font-size: 16px;
    }
}

/*3D Section*/
/* SECTION WRAPPER */
.bfsi-help-section {
    background-color: #ffffff;
    padding: 80px 10%;
    font-family: "Segoe UI", sans-serif;
    color: #222;
}

.bfsi-header {
    text-align: center;
    margin-bottom: 70px;
}

    .bfsi-header h2 {
        font-size: 2.2rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 15px;
        white-space: nowrap;
        width: 95%;
        font-family: 'Lato';
    }

    .bfsi-header p {
        margin: 0 auto;
        color: #3b3b3b;
        font-size: 20px;
        line-height: 1.6;
        text-align: center;
        font-family: 'Lato';
    }

.bfsi-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -2rem;
}

.bfsi-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.bfsi-left {
    flex: 1;
}

    .bfsi-left img {
        width: 100%;
        max-width: 500px;
        max-height: 480px;
        border-radius: 12px;
        object-fit: cover;
    }

.bfsi-right {
    flex: 1;
}

    .bfsi-right h2 {
        font-size: 2.2rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 7px;
        font-family: unset;
        width: 70%;
        line-height: 3rem;
    }

    .bfsi-right p {
        color: #3b3b3b;
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 40px;
        text-align: justify;
        font-family: 'Lato';
    }

/* ======= CUSTOM BUTTON ======= */
.bfsi-btn {
    display: inline-block;
    padding: 10px 26px;
    border: 2px solid #000;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .bfsi-btn:hover {
        background: #000;
        color: #fff;
        transform: scale(1.05);
    }

/* ======= RESPONSIVE ======= */
@media (max-width: 992px) {
    .bfsi-row {
        flex-direction: column;
        text-align: center;
    }

    .bfsi-left,
    .bfsi-right {
        width: 100%;
    }

    .bfsi-header p {
        max-width: 900px;
        margin: 0 auto;
        color: #3b3b3b;
        font-size: 35px;
        line-height: 1.6;
        text-align: justify;
        font-family: 'Lato';
        margin-left: -1rem;
    }

    .bfsi-right {
        margin-top: 25px;
    }

    .bfsi-header h2 {
        font-size: 2.6rem;
        margin-left: -4rem;
    }

    .bfsi-right h2 {
        font-size: 2.6rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 7px;
        font-family: 'Montserrat';
        width: 92%;
        line-height: 3.5rem;
        text-align: left;
        margin-left: 3rem;
    }

    .bfsi-btn {
        display: inline-block;
        padding: 10px 26px;
        border: 2px solid #000;
        border-radius: 6px;
        text-decoration: none;
        color: #000;
        background: transparent;
        font-weight: 500;
        transition: all 0.3s ease;
        display: none;
    }
}




/*IT-Asset*/
.itasset-section {
    background: #fff;
    padding: 80px 10%;
    font-family: "Segoe UI", sans-serif;
    color: #222;
}

.itasset-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.itasset-content {
    flex: 1;
}

    .itasset-content h3 {
        font-size: 2.2rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 20px;
        width: 28%;
        line-height: 3rem;
        font-family: 'Lato';
    }

    .itasset-content p {
        color: #3b3b3b;
        font-size: 20px;
        line-height: 1.7;
        margin-bottom: 30px;
        max-width: 90%;
        text-align: justify;
        font-family: 'Lato';
    }

.itasset-btn {
    display: inline-block;
    padding: 10px 26px;
    border: 2px solid #000;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .itasset-btn:hover {
        background: #000;
        color: #fff;
        transform: scale(1.05);
    }

.itasset-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

    .itasset-image img {
        width: 100%;
        max-width: 500px;
        max-height: 480px;
        border-radius: 12px;
        object-fit: cover;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .itasset-row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .itasset-content p {
        color: #3b3b3b !important;
        font-size: 35px !important;
        line-height: 4rem !important;
        margin-bottom: 40px;
        font-family: 'lato' !important;
        text-align: justify !important;
        margin-left: 44px !important;
        width: 900px;
    }

    .itasset-image img {
        width: 100% !important;
        margin-right: 2rem;
        margin-top: -14rem;
        height: 634px;
        max-height: 900px;
        margin-left: -3rem;
        max-width: 900px;
    }

    .itasset-content h3 {
        font-size: 3.5rem;
        width: 75%;
        margin-left: 4rem;
        padding-bottom: 13px;
    }

    .itasset-btn {
        display: inline-block;
        padding: 10px 26px;
        border: 2px solid #000;
        border-radius: 6px;
        text-decoration: none;
        color: #000;
        background: transparent;
        font-weight: 500;
        transition: all 0.3s ease;
        display: none;
    }
}




/*patch-management*/

.patch-section {
    width: 100%;
    padding: 80px 10%;
    background-color: #fff;
    margin-left: -5rem;
}

.patch-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.patch-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .patch-left img {
        width: 100%;
        max-width: 500px;
        max-height: 480px;
        border-radius: 12px;
        object-fit: cover;
    }

.patch-right {
    flex: 1;
    max-width: 500px;
}

    .patch-right h3 {
        font-size: 2.2rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 15px;
        width: 25%;
        font-family: unset;
        line-height: 3rem;
    }

    .patch-right p {
        font-size: 20px;
        color: #3b3b3b;
        line-height: 1.5;
        margin-bottom: 25px;
        text-align: justify;
        font-family: 'Lato';
    }

.patch-btn {
    display: inline-block;
    padding: 10px 26px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .patch-btn:hover {
        background-color: #000;
        color: #fff;
    }

/* ====== Responsive Design ====== */
@media (max-width: 992px) {
    .patch-container {
        flex-direction: column;
        text-align: center;
    }

    .patch-left img {
        width: 100% !important;
        margin-top: -14rem;
        height: 634px;
        max-height: 900px;
        margin-left: 7rem;
        max-width: 800px;
    }

    .patch-right {
        max-width: 100%;
    }

        .patch-right h3 {
            margin-left: 13rem;
            font-size: 3.5rem;
            width: 60%;
            font-weight: 600;
            font-family: 'Lato';
            padding-bottom: 12px;
            text-align: center;
        }

        .patch-right p {
            color: #3b3b3b !important;
            font-size: 35px !important;
            line-height: 4rem !important;
            margin-bottom: 40px;
            font-family: 'lato' !important;
            text-align: justify !important;
            margin-left: 35px !important;
            width: 850px;
        }

    .patch-btn {
        padding: 9px 22px;
        display: none;
    }
}

@media (max-width: 576px) {
    .patch-section {
        padding: 50px 6%;
    }

    .patch-right h3 {
        font-size: 1.6rem;
    }

    .patch-right p {
        font-size: 0.9rem;
    }
}

/*Governance, Risk & Compliance (GRC)*/

.grc-section {
    width: 100%;
    padding: 80px 10%;
    background-color: #fff;
}

.grc-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.grc-left {
    flex: 1;
    max-width: 500px;
}

    .grc-left h3 {
        font-size: 2.2rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 15px;
        width: 79%;
        font-family: unset;
        line-height: 3rem;
    }

    .grc-left p {
        font-size: 20px;
        color: #3b3b3b;
        line-height: 1.5;
        margin-bottom: 25px;
        text-align: justify;
        font-family: 'Lato';
    }

.grc-btn {
    display: inline-block;
    padding: 10px 26px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .grc-btn:hover {
        background-color: #000;
        color: #fff;
    }

.grc-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .grc-right img {
        width: 100%;
        max-width: 500px;
        max-height: 480px;
        border-radius: 12px;
        object-fit: cover;
    }

/* ====== Responsive Design ====== */
@media (max-width: 992px) {
    .grc-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .grc-left {
        max-width: 100%;
    }

    .grc-right img {
        width: 104% !important;
        margin-top: -14rem;
        height: 634px;
        max-height: 900px;
        margin-left: -1rem;
        max-width: 700px;
    }

    .grc-left h3 {
        font-size: 3.5rem;
        width: 100%;
        line-height: 4.5rem;
        font-family: 'Lato';
    }

    .grc-left p {
        color: #3b3b3b !important;
        font-size: 35px !important;
        line-height: 4rem !important;
        margin-bottom: 40px;
        font-family: lato !important;
        text-align: justify !important;
        margin-left: -35px !important;
        width: 850px;
    }

    .grc-btn {
        padding: 9px 22px;
        display: none;
    }
}

@media (max-width: 576px) {
    .grc-section {
        padding: 50px 6%;
    }

    .grc-left h3 {
        font-size: 1.6rem;
    }

    .grc-left p {
        font-size: 0.9rem;
    }

    .grc-right img {
        max-width: 100%;
    }
}



/*ai-assist-section*/

.ai-assist-section {
    width: 105%;
    padding: 80px 10%;
    background-color: #fff;
    margin-left: -5rem;
}

.ai-assist-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.ai-assist-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .ai-assist-left img {
        width: 100%;
        max-width: 500px;
        max-height: 480px;
        border-radius: 12px;
        object-fit: cover;
    }

.ai-assist-right {
    flex: 1;
    max-width: 500px;
}

    .ai-assist-right h3 {
        font-size: 40px;
        font-weight: 500;
        color: #3b3b3b;
        margin-bottom: 15px;
        font-family: 'Montserrat';
        width: 49%;
        line-height: 3.5rem;
    }

    .ai-assist-right p {
        font-size: 20px;
        color: #3b3b3b;
        line-height: 1.7;
        margin-bottom: 25px;
        font-family: unset;
        text-align: justify;
    }

.ai-assist-btn {
    display: inline-block;
    padding: 10px 26px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .ai-assist-btn:hover {
        background-color: #000;
        color: #fff;
    }

/* ====== Responsive Design ====== */
@media (max-width: 992px) {
    .ai-assist-container {
        flex-direction: column;
        text-align: center;
    }

    .ai-assist-left img {
        width: 100% !important;
        margin-top: -14rem;
        height: 634px;
        max-height: 900px;
        margin-left: 8rem;
        max-width: 700px;
    }

    .ai-assist-right {
        max-width: 100%;
    }

        .ai-assist-right h3 {
            font-size: 3.5rem;
            width: 100%;
            margin-left: 4.5rem;
        }

        .ai-assist-right p {
            color: #3b3b3b !important;
            font-size: 35px !important;
            line-height: 4rem !important;
            margin-bottom: -40px;
            font-family: lato !important;
            text-align: justify !important;
            margin-left: 44px !important;
            width: 850px;
        }

    .ai-assist-btn {
        display: inline-block;
        padding: 10px 26px;
        border: 2px solid #000;
        background: transparent;
        color: #000;
        font-weight: 600;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        display: none;
    }
}

@media (max-width: 576px) {
    .ai-assist-section {
        padding: 50px 6%;
    }

    .ai-assist-right h3 {
        font-size: 1.6rem;
    }

    .ai-assist-right p {
        font-size: 0.9rem;
    }

    .ai-assist-left img {
        max-width: 100%;
    }
}


/*Card-section*/
.stats-section {
    background-color: #fff;
    padding: 60px 5%;
    display: flex;
    justify-content: center;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1300px;
}

.stats-card {
    background-color: #E3D5EB;
    flex: 1 1 calc(25% - 25px);
    border-radius: 16px;
    text-align: center;
    padding: 40px 20px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
    min-width: 230px;
}

/*    .stats-card:hover {
        transform: translateY(-6px);
        background: linear-gradient(145deg, #E3D5EB, #f3e9f6);
    }*/

.stats-card {
    background-color: #E3D5EB;
    flex: 1 1 20%;
    border-radius: 16px;
    text-align: left;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
    min-width: 160px;
    height: auto;
}

    .stats-card .stats-value {
        margin-top: 4rem;
    }

.stats-value .number {
    font-size: 3rem;
    font-weight: 800;
    color: #3b3b3b;
}

.stats-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #3b3b3b;
    margin-bottom: -2px;
    font-family: unset;
}

.stats-card p {
    font-size: 20px;
    color: #3b3b3b;
    margin: 0;
    max-width: 100%;
    line-height: 1.5;
    font-family: unset;
}


/* Tablet */
@media (max-width: 1024px) {
    .stats-card {
        flex: 1 1 calc(45% - 20px);
        /* height: 273px; */
        margin-top: 1rem;
    }

    .stats-value .number {
        font-size: 3.5rem;
        font-weight: 700;
        color: #3b3b3b;
        margin-bottom: 0px;
        margin-left: 0;
    }

    .stats-card h4 {
        font-size: 35px;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 4px;
        font-family: 'Lato';
        margin-top: 0.5rem;
        line-height: 3rem;
    }


    .stats-card p {
        font-size: 35px;
        color: #3b3b3b;
        margin: 0;
        max-width: 100%;
        line-height: 3rem;
        font-family: 'Lato';
    }
}

/* Mobile */
@media (max-width: 600px) {
    .stats-card {
        flex: 1 1 100%;
        height: auto;
        padding: 30px 15px;
    }

    .stats-value .number {
        font-size: 2rem;
    }

    .stats-card h4 {
        font-size: 1rem;
    }

    .stats-card p {
        font-size: 0.85rem;
    }
}




/*Viedo section*/

.video-demo-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}

.video-demo-title {
    font-size: 40px;
    font-weight: 500;
    color: #3b3b3b;
    margin-bottom: 35px;
    line-height: 1.4;
    width: 100%;
    text-align: center;
    margin-left: 0;
    white-space: normal;
    font-family: unset;
}

/* ===== Video Container ===== */
.video-demo-container {
    position: relative;
    /*    width: 85%;
    max-width: 900px;*/
    width: 1300px;
    max-width: 1300px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: linear-gradient(180deg, #e5e9f0, #cfd6de);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-demo-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-demo-play {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.95);
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    padding: 18px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .video-demo-play:hover {
        background-color: rgba(0, 0, 0, 0.55);
    }

/* ===== Responsive Design ===== */

@media (max-width: 1024px) {
    .video-demo-title {
        font-size: 3.5rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 35px;
        line-height: 4.5rem;
        width: 100%;
        text-align: center;
        margin-left: 0;
        white-space: normal;
        /* font-family: unset; */
        font-family: 'Lato';
    }
    .video-demo-container {
        position: relative;
        width: 100% !important;
        max-width: 1300px;
        margin: 0 auto;
        aspect-ratio: 16 / 9;
        background: linear-gradient(180deg, #e5e9f0, #cfd6de);
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
    @media (max-width: 768px) {
        .video-demo-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .video-demo-container {
            width: 100%;
            border-radius: 10px;
        }

        .video-demo-play {
            font-size: 3rem;
            padding: 14px 22px;
        }
    }

    @media (max-width: 480px) {
        .video-demo-title {
            font-size: 1.2rem;
        }

        .video-demo-play {
            font-size: 2.4rem;
        }
    }


    /*ACTION_SECTION*/
    .actiot-section {
        background: #E3D5EB;
        border-radius: 12px;
        padding: 40px 30px;
        max-width: 1300px;
        margin: 60px auto 40px;
    }

    .action-container {
        text-align: left;
        font-family: 'Montserrat', sans-serif;
    }

        .action-container h2 {
            margin-top: -12px;
            color: #3b3b3b;
            font-size: 4.4rem;
            white-space: nowrap;
            font-family: 'Lato'
        }

        .action-container p {
            font-size: 20px;
            margin-top: -23px;
            color: #3b3b3b;
            font-family: 'Lato';
        }

    .action-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .action-card {
        background: #fff;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 18px;
        border-radius: 14px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease, transform 0.2s ease;
        height: 6.2rem;
    }

        .action-card:hover {
            box-shadow: none;
            transform: translateY(2px);
        }

    .icon-boxs {
        width: 48px;
        height: 32px;
        background: transparent;
        border-radius: 6px;
        flex-shrink: 0;
        margin-left: 6%;
    }

    .vertical-line {
        border-left: 1px solid black;
        height: 40px;
        margin: 0 10px;
    }

    .card-content h3 {
        font-size: 27px;
        font-weight: 600;
        margin: 0 0px 3px 18px;
        color: #3b3b3b;
        font-family: 'Lato';
    }

    .card-content p {
        font-size: 18px;
        margin-left: 18px;
        margin-top: -10px;
        color: #3b3b3b;
        font-family: 'Lato';
    }

    /* ==== Mobile & Tablet View ==== */
    @media (max-width: 1024px) {
        .actiot-section {
            background: #B8F2E6;
            border-radius: 12px;
            padding: 40px 30px;
            max-width: 1300px;
            /* margin: 60px auto 40px; */
            width: 95%;
        }

        .action-container h2 {
            white-space: normal;
            text-align: center;
            margin-bottom: 11px;
            line-height: 6rem;
        }

        .action-container p {
            font-size: 35px;
            text-align: justify;
            margin-top: 32px;
            color: #3b3b3b;
            margin-left: 0rem;
            line-height: 3rem;
        }

        /* Cards ek ke niche ek */
        .action-cards {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .action-card {
            width: 100%;
            max-width: 900px;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            padding: 17px 14px;
            height: auto;
            border-radius: 11px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .icon-boxs {
            width: 68px;
            height: 68px;
            margin: 0 10px 0 15px;
            flex-shrink: 0;
        }

        .vertical-line {
            display: flex;
            height: 91px;
            margin: 0 10px;
        }

        .card-content {
            text-align: left;
        }

            .card-content h3 {
                font-size: 44px;
                color: #3b3b3b;
                margin-left: 0.5rem;
                margin-top: 1.1rem;
                font-family: 'Lato';
            }

            .card-content p {
                font-size: 26px;
                margin-top: 0px;
                color: #3b3b3b;
                white-space: nowrap;
                margin-left: 0.5rem;
                font-weight: 500;
            }
    }



    /*Manufacturing-section*/

    .mfg-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        padding: 60px 8%;
        background: #fff;
        flex-wrap: wrap;
        max-width: 1600px;
        width: 114%;
        margin: 0 auto;
        margin-left: -4rem;
    }


    .mfg-text-block {
        flex: 1;
        min-width: 300px;
    }

    .mfg-title {
        font-size: 40px;
        font-weight: 600;
        color: #3b3b3b;
        line-height: 1.3;
        margin-bottom: 20px;
        width: 100%;
        font-family: unset;
    }

    .mfg-para {
        font-size: 20px;
        color: #3b3b3b;
        line-height: 1.6;
        margin-bottom: 12px;
        max-width: 100%;
        font-family: unset;
        text-align: justify;
    }

    .mfg-image-block {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .mfg-image {
        width: 100%;
        max-width: 480px;
        border-radius: 18px;
        object-fit: cover;
    }


    /* ====  Responsive Design  ==== */
    @media (max-width: 1024px) {
        .mfg-wrapper {
            width: 100%;
            max-width: 100%;
            margin-left: 0;
            padding: 50px 5%;
        }

        .mfg-title {
            font-size: 2.6rem;
            font-weight: 600;
            color: #3b3b3b;
            line-height: 1.3;
            margin-bottom: 20px;
            width: 100%;
            font-family: 'Montserrat';
        }
    }

    @media (max-width: 576px) {
        .mfg-wrapper {
            width: 100%;
            max-width: 100%;
            margin-left: 0;
            padding: 40px 15px;
            flex-direction: column;
        }
    }

    /* Tablet */
    @media (max-width: 992px) {
        .mfg-wrapper {
            flex-direction: column;
            text-align: center;
        }

        .mfg-title {
            font-size: 3.5rem;
            font-weight: 600;
            color: #3b3b3b;
            line-height: 5rem;
            margin-bottom: 20px;
            width: 100%;
            font-family: 'Lato';
            text-align: left;
        }

        .mfg-para {
            font-size: 35px;
            text-align: justify;
            line-height: 3.5rem;
            font-family: 'Lato';
        }

        .mfg-image {
            max-width: 800px;
            padding-bottom: 35px;
        }
    }

    @media (min-width: 1400px) {
        .mfg-wrapper {
            max-width: 1600px;
        }
    }

    /* Mobile */
    @media (max-width: 600px) {
        .mfg-title {
            font-size: 1.8rem;
        }

        .mfg-para {
            font-size: 0.95rem;
        }

        .mfg-image {
            max-width: 100%;
            border-radius: 14px;
        }
    }





    /*2nd-section*/

    .kc-section {
        width: 93%;
        margin: auto;
        margin-top: -100px;
    }

    .kc-title {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 40px;
        font-family: unset;
    }

    .kc-row {
        display: grid;
        grid-template-columns: 260px auto 480px;
        align-items: start;
        margin-bottom: 35px;
    }

    .kc-left {
        font-size: 20px;
        font-weight: 500;
        padding-top: 0px;
        margin-top: -1rem;
        color: #3b3b3b;
        font-family: unset;
    }

    .kc-line {
        width: 260%;
        height: 1px;
        background: #3b3b3b;
        margin-top: 12px;
        margin-left: -22rem;
    }

    .kc-right {
        font-size: 20px;
        color: #3b3b3b;
        margin-top: 12px;
        font-family: unset;
        white-space: nowrap;
        margin-left: -14rem;
        text-align: end;
    }


    /* ==== TABLET ==== */
    @media (max-width: 1024px) {
        .kc-section {
            width: 94%;
        }

        .kc-title {
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 40px;
            font-family: 'Lato';
            text-align: center;
            padding-bottom: 30px;
        }

        .kc-right {
            font-size: 27px;
            color: #3b3b3b;
            margin-top: 60px;
            font-family: 'Lato';
            margin-left: -32rem;
            text-align: end;
        }

        .kc-left {
            font-size: 35px;
            font-weight: 500;
            padding-top: 0px;
            margin-top: -1rem;
            color: #3b3b3b;
            font-family: 'Lato';
            white-space: nowrap;
        }

        .kc-line {
            width: 255%;
            height: 6px;
            background: #3b3b3b;
            margin-top: 41px;
        }

        .kc-row {
            display: grid;
            grid-template-columns: 0px auto 432px;
            align-items: start;
            margin-bottom: 77px;
        }
    }

    /* === MOBILE === */
    @media (max-width: 576px) {
        .kc-section {
            width: 100%;
            padding: 0 15px;
        }

        .kc-title {
            font-size: 1.6rem;
            margin-bottom: 25px;
        }

        .kc-row {
            grid-template-columns: 1fr;
            row-gap: 8px;
        }

        .kc-left {
            font-size: 1.1rem;
            margin-top: 0;
        }

        .kc-line {
            width: 100%;
            margin: 6px 0;
        }

        .kc-right {
            font-size: 14px;
            margin-left: 0;
            text-align: left;
            white-space: normal;
        }
    }



    /*3rd-section*/


    .management-heading h2 {
        text-align: center;
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 50px;
        color: #3b3b3b;
        font-family: unset;
        margin-left: 18rem;
        width: 50%;
    }

    .management-section {
        padding: 60px 5%;
        background: #fff;
        font-family: unset;
        margin-top: -10rem;
    }

    .management-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }

    .management-count {
        display: flex;
        align-items: center;
        gap: 25px;
    }

        .management-count span {
            font-size: 200px;
            font-weight: 800;
            margin-right: 20px;
            color: #FFD3B6;
        }

    .management-line {
        width: 3px;
        height: 240px;
        background-color: #ccc;
    }

    .management-img-box img {
        width: 300px;
        border-radius: 16px;
        object-fit: cover;
    }

    .management-content {
        max-width: 450px;
        text-align: left;
    }

        .management-content h2 {
            font-size: 40px;
            margin-bottom: 4px;
            font-weight: 500;
            color: #3b3b3b;
            font-family: unset;
            line-height: 3.5rem;
            width: 85%;
        }

        .management-content p {
            font-size: 20px;
            line-height: 1.6;
            color: #3b3b3b;
            font-family: unset;
            text-align: justify;
        }

    /* === TABLET === */
    @media (max-width: 1024px) {
        .management-heading h2 {
            font-size: 3.5rem;
            width: 100%;
            margin-left: 0;
            text-align: center;
            font-family: 'Lato';
            font-weight: 600;
            padding-bottom: 30px;
        }

        .management-row {
            /*            flex-direction: column;*/
            flex-direction: column-reverse;
            gap: 40px;
            text-align: center;
        }

        .management-count {
            justify-content: center;
            gap: 18px;
        }

            .management-count span {
                font-size: 400px;
                margin-right: 0;
                margin-top: -8rem;
                display: none;
            }

        .management-line {
            height: 140px;
            display: none;
        }

        .management-img-box img {
            width: 700px;
        }

        .management-content {
            max-width: 100%;
            text-align: center;
        }

            .management-content h2 {
                width: 100%;
                font-size: 3.5rem;
                line-height: 5rem;
                text-align: center;
                font-weight: 600;
            }

            .management-content p {
                font-size: 35px;
                font-family: 'Lato';
                color: #3b3b3b;
            }
    }

    /* ==== MOBILE ==== */
    @media (max-width: 576px) {
        .management-section {
            padding: 45px 15px;
            margin-top: 0;
        }

        .management-heading h2 {
            font-size: 1.7rem;
            margin-bottom: 30px;
        }

        .management-count span {
            font-size: 90px;
        }

        .management-line {
            display: none;
        }

        .management-img-box img {
            width: 200px;
        }

        .management-content h2 {
            font-size: 1.5rem;
            line-height: 2.2rem;
        }

        .management-content p {
            font-size: 14px;
            line-height: 1.4;
            text-align: justify;
        }
    }



    /*02-section*/
    .asset-section {
        width: 100%;
        padding: 60px 80px;
        font-family: unset;
        margin-top: -3rem;
    }

    .asset-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 80px;
    }

    .asset-left {
        max-width: 450px;
    }

        .asset-left h2 {
            font-size: 40px;
            margin-bottom: 4px;
            line-height: 3.5rem;
            color: #3b3b3b;
            font-weight: 500;
            font-family: unset;
            width: 74%;
        }

        .asset-left p {
            font-size: 20px;
            line-height: 1.6;
            color: #3b3b3b;
            font-family: unset;
            text-align: justify;
        }

    .asset-image img {
        width: 300px;
        object-fit: cover;
        border-radius: 20px;
    }

    .asset-number {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-shrink: 0;
    }

    .v-line {
        width: 3px;
        height: 233px;
        background: #ccc;
        margin-left: 0rem;
    }

    .asset-number span {
        font-size: 200px;
        font-weight: 800;
        margin-right: 20px;
        color: #FFD3B6;
    }

    /* ==== TABLET ==== */
    @media (max-width: 1024px) {
        .asset-section {
            padding: 50px 40px;
        }

        .asset-content {
            flex-direction: column;
            gap: 50px;
            text-align: center;
            height: 92rem;
            margin-top: -8rem;
        }

        .asset-left {
            max-width: 100%;
            margin-top: 5rem;
        }

            .asset-left h2 {
                font-size: 3.5rem;
                line-height: 4rem;
                text-align: center;
                margin-left: 9rem;
                font-weight: 600;
                font-family: 'Lato';
            }

            .asset-left p {
                font-size: 35px;
                color: #3b3b3b;
                margin-top: 21px;
                font-family: 'Lato';
            }

        .asset-image img {
            width: 660px;
            margin-top: 20px;
        }

        .asset-number {
            flex-direction: column;
            gap: 15px;
        }

            .asset-number span {
                font-size: 335px;
                margin-right: 0;
                margin-top: 7rem;
                display: none;
            }

        .v-line {
            height: 100px;
            display: none;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 576px) {
        .asset-section {
            padding: 40px 16px;
        }

        .asset-content {
            gap: 35px;
        }

        .asset-left h2 {
            font-size: 1.6rem;
            line-height: 2.2rem;
        }

        .asset-left p {
            font-size: 14px;
            line-height: 1.4;
            text-align: justify;
        }

        .asset-image img {
            width: 200px;
        }

        .asset-number span {
            font-size: 90px;
        }

        .v-line {
            display: none;
        }
    }



    /*03*/

    .service-section {
        padding: 60px 5%;
        font-family: unset;
        margin-top: -3rem;
    }

    .service-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }


    .service-count {
        display: flex;
        align-items: center;
        gap: 25px;
    }

        .service-count span {
            font-size: 200px;
            font-weight: 800;
            margin-right: 20px;
            color: #FFD3B6;
        }

    .service-line {
        width: 3px;
        height: 240px;
        background-color: #ccc;
    }


    .service-img-wrap img {
        width: 300px;
        border-radius: 16px;
        object-fit: cover;
    }


    .service-content {
        max-width: 450px;
        text-align: left;
    }

        .service-content h2 {
            font-size: 40px;
            margin-bottom: 4px;
            font-weight: 500;
            color: #3b3b3b;
            font-family: unset;
            line-height: 3.5rem;
            width: 68%;
        }

        .service-content p {
            font-size: 20px;
            line-height: 1.6;
            color: #3b3b3b;
            font-family: unset;
            text-align: justify;
        }



    /* ===== TABLET ======== */
    @media (max-width: 1024px) {
        .service-section {
            padding: 50px 4%;
        }

        .service-row {
            /*flex-direction: column;*/
            flex-direction: column-reverse;
            gap: 45px;
            text-align: center;
        }

        .service-count {
            justify-content: center;
            gap: 20px;
        }

            .service-count span {
                font-size: 335px;
                margin-right: 0;
                margin-top: 13rem;
                display: none;
            }

        .service-line {
            height: 120px;
            display: none;
        }

        .service-img-wrap img {
            width: 660px;
        }

        .service-content {
            max-width: 100%;
            text-align: center;
        }

            .service-content h2 {
                width: 100%;
                font-size: 3.5rem;
                line-height: 3.6rem;
                margin-top: -62px;
                font-family: 'Lato';
                font-weight: 600;
            }

            .service-content p {
                font-size: 35px;
                color: #3b3b3b;
                font-family: 'Lato';
                margin-top: 18px;
            }
    }

    /* == MOBILE == */
    @media (max-width: 576px) {
        .service-section {
            padding: 40px 16px;
        }

        .service-row {
            gap: 30px;
        }

        .service-count span {
            font-size: 90px;
        }

        .service-line {
            display: none;
        }

        .service-img-wrap img {
            width: 200px;
        }

        .service-content h2 {
            font-size: 1.6rem;
            line-height: 2.2rem;
        }

        .service-content p {
            font-size: 14px;
            line-height: 1.4;
            text-align: justify;
        }
    }




    /*04*/
    .asset-section2 {
        width: 100%;
        padding: 60px 80px;
        font-family: unset;
        margin-top: -3rem;
    }

    .asset-content2 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 80px;
    }

    .asset-left2 {
        max-width: 450px;
    }

        .asset-left2 h2 {
            font-size: 40px;
            margin-bottom: 10px;
            line-height: 3.5rem;
            color: #3b3b3b;
            font-weight: 500;
            font-family: unset;
            width: 86%;
        }

        .asset-left2 p {
            font-size: 20px;
            line-height: 1.6;
            color: #3b3b3b;
            font-family: unset;
            text-align: justify;
        }

    .asset-image2 img {
        width: 300px;
        object-fit: cover;
        border-radius: 20px;
    }

    .asset-number2 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-shrink: 0;
    }

    .v-line2 {
        width: 3px;
        height: 233px;
        background: #ccc;
        margin-left: 0rem;
    }

    .asset-number2 span {
        font-size: 200px;
        font-weight: 800;
        margin-right: 20px;
        color: #FFD3B6;
    }

    /* ================= TABLET ================= */
    @media (max-width: 1024px) {
        .asset-section2 {
            padding: 50px 40px;
        }

        .asset-content2 {
            flex-direction: column;
            gap: 50px;
            text-align: center;
            height: 65rem;
            padding-bottom: 0PX;
        }

        .asset-number2 {
            flex-direction: column;
            gap: 15px;
        }

            .asset-number2 span {
                font-size: 335px;
                margin-right: 0;
                margin-top: 6rem;
                display: none;
            }

        .v-line2 {
            height: 90px;
            display: none;
        }

        .asset-image2 img {
            width: 660px;
        }

        .asset-left2 {
            max-width: 100%;
        }

            .asset-left2 h2 {
                width: 100%;
                font-size: 3.5rem;
                line-height: 4.5rem;
                margin-top: 6rem;
                font-weight: 600;
                font-family: 'Lato';
            }

            .asset-left2 p {
                font-size: 35px;
                text-align: justify;
                font-family: 'Lato';
                margin-top: 0rem;
                line-height: 4rem;
            }
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .asset-section2 {
        padding: 40px 16px;
    }

    .asset-content2 {
        gap: 30px;
    }

    .asset-number2 span {
        font-size: 90px;
    }

    .v-line2 {
        display: none;
    }

    .asset-image2 img {
        width: 200px;
    }

    .asset-left2 h2 {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .asset-left2 p {
        font-size: 14px;
        line-height: 1.4;
        text-align: justify;
    }
}





/*05*/
.ai-section {
    padding: 60px 5%;
    font-family: unset;
    margin-top: -3rem;
}

.ai-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.ai-count {
    display: flex;
    align-items: center;
    gap: 25px;
}

    .ai-count span {
        font-size: 200px;
        font-weight: 800;
        margin-right: 20px;
        color: #FFD3B6;
    }

.ai-line {
    width: 3px;
    height: 240px;
    background-color: #ccc;
}

.ai-img-box img {
    width: 300px;
    border-radius: 16px;
    object-fit: cover;
}

.ai-content {
    max-width: 450px;
    text-align: left;
}

    .ai-content h2 {
        font-size: 40px;
        margin-bottom: 12px;
        font-weight: 500;
        color: #3b3b3b;
        font-family: unset;
        line-height: 3.5rem;
        width: 77%;
    }

    .ai-content p {
        font-size: 20px;
        line-height: 1.6;
        color: #3b3b3b;
        font-family: unset;
        text-align: justify;
    }

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .ai-row {
        flex-direction: column-reverse;
        gap: 45px;
        text-align: center;
    }

    .ai-count {
        justify-content: center;
    }

        .ai-count span {
            font-size: 335px;
            margin-right: 0;
            display: none;
        }

    .ai-line {
        height: 100px;
        display: none;
    }

    .ai-img-box img {
        width: 660px;
        margin-top: 1rem;
    }

    .ai-content {
        max-width: 100%;
        text-align: center;
    }

        .ai-content h2 {
            width: 100%;
            font-size: 3.5rem;
            line-height: 2.6rem;
            margin-top: 7rem;
            font-family: 'Lato';
            font-weight: 600;
        }

        .ai-content p {
            text-align: justify;
            font-size: 35px;
            color: #3b3b3b;
            line-height: 4rem;
        }
}

/* ====== MOBILE ====== */
@media (max-width: 576px) {
    .ai-row {
        gap: 30px;
    }

    .ai-count span {
        font-size: 90px;
    }

    .ai-line {
        display: none;
    }

    .ai-img-box img {
        width: 200px;
    }

    .ai-content h2 {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .ai-content p {
        font-size: 14px;
        line-height: 1.4;
        text-align: justify;
    }
}




/*06*/
.automation-section {
    width: 100%;
    padding: 60px 80px;
    font-family: "Poppins", sans-serif;
    background: #fff;
}

.automation-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.automation-left {
    max-width: 450px;
}

    .automation-left h2 {
        font-size: 2.2rem;
        margin-bottom: 10px;
        line-height: 3rem;
        color: #3b3b3b;
        font-weight: 600;
        font-family: 'Montserrat';
        width: 75%;
    }

    .automation-left p {
        font-size: 17px;
        line-height: 1.6;
        color: #3b3b3b;
        font-family: 'Montserrat';
        text-align: justify;
    }

.automation-image img {
    width: 300px;
    object-fit: cover;
    border-radius: 20px;
}

.automation-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-shrink: 0;
}

.automation-v-line {
    width: 3.2px;
    height: 233px !important;
    background: #ccc;
    margin-left: 0rem;
    display: flex !important;
}

.automation-number span {
    font-size: 200px;
    font-weight: 800;
    margin-right: 20px;
    color: #FFD3B6;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .automation-section {
        padding: 50px 40px;
    }

    .automation-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        height: 66rem;
        margin-top: -2rem;
    }

    .automation-number {
        flex-direction: column;
        gap: 15px;
        display: none;
    }

        .automation-number span {
            font-size: 335px;
            margin-right: 0;
            margin-top: 6rem;
        }


    .automation-v-line {
        height: 90px;
        display: none;
    }

    .automation-image img {
        width: 661px;
    }

    .automation-left {
                max-width: 100%;
    }

        .automation-left h2 {
            width: 100%;
            font-size: 3.5rem;
            line-height: 4rem;
            font-weight: 600;
            font-family: 'Lato';
        }

        .automation-left p {
            font-size: 35px;
            text-align: justify;
            color: #3b3b3b;
            font-family: 'Lato';
            width: 98%;
            margin-left: 0.5rem;
        }
}

/* ==== MOBILE ==== */
@media (max-width: 576px) {
    .automation-section {
        padding: 40px 16px;
    }

    .automation-content {
        gap: 30px;
    }

    .automation-number span {
        font-size: 90px;
    }

    .automation-v-line {
        display: none;
    }

    .automation-image img {
        width: 200px;
    }

    .automation-left h2 {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .automation-left p {
        font-size: 14px;
        line-height: 1.4;
        text-align: justify;
    }
}




/*07*/


.selfhelp-section {
    padding: 60px 5%;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

.selfhelp-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* LEFT SIDE */
.selfhelp-count {
    display: flex;
    align-items: center;
    gap: 25px;
}

    .selfhelp-count span {
        font-size: 200px;
        font-weight: 800;
        margin-right: 20px;
        color: #FFD3B6;
    }

.selfhelp-line {
    width: 3px;
    height: 240px;
    background-color: #ccc;
}

.selfhelp-img-box img {
    width: 300px;
    border-radius: 16px;
    object-fit: cover;
}

.selfhelp-content {
    max-width: 450px;
    text-align: left;
}

    .selfhelp-content h2 {
        font-size: 40px;
        margin-bottom: 12px;
        font-weight: 500;
        color: #3b3b3b;
        font-family: unset;
        line-height: 3rem;
        width: 64%;
    }

    .selfhelp-content p {
        font-size: 20px;
        line-height: 1.6;
        color: #3b3b3b;
        font-family: unset;
        text-align: justify;
    }

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .selfhelp-section {
        padding: 50px 40px;
    }

    .selfhelp-row {
        flex-direction: column-reverse;
        gap: 45px;
        text-align: center;
    }

    .selfhelp-count {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

        .selfhelp-count span {
            font-size: 335px;
            margin-right: 0;
            margin-top: 5rem;
            display: none;
        }

    .selfhelp-line {
        height: 90px;
        display: none;
    }

    .selfhelp-img-box img {
        width: 660px;
    }

    .selfhelp-content {
        max-width: 100%;
        text-align: center;
    }

        .selfhelp-content h2 {
            width: 100%;
            font-size: 3.5rem;
            line-height: 2.6rem;
            font-family: 'Lato';
            font-weight: 600;
        }


        .selfhelp-content p {
            font-size: 35px;
            color: #3b3b3b;
            margin-top: 3rem;
            font-family: 'Lato';
            width: 98%;
            margin-left: 0.5rem;
        }
}

/*  MOBILE */
@media (max-width: 576px) {
    .selfhelp-section {
        padding: 40px 16px;
    }

    .selfhelp-row {
        gap: 30px;
    }

    .selfhelp-count span {
        font-size: 90px;
    }

    .selfhelp-line {
        display: none;
    }

    .selfhelp-img-box img {
        width: 200px;
    }

    .selfhelp-content h2 {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .selfhelp-content p {
        font-size: 14px;
        line-height: 1.4;
        text-align: justify;
    }
}







/*4th -section*/

.assign-wrap {
    width: 95%;
    padding: 60px 20px;
    background: #FFD3B6;
    border-radius: 12px;
    box-sizing: border-box;
    text-align: center;
    font-family: Inter, Arial, sans-serif;
    margin-left: 2rem;
}

.assign-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    width: 97%;
    font-family: unset;
}

.assign-grid {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    min-height: 430px;
    height: auto;
    margin-left: 1rem;
}

.assign-box {
    position: absolute;
    width: 334px;
    height: 114px;
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
    z-index: 3;
}

    .assign-box h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
        margin-top: -1rem;
        text-align: left;
        font-family: unset;
        color: #3b3b3b;
    }

    .assign-box p {
        font-size: 17px;
        background: #f3f3f3;
        padding: 8px 8px;
        border-radius: 8px;
        color: #3b3b3b;
        margin-top: -1rem;
        height: 4rem;
        font-family: unset;
        text-align: left;
        width: 21rem;
        margin-left: -8px;
    }

.assign-01 {
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
}

.assign-02 {
    right: -4%;
    top: 152px;
}

.assign-03 {
    left: 51%;
    bottom: 29px;
    transform: translateX(-50%);
}

.assign-04 {
    left: 0%;
    top: 160px;
}

.assign-conn {
    position: absolute;
    background: rgba(0,0,0,0.25);
    z-index: 1;
    border-radius: 2px;
}

/* 01 -> 02 */
.a-1 {
    top: 81px;
    left: 64%;
    /*    width: calc(28%);*/
    height: 3px;
    width: 265px;
}

    .a-1::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 3px;
        height: 70px;
        background: rgba(0,0,0,0.25);
    }

/* 02 -> 03 */
.a-2 {
    right: 14%;
    top: 227px;
    width: 3px;
    height: 117px;
}

    .a-2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: -380px;
        width: 380px;
        height: 3px;
        background: rgba(0,0,0,0.25);
    }

/* 03 -> 04 */
.a-3 {
    left: 14%;
    bottom: 95px;
    width: 380px;
    height: 3px;
}

    .a-3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 3px;
        height: 120px;
        background: rgba(0,0,0,0.25);
    }

/* 04 -> 01 */
.a-4 {
    top: 91px;
    left: 14%;
    width: 300px;
    height: 3px;
}

    .a-4::after {
        content: "";
        position: absolute;
        left: -3px;
        top: 0;
        width: 4px;
        height: 107px;
        background: rgba(0, 0, 0, 0.25);
    }

@media (max-width: 1024px) and (min-width: 769px) {

    .assign-wrap {
        width: 100%;
        margin-left: 0;
        padding: 50px 30px;
    }

    .assign-title {
        margin-left: 0;
        width: 100%;
        font-size: 3.5rem;
        font-family: 'Lato';
    }

    .assign-grid {
        max-width: 900px;
        height: 470px;
        margin: auto;
        margin-left: -0.7rem;
    }

    .assign-box {
        width: 300px;
        height: auto;
    }

        .assign-box p {
            width: 100%;
            margin-left: 0;
            height: auto;
        }

    /* ===== keep connectors visible ===== */
    .assign-conn {
        display: block;
    }

    /* slightly adjust connector lengths */
    .a-1 {
        width: 220px;
    }

    .a-2::after {
        width: 320px;
        left: -320px;
    }

    .a-3 {
        width: 320px;
    }

    .a-4 {
        width: 240px;
    }
    .a-2 {
        right: 12%;
        top: 258px;
        width: 4px;
        height: 117px;
    }
}




/*5-section*/

.mfg-hero-wrapper {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.mfg-hero-title {
    font-weight: 600;
    color: #3b3b3b;
    margin-bottom: 18px;
    font-size: 40px;
    font-family: unset;
}

.mfg-hero-desc {
    margin: 0 auto;
    line-height: 1.7;
    color: #3b3b3b;
    font-family: unset;
    font-size: 20px;
    text-align: center;
}


/* ======   TABLET  ======= */
@media (max-width: 1024px) {
    .mfg-hero-wrapper {
        padding: 50px 24px;
    }

    .mfg-hero-title {
        font-size: 3.5rem;
        line-height: 3rem;
        font-family: 'Lato';
        margin-top: 12px;
    }

    .mfg-hero-desc {
        font-size: 35px;
        line-height: 1.6;
        color: #3b3b3b;
        width: 98%;
        text-align: justify;
        font-family: 'Lato';
        margin-top: 32px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .mfg-hero-wrapper {
        padding: 40px 16px;
    }

    .mfg-hero-title {
        font-size: 28px;
        line-height: 2.2rem;
    }

    .mfg-hero-desc {
        font-size: 14px;
        line-height: 1.5;
    }
}






/*6-section*/
.zsdx-action-section {
    background: #FFD3B6;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 1300px;
    margin: 60px auto 40px;
}

.zsdx-action-container {
    text-align: left;
    font-family: unset;
}

    .zsdx-action-container h2 {
        margin-top: -12px;
        color: #3b3b3b;
        font-size: 4.3rem;
        white-space: nowrap;
        font-family: unset;
    }

    .zsdx-action-container p {
        font-size: 20px;
        margin-top: -23px;
        color: #3b3b3b;
        font-family: unset;
    }

.zsdx-action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.zsdx-action-card {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    height: 6.2rem;
}

    .zsdx-action-card:hover {
        box-shadow: none;
        transform: translateY(2px);
    }

.zsdx-icon-boxs {
    width: 48px;
    height: 32px;
    background: transparent;
    border-radius: 6px;
    flex-shrink: 0;
    margin-left: 6%;
}

.zsdx-vertical-line {
    border-left: 1px solid black;
    height: 40px;
    margin: 0 10px;
}

.zsdx-card-content h3 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 0px 3px 18px;
    color: #3b3b3b;
}

.zsdx-card-content p {
    font-size: 17px;
    margin-left: 18px;
    margin-top: -10px;
    color: #3b3b3b;
}

/* ====== Mobile & Tablet ====== */
@media (max-width: 1024px) {
    .zsdx-action-section {
        padding: 25px 15px;
        margin: 30px auto;
        max-width: 95%;
    }

    .zsdx-action-container h2 {
/*        font-size: 4.5rem;*/
        white-space: normal;
        text-align: center;
        margin-bottom: 11px;
        line-height: 6rem;
    }

    .zsdx-action-container p {
        font-size: 34px;
        text-align: justify;
        margin-top: 32px;
        color: #3b3b3b;
        margin-left: 0rem;
        line-height: 3rem;
    }

    .zsdx-action-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .zsdx-action-card {
        width: 100%;
        max-width: 900px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 17px 14px;
        height: auto;
        border-radius: 11px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .zsdx-icon-boxs {
        width: 68px;
        height: 68px;
        margin: 0 10px 0 15px;
        flex-shrink: 0;
    }

    .zsdx-vertical-line {
        display: flex;
        height: 91px;
        margin: 0 10px;
    }

    .zsdx-card-content {
        text-align: left;
    }

        .zsdx-card-content h3 {
            font-size: 44px;
            color: #3b3b3b;
            margin-left: 0.5rem;
            margin-top: 1.1rem;
            font-family: 'Lato';
        }

        .zsdx-card-content p {
            font-size: 30px;
            margin-top: 0px;
            color: #3b3b3b;
            white-space: nowrap;
            margin-left: 0.5rem;
            font-weight: 500;
            font-family: 'Lato';
        }
}








/*Reatil-section*/

/*1st-section*/

.zsdx-retail-section {
    width: 100%;
    padding: 60px 20px;
}

.zsdx-retail-container {
    max-width: 1300px;
    margin: auto;
    text-align: center;
    font-family: unset;
}

.zsdx-retail-title {
    font-size: 40px;
    font-weight: 600;
    color: #3b3b3b;
    line-height: 3.5rem;
    margin-bottom: 20px;
    width: 100%;
    font-family: unset;
}

.zsdx-retail-text {
    font-size: 20px;
    color: #3b3b3b;
    max-width: 1300px;
    margin: auto;
    line-height: 1.8rem;
    font-family: unset;
}

/*  TABLET VIEW (768px - 1024px)  */
@media (max-width: 1024px) {
    .zsdx-retail-title {
        font-size: 3.5rem;
        line-height: 4rem;
        text-align: left;
        font-weight: 600;
        font-family: 'Lato';
    }

    .zsdx-retail-text {
        font-size: 35px;
        text-align: justify;
        line-height: 4rem;
        font-family: 'Lato';
    }
}



/* ---------------------------
    MOBILE VIEW (UP TO 767px)
---------------------------- */
@media (max-width: 767px) {
    .zsdx-retail-section {
        padding: 40px 15px;
    }

    .zsdx-retail-title {
        font-size: 1.9rem;
        line-height: 2.6rem;
    }

    .zsdx-retail-text {
        font-size: 0.95rem;
        line-height: 1.6rem;
        max-width: 100%;
    }
}




/*2nd-section*/
.zsdx-retail-issues {
    width: 100%;
    padding: 60px 20px;
    background: #ffffff;
}

.zsdx-retail-wrapper {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 0;
    align-items: center;
    position: relative;
}

.zsdx-retail-img {
    position: relative;
    z-index: 3;
    margin-right: -120px;
}

    .zsdx-retail-img img {
        width: 330px;
        border-radius: 25px;
        object-fit: cover;
        display: block;
    }


.zsdx-retail-content {
    flex: 1;
    background: #B2DFDB;
    padding: 50px 44px 10px 160px;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}

.zsdx-retail-heading {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #3b3b3b;
    width: 60%;
    font-family: unset;
}


.zsdx-retail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .zsdx-retail-list li {
        font-size: 20px;
        margin-bottom: 18px;
        line-height: 2rem;
        color: #3b3b3b;
        position: relative;
        padding-left: 25px;
        font-family: unset;
        text-align: justify;
    }

    .zsdx-retail-list .icon1 {
        position: absolute;
        left: 0;
        top: 0px;
        font-size: 20px;
        font-weight: 900;
        color: #3b3b3b;
    }



/* TABLET VIEW (max-width: 992px)  */
@media (max-width: 992px) {
    .zsdx-retail-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .zsdx-retail-img {
        margin-right: 0;
        margin-bottom: -40px;
    }

        .zsdx-retail-img img {
            width: 510px;
        }

    .zsdx-retail-content {
        padding: 80px 40px 30px 40px;
    }

    .zsdx-retail-heading {
        width: 100%;
        font-size: 3.5rem;
        font-family: 'Lato';
    }

    .zsdx-retail-list li {
        text-align: left;
        font-size: 35px;
        line-height: 4rem;
        font-family: 'Lato';
    }
}


/* Mobile */
@media (max-width: 768px) {
    .zsdx-retail-img img {
        width: 444px;
    }

    .zsdx-retail-content {
        padding: 70px 30px 25px 30px;
    }

    .zsdx-retail-heading {
        font-size: 1.6rem;
        text-align: center;
    }

    .zsdx-retail-list li {
        font-size: 15px;
        padding-left: 22px;
    }

    .zsdx-retail-list .icon1 {
        font-size: 18px;
    }
}


/* ================================
   📱 MOBILE VIEW (max-width: 576px)
   ================================ */
@media (max-width: 576px) {

    .zsdx-retail-wrapper {
        gap: 20px;
    }

    .zsdx-retail-img {
        margin: 0;
    }

        .zsdx-retail-img img {
            width: 100%;
            max-width: 230px;
        }

    .zsdx-retail-content {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .zsdx-retail-heading {
        font-size: 1.4rem;
        width: 100%;
    }

    .zsdx-retail-list li {
        font-size: 14px;
        line-height: 1.6rem;
        padding-left: 20px;
    }

    .zsdx-retail-list .icon1 {
        font-size: 17px;
    }
}



/*3-section*/

/*01*/
.zsdx-retail-thrive {
    width: 100%;
    padding: 70px 20px;
    text-align: center;
    font-family: unset;
}


.zsdx-retail-main-title {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #3b3b3b;
    margin-left: 20rem;
    width: 50%;
    font-family: 'Montserrat';
}

.zsdx-retail-main-para {
    max-width: 1300px;
    margin: auto;
    font-size: 20px;
    color: #3b3b3b;
    line-height: 2rem;
    margin-bottom: 50px;
    font-family: unset;
}


.zsdx-retail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1120px;
    margin: auto;
    gap: 40px;
}


.zsdx-retail-left {
    width: 50%;
    position: relative;
}

.zsdx-retail-number {
    position: absolute;
    top: 30px;
    left: -75px;
    font-size: 70px;
    font-weight: 700;
    color: #5bb3b3;
    opacity: 0.25;
    transform: rotate(-90deg);
}

.zsdx-retail-sub-title {
    font-size: 40px;
    font-weight: 500;
    color: #3b3b3b;
    margin-bottom: 15px;
    text-align: left;
    line-height: 3.5rem;
    font-family: unset;
}

.zsdx-retail-sub-para {
    font-size: 20px;
    color: #3b3b3b;
    line-height: 1.8rem;
    text-align: justify;
    width: 90%;
    font-family: unset;
}

}


.zsdx-retail-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.zsdx-retail-imgbox {
    width: 150%;
    max-width: 465px;
    height: 290px;
    /*    background: #cfd8dc;*/
    border-radius: 25px;
}

    .zsdx-retail-imgbox img {
        width: 150%;
        max-width: 465px;
        height: 290px;
        border-radius: 25px;
    }

/* RESPONSIVE */

@media (max-width: 992px) {
    .zsdx-retail-row {
        flex-direction: column;
        text-align: center;
    }

    .zsdx-retail-main-title {
        font-size: 3.5rem;
        font-weight: 600;
        margin-bottom: 30px;
        color: #3b3b3b;
        margin-left: 0rem;
        width: 100%;
        font-family: 'Lato';
        line-height: 4.5rem;
    }

    .zsdx-retail-main-para {
        max-width: 920px;
        margin: auto;
        font-size: 35px;
        color: #3b3b3b;
        line-height: 3.5rem;
        margin-bottom: 50px;
        font-family: 'Lato';
        text-align: justify;
    }

    .zsdx-retail-left, .zsdx-retail-right {
        width: 100%;
    }

    .zsdx-retail-number {
        left: 50%;
        transform: translateX(-50%) rotate(-90deg);
        display: none;
    }

    .zsdx-retail-sub-title {
        font-size: 3.5rem;
        text-align: center;
        line-height: 4.5rem;
        font-family: 'Lato';
        font-weight: 600;
    }

    .zsdx-retail-sub-para {
        width: 920px;
        max-width: 920px;
        margin: auto;
        font-size: 35px;
        color: #3b3b3b;
        line-height: 3.5rem;
        margin-bottom: 50px;
        font-family: 'Lato';
        text-align: justify;
    }

    .zsdx-retail-imgbox img {
        width: 800px;
        max-width: 800px;
        height: 350px;
        border-radius: 25px;
        margin-left: 5rem;
    }
}

@media (max-width: 576px) {

    .zsdx-retail-main-title {
        font-size: 1.8rem;
    }

    .zsdx-retail-number {
        font-size: 70px;
        top: -10px;
    }

    .zsdx-retail-sub-title {
        font-size: 1.5rem;
    }

    .zsdx-retail-imgbox {
        height: 180px;
        border-radius: 20px;
    }
}






/*02*/
.zsdx-retail-asset-sec {
    width: 100%;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
}

/* ROW */
.zsdx-retail-asset-row {
    max-width: 1120px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: 5rem;
}

/* LEFT IMAGE */
.zsdx-retail-asset-left {
    width: 50%;
}

.zsdx-retail-asset-imgbox {
    width: 150%;
    max-width: 465px;
    height: 290px;
    background: #cfd8dc;
    border-radius: 25px;
}

    .zsdx-retail-asset-imgbox img {
        width: 150%;
        max-width: 465px;
        height: 290px;
        border-radius: 25px;
    }

.zsdx-retail-asset-right {
    width: 50%;
    position: relative;
}

.zsdx-retail-asset-title {
    font-size: 40px;
    font-weight: 500;
    color: #3b3b3b;
    margin-bottom: 15px;
    text-align: end;
    line-height: 3rem;
    font-family: unset;
}

.zsdx-retail-asset-para {
    width: 100%;
    color: #3b3b3b;
    line-height: 2rem;
    font-size: 20px;
    text-align: end;
    font-family: unset;
}

/* 02 */
.zsdx-retail-asset-number {
    position: absolute;
    top: 32px;
    right: -90px;
    font-size: 70px;
    font-weight: 700;
    color: #5bb3b3;
    opacity: 0.25;
    letter-spacing: 1px;
    transform: rotate(90deg);
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .zsdx-retail-asset-row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .zsdx-retail-asset-left,
    .zsdx-retail-asset-right {
        width: 100%;
    }

    .zsdx-retail-asset-para {
        width: 100%;
        text-align: justify;
        font-size: 35px;
        line-height: 3.5rem;
        margin-left: -3rem;
        font-family: 'Lato';
    }

    .zsdx-retail-asset-number {
        right: 10px;
        top: -10px;
        transform: rotate(90deg);
        display: none;
    }

    .zsdx-retail-asset-imgbox {
        width: 150%;
        max-width: 465px;
        height: 290px;
        border-radius: 25px;
        background: transparent;
    }

        .zsdx-retail-asset-imgbox img {
            width: 800px;
            max-width: 800px;
            height: 350px;
            border-radius: 25px;
            margin-left: 0rem;
        }

    .zsdx-retail-asset-title {
        font-size: 3.5rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 15px;
        text-align: center;
        line-height: 4rem;
        font-family: 'Lato';
        margin-left: -9rem;
    }
}

@media (max-width: 576px) {
    .zsdx-retail-asset-title {
        font-size: 1.7rem;
    }

    .zsdx-retail-asset-imgbox {
        height: 200px;
    }

    .zsdx-retail-asset-number {
        font-size: 1.7rem;
    }
}


/*03*/
/* MAIN SECTION */
.retail-flow-sec {
    width: 100%;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
}

.retail-flow-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1120px;
    margin: auto;
    gap: 40px;
}

.retail-flow-left {
    width: 50%;
    position: relative;
}

.retail-flow-num {
    position: absolute;
    top: 30px;
    left: -82px;
    font-size: 70px;
    font-weight: 700;
    color: #5bb3b3;
    opacity: 0.25;
    transform: rotate(-90deg);
}

.retail-flow-title {
    font-size: 40px;
    font-weight: 500;
    color: #3b3b3b;
    margin-bottom: 15px;
    text-align: left;
    line-height: 3rem;
    font-family: unset;
}

.retail-flow-desc {
    font-size: 20px;
    color: #3b3b3b;
    line-height: 2rem;
    text-align: justify;
    width: 93%;
    font-family: unset;
}

.retail-flow-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.retail-flow-imgbox {
    width: 150%;
    max-width: 465px;
    height: 290px;
    background: #cfd8dc;
    border-radius: 25px;
}

    .retail-flow-imgbox img {
        width: 150%;
        max-width: 465px;
        height: 290px;
        border-radius: 25px;
    }


/* RESPONSIVE */
@media (max-width: 992px) {
    .retail-flow-row {
        flex-direction: column;
        text-align: center;
    }

    .retail-flow-left,
    .retail-flow-right {
        width: 100%;
    }

    .retail-flow-num {
        left: 50%;
        transform: translateX(-50%) rotate(-90deg);
        display: none;
    }

    .retail-flow-title {
        font-size: 3.5rem;
        text-align: center;
        font-family: 'Lato';
        font-weight: 600;
        line-height: 4rem;
    }

    .retail-flow-desc {
        text-align: justify;
        margin: auto;
        font-size: 35px;
        line-height: 3.5rem;
        font-family: 'Lato';
    }

    .retail-flow-imgbox img {
        width: 800px;
        max-width: 800px;
        height: 350px;
        border-radius: 25px;
        margin-left: -11rem;
    }
}

}

@media (max-width: 576px) {

    .retail-flow-num {
        font-size: 70px;
        top: -10px;
    }

    .retail-flow-title {
        font-size: 1.6rem;
    }

    .retail-flow-imgbox {
        height: 180px;
        border-radius: 20px;
    }
}





/*04*/
.retailBlock2-sec {
    width: 100%;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
}

/* ROW */
.retailBlock2-row {
    max-width: 1120px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: 5rem;
}

/* LEFT IMAGE */
.retailBlock2-left {
    width: 50%;
}

.retailBlock2-imgbox {
    width: 150%;
    max-width: 465px;
    height: 290px;
    background: #cfd8dc;
    border-radius: 25px;
}

    .retailBlock2-imgbox img {
        width: 150%;
        max-width: 465px;
        height: 290px;
        border-radius: 25px;
    }

.retailBlock2-right {
    width: 50%;
    position: relative;
}

.retailBlock2-title {
    font-size: 40px;
    font-weight: 500;
    color: #3b3b3b;
    margin-bottom: 15px;
    text-align: end;
    line-height: 3rem;
    font-family: unset;
}

.retailBlock2-para {
    width: 100%;
    color: #3b3b3b;
    line-height: 2rem;
    font-size: 20px;
    text-align: end;
    font-family: unset;
}

.retailBlock2-number {
    position: absolute;
    top: 32px;
    right: -88px;
    font-size: 70px;
    font-weight: 700;
    color: #5bb3b3;
    opacity: 0.25;
    letter-spacing: 1px;
    transform: rotate(90deg);
}

/*  RESPONSIVE  */

@media (max-width: 992px) {

    .retailBlock2-row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .retailBlock2-left,
    .retailBlock2-right {
        width: 100%;
    }

    .retailBlock2-para {
        text-align: justify;
        font-size: 35px;
        margin-left: -2rem;
        line-height: 3.5rem;
        font-family: 'Lato';
    }

    .retailBlock2-number {
        right: 10px;
        top: -10px;
        transform: rotate(90deg);
        display: none;
    }

    .retailBlock2-imgbox {
        width: 150%;
        max-width: 465px;
        height: 290px;
        background: #cfd8dc;
        border-radius: 25px;
    }

        .retailBlock2-imgbox img {
            width: 800px;
            max-width: 800px;
            height: 350px;
            border-radius: 25px;
            margin-left: 0rem;
        }





    .retailBlock2-title {
        font-size: 2.6rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 15px;
        text-align: center;
        line-height: 3.5rem;
        font-family: 'Montserrat';
        margin-left: -3rem;
    }
}

@media (max-width: 576px) {

    .retailBlock2-title {
        font-size: 1.7rem;
    }

    .retailBlock2-imgbox {
        height: 200px;
    }

    .retailBlock2-number {
        font-size: 1.7rem;
    }
}




/*05*/

.treek-flow-sec {
    width: 100%;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
}

.treek-flow-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1120px;
    margin: auto;
    gap: 40px;
}

.treek-flow-left {
    width: 50%;
    position: relative;
}

.treek-flow-num {
    position: absolute;
    top: 30px;
    left: -85px;
    font-size: 70px;
    font-weight: 700;
    color: #5bb3b3;
    opacity: 0.25;
    transform: rotate(-90deg);
}

.treek-flow-title {
    font-size: 40px;
    font-weight: 500;
    color: #3b3b3b;
    margin-bottom: 15px;
    text-align: left;
    line-height: 3rem;
    font-family: unset;
}

.treek-flow-desc {
    font-size: 20px;
    color: #3b3b3b;
    line-height: 2rem;
    text-align: justify;
    width: 90%;
    font-family: unset;
}

.treek-flow-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.treek-flow-imgbox {
    width: 150%;
    max-width: 465px;
    height: 290px;
    background: #cfd8dc;
    border-radius: 25px;
}

    .treek-flow-imgbox img {
        width: 150%;
        max-width: 465px;
        height: 290px;
        border-radius: 25px;
    }

/*  RESPONSIVE  */

@media (max-width: 992px) {
    .treek-flow-row {
        flex-direction: column;
        text-align: center;
    }

    .treek-flow-left,
    .treek-flow-right {
        width: 100%;
    }

    .treek-flow-num {
        left: 50%;
        transform: translateX(-50%) rotate(-90deg);
        display: none;
    }

    .treek-flow-title {
        font-size: 3.5rem;
        text-align: center;
        font-family: 'Lato';
        font-weight: 600;
        line-height: 4rem;
    }

    .treek-flow-desc {
        text-align: justify;
        margin: auto;
        font-size: 35px;
        line-height: 3.5rem;
        font-family: 'Lato';
    }

    .treek-flow-imgbox img {
        width: 800px;
        max-width: 800px;
        height: 350px;
        border-radius: 25px;
        margin-left: -11rem;
    }
}

@media (max-width: 576px) {

    .treek-flow-num {
        font-size: 70px;
        top: -10px;
    }

    .treek-flow-title {
        font-size: 1.6rem;
    }

    .treek-flow-imgbox {
        height: 180px;
        border-radius: 20px;
    }
}



/*06*/
.book3-asset-sec {
    width: 100%;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
}

.book3-asset-row {
    max-width: 1120px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: 5rem;
}


.book3-asset-left {
    width: 50%;
}

.book3-asset-imgbox {
    width: 150%;
    max-width: 465px;
    height: 290px;
    background: #cfd8dc;
    border-radius: 25px;
}

    .book3-asset-imgbox img {
        width: 150%;
        max-width: 465px;
        height: 290px;
        border-radius: 25px;
    }

.book3-asset-right {
    width: 50%;
    position: relative;
}

.book3-asset-title {
    font-size: 40px;
    font-weight: 500;
    color: #3b3b3b;
    margin-bottom: 15px;
    text-align: end;
    line-height: 3rem;
    font-family: unset;
}

.book3-asset-para {
    width: 100%;
    color: #3b3b3b;
    line-height: 2rem;
    font-size: 20px;
    text-align: end;
    font-family: unset;
}


.book3-asset-number {
    position: absolute;
    top: 32px;
    right: -90px;
    font-size: 70px;
    font-weight: 700;
    color: #5bb3b3;
    opacity: 0.25;
    letter-spacing: 1px;
    transform: rotate(90deg);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .book3-asset-row {
        flex-direction: column;
        text-align: center;
    }

    .book3-asset-left,
    .book3-asset-right {
        width: 100%;
    }

    .book3-asset-para {
        text-align: justify;
        margin: auto;
        font-size: 35px;
        line-height: 3.5rem;
        margin-left: -2rem -30px;
        font-family: 'Lato';
    }

    .book3-asset-number {
        right: 10px;
        top: -10px;
        transform: rotate(90deg);
        display: none;
    }

    .book3-asset-imgbox {
        width: 150%;
        max-width: 465px;
        height: 290px;
        background: #cfd8dc;
        border-radius: 25px;
        display: none;
    }

    .book3-asset-title {
        font-size: 3.5rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 15px;
        text-align: center;
        line-height: 4rem;
        font-family: 'Lato';
        font-weight: 600;
    }
}

@media (max-width: 576px) {
    .book3-asset-title {
        font-size: 1.7rem;
    }

    .book3-asset-imgbox {
        height: 200px;
    }

    .book3-asset-number {
        font-size: 1.7rem;
    }
}



/*retail*/
/*4-section*/

.retailFlowStepX-sec {
    width: 100%;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
}

.retailFlowStepX-row {
    max-width: 1220px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}


.retailFlowStepX-left {
    width: 50%;
}

.retailFlowStepX-imgbox {
    width: 100%;
    height: 470px;
    background: #cfd8dc;
    border-radius: 30px;
}

    .retailFlowStepX-imgbox img {
        width: 100%;
        height: 500px;
        border-radius: 30px;
    }

.retailFlowStepX-right {
    width: 50%;
}

.retailFlowStepX-main-title {
    font-size: 40px;
    font-weight: 600;
    color: #3b3b3b;
    margin-bottom: 30px;
    line-height: 3rem;
    width: 104%;
    font-family: unset;
}

.retailFlowStepX-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .retailFlowStepX-list li {
        margin-bottom: 25px;
        position: relative;
        padding-left: 35px;
    }


    .retailFlowStepX-list .circle {
        width: 12px;
        height: 12px;
        border: 2px solid #3b3b3b;
        border-radius: 50%;
        position: absolute;
        top: 6px;
        left: 11px;
    }


    .retailFlowStepX-list strong {
        font-size: 20px;
        color: #3b3b3b;
        display: block;
        margin-bottom: 4px;
        font-family: unset;
    }


    .retailFlowStepX-list p {
        font-size: 20px;
        color: #3b3b3b;
        line-height: 1.6rem;
        font-family: unset;
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .retailFlowStepX-row {
        flex-direction: column;
        text-align: center;
    }

    .retailFlowStepX-left,
    .retailFlowStepX-right {
        width: 100%;
    }

    .retailFlowStepX-list li {
        padding-left: 0;
    }

    .retailFlowStepX-list .circle {
        display: none;
    }

    .retailFlowStepX-imgbox {
        width: 100%;
        height: 520px;
        /* background: #cfd8dc; */
        border-radius: 30px;
    }

        .retailFlowStepX-imgbox img {
            width: 100%;
            height: 800px;
            border-radius: 30px;
        }

    .retailFlowStepX-main-title {
        font-size: 3.5rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 30px;
        line-height: 4.5rem;
        width: 100%;
        font-family: 'Lato';
        margin-top: 17rem;
    }

    .retailFlowStepX-list strong {
        font-size: 35px;
        color: #3b3b3b;
        display: block;
        margin-bottom: 2px;
        text-align: justify;
        margin-left: 3rem;
        font-family: 'Lato';
    }


    .retailFlowStepX-list p {
        font-size: 35px;
        color: #3b3b3b;
        line-height: 3.7rem;
        font-family: 'Lato';
        text-align: left;
        margin-left: 3rem;
    }
}

@media (max-width: 576px) {
    .retailFlowStepX-main-title {
        font-size: 28px;
        line-height: 2.2rem;
    }

    .retailFlowStepX-imgbox {
        height: 250px;
    }
}






/*retail*/
/*5-section*/
.retailStatsX-sec {
    width: 100%;
    padding: 50px 20px;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.retailStatsX-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.retailStatsX-card {
    background: #B2DFDB;
    width: 19rem;
    padding: 28px 22px;
    border-radius: 12px;
    box-sizing: border-box;
}

.retailStatsX-num {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #3b3b3b;
}

.retailStatsX-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.35;
    color: #3b3b3b;
    text-align: end;
    font-family: unset;
}

.retailStatsX-desc {
    font-size: 16.5px;
    color: #3b3b3b;
    line-height: 1.35;
    text-align: end;
    font-family: unset;
}

/*  Responsive  */
@media (max-width: 992px) {
    .retailStatsX-card {
        width: 30rem;
        height: auto;
    }

    .retailStatsX-title {
        font-size: 38px;
        font-weight: 600;
        margin-bottom: 6px;
        line-height: 1.35;
        color: #3b3b3b;
        text-align: end;
        margin-top: 5rem;
    }

    .retailStatsX-desc {
        font-size: 34px;
        color: #3b3b3b;
        line-height: 1.35;
        text-align: end;
        font-family: 'Lato';
    }

    .retailStatsX-num {
        font-size: 55px;
        font-weight: 700;
        margin-bottom: 28px;
        color: #3b3b3b;
    }
}

@media (max-width: 576px) {
    .retailStatsX-card {
        width: 100%;
    }

    .retailStatsX-row {
        gap: 16px;
    }
}


/*retail*/
/*6-section*/

.retailUx9-sec {
    width: 100%;
    padding: 70px 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}


.retailUx9-container {
    max-width: 900px;
    margin: auto;
}


.retailUx9-mainTitle {
    font-size: 40px;
    font-weight: 600;
    color: #3b3b3b;
    margin-bottom: 25px;
    width: 88%;
    margin-left: 3rem;
    font-family: unset;
}


.retailUx9-subTitle {
    font-size: 20px;
    font-weight: 500;
    color: #3b3b3b;
    margin-bottom: 30px;
    line-height: 1.7;
    font-family: unset;
}


.retailUx9-para {
    font-size: 20px;
    color: #3b3b3b;
    line-height: 1.8;
    max-width: 1000px;
    margin: auto;
    font-family: unset;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .retailUx9-mainTitle {
        font-size: 3.5rem;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 25px;
        margin-left: 3rem;
        font-family: 'Lato';
        line-height: 4.5rem;
    }

    .retailUx9-subTitle {
        font-size: 35px;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 30px;
        font-family: 'Lato';
        text-align: justify;
    }

    .retailUx9-para {
        font-size: 35px;
        text-align: justify;
        font-family: 'Lato';
        line-height: 4rem;
    }
}

@media (max-width: 480px) {

    .retailUx9-mainTitle {
        font-size: 28px;
    }

    .retailUx9-subTitle {
        font-size: 23px;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 30px;
        font-family: 'Montserrat';
    }

    .retailUx9-para {
        font-size: 15px;
    }
}




/*retail*/
/*7-section*/

.kiga-action-section {
    background: #B2DFDB;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 1300px;
    margin: 60px auto 40px;
}

.kiga-action-container {
    text-align: left;
    font-family: unset;
}

    .kiga-action-container h2 {
        margin-top: -12px;
        color: #3b3b3b;
        font-size: 4.3rem;
        white-space: nowrap;
        font-family: unset;
    }

    .kiga-action-container p {
        font-size: 20px;
        margin-top: -23px;
        color: #3b3b3b;
        font-family: unset;
    }

.kiga-action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.kiga-action-card {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    height: 6.2rem;
}

    .kiga-action-card:hover {
        box-shadow: none;
        transform: translateY(2px);
    }

.kiga-icon-boxs {
    width: 48px;
    height: 32px;
    background: transparent;
    border-radius: 6px;
    flex-shrink: 0;
    margin-left: 6%;
}

.kiga-vertical-line {
    border-left: 1px solid black;
    height: 40px;
    margin: 0 10px;
}

.kiga-card-content h3 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 0px 3px 18px;
    color: #3b3b3b;
}

.kiga-card-content p {
    font-size: 17px;
    margin-left: 18px;
    margin-top: -10px;
    color: #3b3b3b;
}

/* Responsive */
@media (max-width:1024px) {
    .kiga-action-section {
        padding: 25px 15px;
        margin: 30px auto;
        max-width: 95%;
    }

    .kiga-action-container h2 {
        font-size: 4.5rem;
        white-space: normal;
        text-align: center;
        margin-bottom: 11px;
        line-height: 6rem;
    }

    .kiga-action-container p {
        font-size: 34px;
        text-align: justify;
        margin-top: 32px;
        /* margin-left: 3rem; */
        line-height: 3rem;
    }

    .kiga-action-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .kiga-action-card {
        width: 100%;
        max-width: 900px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 17px 14px;
        height: auto;
        border-radius: 11px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .kiga-icon-boxs {
        width: 68px;
        height: 68px;
        margin: 0 10px 0 15px;
    }

    .kiga-vertical-line {
        height: 91px;
        margin: 0 10px;
    }

    .kiga-card-content h3 {
        font-size: 44px;
        margin-left: .5rem;
        margin-top: 1.1rem;
        padding-bottom: 0px;
        font-family: 'Lato';
    }

    .kiga-card-content p {
        font-size: 33px;
        margin-left: .5rem;
        /* font-weight: 500; */
        white-space: nowrap;
        margin-top: 18px;
    }
}







/*Government-Section*/

/*1-sec*/
.diga {
    width: 100%;
    font-family: unset;
    padding: 60px 0;
}

.diga-container {
    width: 1300px;
    margin: auto;
    text-align: left;
}

    .diga-container h1 {
        font-size: 40px;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 20px;
        line-height: 1.3;
        font-family: unset;
    }

    .diga-container p {
        font-size: 20px;
        color: #3b3b3b;
        max-width: 1072px;
        line-height: 1.7;
        margin-bottom: 35px;
        font-family: unset;
    }

.diga-image-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    max-width: 110%;
}

/* Responsive */
@media(max-width: 992px) {
    .diga-container {
        width: 100%;
        margin: auto;
        text-align: left;
        padding-left: 15px;
        padding-right: 15px;
    }
        .diga-container h1 {
            font-size: 3.5rem;
            font-weight: 600;
            color: #3b3b3b;
            margin-bottom: 20px;
            line-height: 1.3;
            font-family: 'Lato';
        }

        .diga-container p {
            font-size: 35px;
            color: #3b3b3b;
            line-height: 3.5rem;
            margin-bottom: 35px;
            font-family: 'Lato';
            text-align: justify;
        }

    .diga-image-box img {
        height: 300px;
    }
}

@media(max-width:480px) {
    .diga-container h1 {
        font-size: 26px;
    }

    .diga-image-box img {
        height: 180px;
    }
}



/*Government-Section*/
/*2-sec*/
.miga {
    width: 100%;
    padding: 70px 0;
    font-family: unset;
}

.miga-head {
    text-align: center;
    width: 80%;
    margin: auto;
}

.miga-head h2 {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 15px;
        width: 99%;
        color: #3b3b3b;
        font-family: unset;
    }

 .miga-head p {
        font-size: 20px;
        color: #3b3b3b;
        max-width: 1300px;
        margin: auto;
        line-height: 1.6;
        font-family: unset;
    }

.miga-wrapper {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 3rem;
}

.miga-left, .miga-right {
    width: 28%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.miga-image {
    width: 32%;
}
 .miga-image img {
        width: 100%;
        height: 46.7rem;
        object-fit: cover;
        border-radius: 12px;
    }

.miga-card {
    background: #FFB6B999;
    padding: 20px;
    border-radius: 12px;
}

.miga-icon {
    width: 53px;
    height: 53px;
    background: #fbfbfb;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

 .miga-icon img {
        width: 38px;
  }

.miga-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #3b3b3b;
    font-family: unset;
}

.miga-card p {
    font-size: 18.5px;
    color: #3b3b3b;
    line-height: 1.45;
    text-align: justify;
    font-family: unset;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    miga {
        width: 100%;
        padding: 10px 0;
        font-family: lato;
    }
    .miga-head {
        text-align: center;
        width: 100%;
        margin: auto;
    }
    .miga-wrapper {
        flex-wrap: wrap;
        gap: 20px;
    }

    .miga-left,
    .miga-right,
    .miga-image {
        width: 96%;
    }

    .miga-image img {
            height: 350px;
        }

    .miga-head h2 {
        font-size: 3.5rem;
        width: 100%;
        padding: 0 10px;
        text-align: left;
        padding-left: 16px;
        font-family: 'Lato';
        line-height: 4.5rem;
        margin-top: -4rem;
    }

    .miga-head p {
        font-size: 35px;
        color: #3b3b3b;
        max-width: 1072px;
        line-height: 4rem;
        margin-bottom: 35px;
        font-family: 'Lato';
        text-align: justify;
        padding-left: 20px;
        padding-right: 20px;
    }

    .miga-card h4 {
        font-size: 35px;
        font-weight: 600;
        font-family: 'Lato';
    }

    .miga-card p {
        font-size: 35px;
        font-family: 'Lato';
    }

    .miga-icon {
        width: 66px;
        height: 66px;
        background: #fbfbfb;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 12px;
    }

        .miga-icon img {
            width: 45px;
        }
}

/* MOBILE */
@media (max-width: 576px) {
    .miga {
        padding: 50px 15px;
    }

    .miga-head h2 {
        font-size: 28px;
        text-align: center;
    }

    .miga-head p {
        font-size: 14px;
        padding: 0 10px;
    }

    .miga-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .miga-image img {
        height: 250px;
    }

    .miga-card h4 {
        font-size: 16px;
    }

    .miga-card p {
        font-size: 14px;
    }

    .miga-left,
    .miga-right,
    .miga-image {
        width: 100%;
    }
}





/*Government-Section*/
/*3-section*/

.tiga {
    width: 100%;
    padding: 70px 0;
    font-family: 'Poppins',sans-serif;
    margin-top: -3rem;
}


.tiga-head {
    width: 100%;
    margin: auto;
}

    .tiga-head h2 {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 12px;
        width: 70%;
        color: #3b3b3b;
        font-family: unset;
        margin-left: 3rem;
        line-height: 3.5rem;
    }

    .tiga-head p {
        color: #3b3b3b;
        font-size: 20px;
        max-width: 800px;
        line-height: 1.6;
        white-space: nowrap;
        margin-left: 3rem;
        font-family: unset;
    }

.tiga-row {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    width: 90%;
    margin: auto;
    margin-top: 7rem;
}

.tiga-icon-box {
    width: 300px;
    height: 167px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .tiga-icon-box img {
        width: 158px;
        margin-right: 3rem;
    }

.tiga-line {
    width: 2px;
    background: #999;
    height: 175px;
    margin-top: -5px;
    margin-left: -3rem;
}

.tiga-content {
    width: 55%;
    margin-left: 4rem;
}

    .tiga-content h3 {
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 8px;
        color: #3b3b3b;
        font-family: unset;
        white-space: nowrap;
    }

    .tiga-content p {
        font-size: 20px;
        color: #3b3b3b;
        line-height: 1.6;
        font-family: unset;
        text-align: justify;
    }

/*=====  TABLET  =====*/
@media (max-width: 1024px) {

    .tiga {
        width: 100%;
        padding: 40px 0;
        font-family: 'Lato';
        margin-top: -3rem;
        padding-left: 16px;
        padding-right: 16px;
    }


    .tiga-head h2 {
        font-size: 2.6rem;
        width: 100%;
        margin-left: 0;
        line-height: 3rem;
    }

    .tiga-head p {
        font-size: 35px;
        max-width: 100%;
        margin-left: 0;
        white-space: normal;
        color: #3b3b3b;
        font-family: 'Lato';
    }

    .tiga-row {
        /*        flex-direction: column;*/
        gap: 20px;
    }

    .tiga-icon-box {
        width: 100%;
        justify-content: flex-start;
    }

        .tiga-icon-box img {
            width: 211px;
            margin-right: 1rem;
            margin-top: 120px;
        }

    .tiga-line {
        width: 2px;
        height: 150px;
        margin-left: 0;
        margin-top: 0;
        display: none;
    }

    .tiga-content {
        width: 98%;
        margin-left: -433px;
    }

        .tiga-content h3 {
            font-size: 35px;
            white-space: normal;
            font-weight: 600;
            font-family: 'Lato';
        }

        .tiga-content p {
            font-size: 30px;
            font-family: 'Lato';
        }
}

/* ===== MOBILE ====== */
@media (max-width: 576px) {
    .tiga {
        padding: 50px 15px;
    }

    .tiga-head h2 {
        font-size: 28px;
        line-height: 2.8rem;
    }

    .tiga-head p {
        font-size: 14px;
        line-height: 1.5;
    }

    .tiga-row {
        flex-direction: column;
        gap: 15px;
    }

    .tiga-icon-box {
        width: 100%;
        justify-content: center;
    }

        .tiga-icon-box img {
            width: 120px;
            margin-right: 0;
        }

    .tiga-line {
        width: 100%;
        height: 2px;
        margin: 10px 0;
    }

    .tiga-content h3 {
        font-size: 24px;
        text-align: center;
    }

    .tiga-content p {
        font-size: 14px;
        text-align: justify;
    }
}



/*Government-Section*/
/*4-section*/

.gover-card {
    width: 100%;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.gover-row {
    width: 88%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-left: 8rem;
}

.gover-left {
    width: 60%;
}

    .gover-left h2 {
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 8px;
        color: #3b3b3b;
        font-family: unset;
        white-space: nowrap;
    }

    .gover-left p {
        font-size: 20px;
        color: #3b3b3b;
        line-height: 1.6;
        font-family: unset;
        text-align: justify;
    }

.gover-line {
    width: 2px;
    background: #999;
    height: 175px;
    margin-top: -5px;
    margin-left: -1rem;
}

.gover-right img {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-right: 7rem;
}

/* ==TABLET==== */
@media (max-width: 1024px) {
    .gover-row {
        /*        flex-direction: column-reverse;*/
        */ align-items: center;
        text-align: center;
        /* gap: 20px; */
        margin-left: 0;
        width: 100%;
    }

    .gover-card {
        width: 100%;
        padding: 55px 33px;
    }

    .gover-left {
        width: 100%;
    }

        .gover-left h2 {
            font-size: 35px;
            white-space: normal;
            text-align: left;
            font-weight: 600;
        }

        .gover-left p {
            font-size: 30px;
            width: 100%;
            font-family: 'Lato';
        }

    .gover-line {
        display: none;
    }

    .gover-right img {
        width: 220px;
    }
}

/* ==== MOBILE ===== */
@media (max-width: 576px) {
    .gover-card {
        padding: 40px 15px;
    }

    .gover-row {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 15px;
        width: 100%;
        margin-left: 0;
    }

    .gover-left h2 {
        font-size: 26px;
        line-height: 2.5rem;
    }

    .gover-left p {
        font-size: 14px;
        line-height: 1.4;
    }

    .gover-right img {
        width: 120px;
        margin-right: 0;
    }

    .gover-line {
        display: none;
    }
}





/*Government-Section*/
/*5-section*/

.hsnap {
    width: 100%;
    padding: 70px 0;
    font-family: unset;
}

.hsnap-row {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    width: 90%;
    margin: auto;
    margin-top: 2rem;
}

.hsnap-icon-box {
    width: 300px;
    height: 167px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hsnap-icon-box img {
        width: 158px;
        margin-right: 3rem;
    }

.hsnap-line {
    width: 2px;
    background: #999;
    height: 175px;
    margin-top: -5px;
    margin-left: -3rem;
}

.hsnap-content {
    width: 55%;
    margin-left: 4rem;
}

    .hsnap-content h3 {
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 8px;
        color: #3b3b3b;
        font-family: unset;
        white-space: nowrap;
    }

    .hsnap-content p {
        font-size: 20px;
        color: #3b3b3b;
        line-height: 1.6;
        font-family: unset;
        text-align: justify;
    }

/* ===== TABLET======= */
@media (max-width: 1024px) {
    .hsnap-row {
        /*flex-direction: column;*/
        gap: 20px;
        align-items: center;
    }

    .hsnap-icon-box {
        width: 100%;
        justify-content: flex-start;
    }

        .hsnap-icon-box img {
            width: 250px;
        }

    .hsnap-line {
        display: none;
    }

    .hsnap-content {
        width: 85%;
        margin-left: -450px;
    }

        .hsnap-content h3 {
            font-size: 35px;
            white-space: normal;
            text-align: right;
            font-weight: 600;
        }

        .hsnap-content p {
            font-size: 30px;
            text-align: justify;
            font-family: 'Lato';
        }
}

/* ====== MOBILE ======== */
@media (max-width: 576px) {
    .hsnap {
        padding: 50px 15px;
    }

    .hsnap-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hsnap-icon-box {
        width: 100%;
        justify-content: center;
    }

        .hsnap-icon-box img {
            width: 120px;
            margin-right: 0;
        }

    .hsnap-line {
        display: none;
    }

    .hsnap-content {
        width: 100%;
        margin-left: 0;
    }

        .hsnap-content h3 {
            font-size: 24px;
            text-align: center;
        }

        .hsnap-content p {
            font-size: 14px;
            text-align: justify;
        }
}




/*Government-Section*/
/*6-Section*/
.msnap {
    width: 100%;
    padding: 60px 0;
    font-family: unset;
}

.msnap-row {
    width: 88%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-left: 8rem;
}

.msnap-left {
    width: 60%;
}

    .msnap-left h2 {
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 8px;
        color: #3b3b3b;
        font-family: unset;
        white-space: nowrap;
    }

    .msnap-left p {
        font-size: 20px;
        color: #3b3b3b;
        line-height: 1.6;
        font-family: unset;
        text-align: justify;
    }

.msnap-line {
    width: 2px;
    background: #999;
    height: 175px;
    margin-top: -5px;
    margin-left: -1rem;
}

.msnap-right img {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-right: 7rem;
}

/* ====== TABLET ====== */
@media (max-width: 1024px) {
    .msnap {
        width: 100%;
        padding: 55px 37px;
    }

    .msnap-row {
        /*        flex-direction: column-reverse;*/
        align-items: center;
        text-align: center;
        gap: 24px;
        margin-left: 0;
        width: 95%;
    }

    .msnap-left {
        width: 100%;
    }

        .msnap-left h2 {
            font-size: 35px;
            white-space: normal;
            text-align: left;
            font-family: 'Lato';
            font-weight: 600
        }

        .msnap-left p {
            font-size: 30px;
            text-align: justify;
            color: #3b3b3b;
            width: 110%;
            font-family: 'Lato';
        }

    .msnap-right img {
        width: 222px;
        margin-left: 5rem;
    }

    .msnap-line {
        display: none;
    }
}

/* ===== MOBILE ====== */
@media (max-width: 576px) {
    .msnap {
        padding: 45px 15px;
    }

    .msnap-row {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 18px;
        width: 100%;
        margin-left: 0;
    }

    .msnap-left h2 {
        font-size: 26px;
        line-height: 2.6rem;
    }

    .msnap-left p {
        font-size: 14px;
        line-height: 1.4;
    }

    .msnap-right img {
        width: 120px;
        margin-right: 0;
    }

    .msnap-line {
        display: none;
    }
}






/*Government-Section*/
/*7-Section */
.scmp {
    width: 100%;
    padding: 70px 0;
    font-family: 'Poppins',sans-serif;
}

.scmp-row {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    width: 90%;
    margin: auto;
    margin-top: 2rem;
}

.scmp-icon-box {
    width: 300px;
    height: 167px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .scmp-icon-box img {
        width: 158px;
        margin-right: 3rem;
    }


.scmp-line {
    width: 2px;
    background: #999;
    height: 175px;
    margin-top: -5px;
    margin-left: -3rem;
}

.scmp-content {
    width: 55%;
    margin-left: 4rem;
}

    .scmp-content h3 {
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 8px;
        color: #3b3b3b;
        font-family: unset;
        white-space: nowrap;
    }

    .scmp-content p {
        font-size: 20px;
        color: #3b3b3b;
        line-height: 1.6;
        font-family: unset;
        text-align: justify;
    }



/* TABLET */
@media (max-width: 1024px) {
    .scmp-row {
        /*        flex-direction: column;*/
        align-items: center;
        gap: 22px;
    }

    .scmp-icon-box {
        width: 100%;
        justify-content: flex-start;
    }

        .scmp-icon-box img {
            width: 222px;
        }

    .scmp-line {
        display: none;
    }

    .scmp-content {
        width: 98%;
        margin-left: -423px;
    }

        .scmp-content h3 {
            font-size: 35px;
            white-space: normal;
            text-align: end;
            font-family: 'Lato';
            font-weight: 600;
        }

        .scmp-content p {
            font-size: 30px;
            text-align: justify;
            font-family: 'Lato';
        }
}

/*  MOBILE  */
@media (max-width: 576px) {
    .scmp {
        padding: 50px 15px;
    }

    .scmp-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .scmp-icon-box {
        width: 100%;
        justify-content: center;
    }

        .scmp-icon-box img {
            width: 120px;
            margin-right: 0;
        }

    .scmp-line {
        display: none;
    }

    .scmp-content {
        width: 100%;
        margin-left: 0;
    }

        .scmp-content h3 {
            font-size: 24px;
            text-align: center;
        }

        .scmp-content p {
            font-size: 14px;
            line-height: 1.4;
        }
}




/*Government-Section*/
/*8-Section*/

.timeline-header {
    text-align: left;
    /*    width: 90%;*/
    margin: 0 auto 40px auto;
    margin-top: 4rem;
}

    .timeline-header h2 {
        font-size: 40px;
        font-weight: 600;
        font-family: unset;
        color: #3b3b3b;
        margin-left: 22rem;
        white-space: nowrap;
    }

    .timeline-header p {
        font-size: 20px;
        font-family: unset;
        color: #3b3b3b;
        margin-left: 22.5rem;
    }


.timeline {
    width: 90%;
    margin: auto;
    position: relative;
    padding: 40px 0;
}

    /* Vertical Line */
    .timeline::before {
        content: "";
        position: absolute;
        top: 40px;
        bottom: 0;
        left: 50%;
        width: 3px;
        background: #999;
        transform: translateX(-50%);
        height: 42rem;
    }

/* DOTS */
.timeline-dots {
    position: absolute;
    left: 50%;
    top: -110px;
    bottom: 0;
    width: 20px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 20px 0;
}

    .timeline-dots .dot {
        width: 14px;
        height: 14px;
        background: #000;
        border-radius: 50%;
        margin-left: 3px;
    }

/* TIMELINE ITEMS */
.timeline-item {
    width: 50%;
    position: relative;
    padding: 25px 0;
}

    /* LEFT SIDE */
    .timeline-item.left {
        text-align: right;
        padding-right: 41px;
        margin-left: 10rem;
        margin-top: -3rem;
    }

    /* RIGHT SIDE */
    .timeline-item.right {
        text-align: left;
        padding-left: 60px;
        margin-left: 50%;
    }

/* BOX DESIGN */
.box {
    background: #fff;
    border-radius: 10px;
    padding: 1px 9px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* HEADING */
.timeline-item .box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #3b3b3b;
    margin-bottom: 10px;
    text-align: left;
    font-family: unset;
}

.box p {
    background: #F6F8F9;
    padding: 10px 17px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
    color: #3b3b3b;
    font-family: unset;
}

/* RESPONSIVE (TABLET) */
@media (max-width: 992px) {

    .timeline-header {
        text-align: center;
    }

    .timeline::before {
        height: 42rem;
    }

    .timeline-item.left {
        margin-left: 0;
        padding-right: 20px;
    }

    .timeline-item.right {
        padding-left: 20px;
        margin-left: 50%;
    }

    .timeline-header h2 {
        font-size: 3.5rem;
        font-weight: 600;
        font-family: 'Lato';
        color: #3b3b3b;
        margin-left: 3rem;
        white-space: nowrap;
    }

    .timeline-header p {
        font-size: 35px;
        margin-top: 8px;
        font-family: 'Lato';
        color: #3b3b3b;
        margin-left: 4rem;
    }
    .timeline-item .box h3 {
        font-size: 30px;
        font-weight: 600;
        color: #3b3b3b;
        margin-bottom: 10px;
        text-align: left;
        /* font-family: unset; */
        padding-bottom: 10px;
        margin-top: 13px;
        font-family: 'Lato';
    }
}

/* ======
   RESPONSIVE (MOBILE)
====== */
@media (max-width: 768px) {

    .timeline::before {
        left: 20px;
        height: 100%;
    }

    .timeline-dots {
        left: 20px;
        top: 0;
        height: 100%;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

        .timeline-item.left,
        .timeline-item.right {
            margin-left: 0;
            text-align: left;
            padding-right: 0;
        }

    .timeline-header {
        text-align: center;
    }
}




/*Government-Section*/
/*9-Section*/

.policy {
    width: 100%;
    padding: 70px 0;
    font-family: 'Poppins', sans-serif;
}

.policy-row {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.policy-left {
    width: 50%;
}

    .policy-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 18px;
    }

.policy-right {
    width: 50%;
    font-family: 'Montserrat', sans-serif;
}

    .policy-right h2 {
        font-size: 40px;
        font-weight: 600;
        color: #3b3b3b;
        line-height: 1.3;
        margin-bottom: 10px;
        width: 95%;
        font-family: unset;
    }

.policy-desc {
    font-size: 20px;
    color: #3b3b3b;
    margin-bottom: 25px;
    font-family: unset;
}

.policy-list {
    list-style: none;
    padding: 0;
}

    .policy-list li {
        margin-bottom: 22px;
        position: relative;
        padding-left: 20px;
    }

        .policy-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 28px;
            color: #3b3b3b;
        }

    .policy-list strong {
        font-size: 20px;
        font-weight: 600;
        color: #3b3b3b;
        font-family: unset;
    }

    .policy-list p {
        font-size: 20px;
        color: #3b3b3b;
        margin-top: 5px;
        line-height: 1.5;
    }

/*  RESPONSIVE TABLET & MOBILE */

@media (max-width:1024px) {
    .policy-row {
        flex-direction: column;
        text-align: center;
    }

    .policy-left,
    .policy-right {
        width: 100%;
    }

        .policy-right h2 {
            font-size: 3.5rem;
            font-weight: 600;
            color: #3b3b3b;
            margin-bottom: 10px;
            font-family: 'Lato';
            text-align: justify;
            line-height: 4rem;
        }

    .policy-desc {
        font-size: 35px;
        color: #3b3b3b;
        margin-bottom: 25px;
        font-family: 'Lato';
        text-align: left;
    }

    .policy-list strong {
        font-size: 35px;
        font-weight: 600;
        color: #3b3b3b;
        font-family: 'Lato';
    }

    .policy-list li {
        padding-left: 0;
        text-align: left;
    }

        .policy-list li::before {
            left: -5px;
            display:none;
        }

    .policy-list p {
        font-size: 35px;
        color: #3b3b3b;
        /* margin-top: -8px; */
        line-height: 4rem;
        font-family: 'Lato';
    }
}

@media (max-width:768px) {
    .policy-right h2 {
        font-size: 32px;
    }

    .policy-list strong {
        font-size: 17px;
    }

    .policy-left img {
        height: auto;
    }
}





/*Government-Section*/
/*10-Section*/
/* MAIN SECTION */
.maki-section {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: unset;
}

.maki-container {
    max-width: 1300px;
    text-align: center;
}

.maki-title {
    font-size: 40px;
    font-weight: 600;
    color: #3b3b3b;
    margin-bottom: 20px;
    white-space: nowrap;
    font-family: unset;
    width: 100%;
}

.maki-container p {
    font-size: 20px;
    line-height: 1.7;
    color: #3b3b3b;
    margin-bottom: 18px;
    font-family: unset;
}

.maki-bottom {
    display: block;
    margin-top: 18px;
    font-size: 17px;
    font-weight: 700;
    color: #3b3b3b;
}


/* Tablets */
@media (max-width: 1024px) {
    .maki-section {
        width: 100%;
        padding: 15px 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Lato';
        margin-top: -2rem;
    }

    .maki-title {
        font-size: 2.7rem;
        line-height: 3.2rem;
    }

    .maki-container p {
        font-size: 35px;
        text-align: justify;
        line-height: 3.5rem;
        font-family: 'Lato';
    }

    .maki-bottom {
        font-size: 35px;
        text-align: justify;
        font-family: 'Lato';
    }
}

/* Mobile */
@media (max-width: 600px) {

    .maki-title {
        font-size: 2.1rem;
        line-height: 2.5rem;
    }

    .maki-container {
        max-width: 95%;
    }

        .maki-container p {
            font-size: 15px;
            text-align: center;
        }

    .maki-bottom {
        font-size: 16px;
        margin-top: 12px;
    }
}





/*Government-Section*/
/*11-Section*/

.tracek-action-section {
    background: #FFB6B9;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 1300px;
    margin: 60px auto 40px;
}

.tracek-action-container {
    text-align: left;
    font-family: unset;
}

    .tracek-action-container h2 {
        margin-top: -12px;
        color: #3b3b3b;
        font-size: 3.9rem;
        white-space: nowrap;
    }

    .tracek-action-container p {
        font-size: 20px;
        margin-top: -23px;
        color: #3b3b3b
    }

.tracek-action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.tracek-action-card {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    height: 6.2rem;
}

    .tracek-action-card:hover {
        box-shadow: none;
        transform: translateY(2px);
    }

.tracek-icon-boxs {
    width: 48px;
    height: 32px;
    background: transparent;
    border-radius: 6px;
    flex-shrink: 0;
    margin-left: 6%;
}

.tracek-vertical-line {
    border-left: 1px solid black;
    height: 40px;
    margin: 0 10px;
}

.tracek-card-content h3 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 0px 3px 18px;
    color: #3b3b3b;
}

.tracek-card-content p {
    font-size: 18px;
    margin-left: 18px;
    margin-top: -10px;
    color: #3b3b3b;
}

/* Responsive */
@media (max-width:1024px) {
    .tracek-action-section {
        padding: 25px 15px;
        margin: 30px auto;
        max-width: 95%;
    }

    .tracek-action-container h2 {
        white-space: normal;
        text-align: center;
        margin-bottom: 11px;
        line-height: 6rem;
    }

    .tracek-action-container p {
        font-size: 34px;
        margin-top: -24px;
        color: #3b3b3b;
        font-family: 'Lato';
    }
    .tracek-action-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .tracek-action-card {
        width: 100%;
        max-width: 900px;
        padding: 2px 14px;
        height: auto;
    }

    .tracek-icon-boxs {
        width: 68px;
        height: 68px;
        margin: 0 10px 0 15px;
    }

    .tracek-vertical-line {
        height: 91px;
        margin: 0 10px;
    }

    .tracek-card-content h3 {
        font-size: 44px;
        margin-left: .5rem;
        margin-top: 1.1rem;
    }

    .tracek-card-content p {
        font-size: 30px;
        margin-left: .5rem;
        font-weight: 500;
        white-space: nowrap;
        margin-top: 15px
    }
}







.bfsi-main-section {
    display: none;
}

@media (min-width: 1025px) {
    .bfsi-main-section {
        display: none !important;
    }
}

.bfsi-main-section {
    display: block;
}

@media (max-width: 1024px) {
    .bfsi-main-section {
        display: none;
    }
}
