﻿.enterprise-section {
    width: 100%;
    padding: 96px 20px;
}

.container-self {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.main-heading {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #3b3b3b;
    font-family: unset;
}

.sub-text {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #3b3b3b;
    font-family: unset;
}

.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}


.main-image {
    width: 100%;
    max-width: 1300px; 
    height: auto;
}

/* === TAB VIEW === */
@media (max-width: 1024px) {

    .enterprise-section {
        padding: 90px 10px;
        width: 95%;
        margin-left: 1.5rem;
        margin-top: 4rem;
    }

    .main-heading {
        font-size: 52px;
    }

    .sub-text {
        font-size: 32px;
        max-width: 100%;
        text-align: justify;
    }

    .main-image {
        max-width: 100%;
    }
}


/* === MOBILE VIEW === */
@media (max-width: 576px) {

    .enterprise-section {
        padding: 50px 15px;
    }

    .main-heading {
        font-size: 24px;
        line-height: 1.4;
    }

    .sub-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .main-image {
        width: 100%;
        max-width: 100%;
    }
}








/*2nd section*/
.path-section {
    padding: 0px 20px;
}

.wrapper-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.path-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    width: 100%;
    color: #3b3b3b;
    font-family: 'Lato';
    line-height: 3rem;
}

.box-group {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.path-box {
    width: 450px;
    background: #f7f9fc;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: left;
    transition: 0.3s ease;
    border: 1px solid #6CBF7A;
}
.path-boxs {
    width: 450px;
    background: #f7f9fc;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: left;
    transition: 0.3s ease;
    border: 1px solid #729DE9;
}


.box-top {
    padding: 24px;
    font-size: 24px;
    font-weight: 500;
    color: #fbfbfb;
    text-align: justify;
    font-family: unset;
    line-height: 1.2;
}

.theme-blue {
    background: #729DE9;
}

.theme-green {
    background: #6CBF7A;
}

.box-content {
    padding: 25px;
}

    .box-content p {
        font-size: 20px;
        color: #3b3b3b;
        margin-bottom: 30px;
        text-align: justify;
        line-height: 1.4;
    }

.box-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-text {
    font-size: 18px;
    color: #3b3b3b;
    font-family: unset;
}

.blue-btn {
    background: #729DE9;
}

.green-btn {
    background: #6CBF7A;
}

.circle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* === TAB VIEW === */
@media (max-width: 1024px) {

    .path-title {
        font-size: 3.3rem;
        margin-bottom: 40px;
        line-height: 4rem;
        font-weight: 600;
    }

    .box-group {
        gap: 25px;
    }

    .path-box {
        width: 100%;
        max-width: 900px;
        margin-bottom: 3rem;
    }

    .box-top {
        font-size: 35px;
    }

    .box-content p {
        font-size: 32px;
    }

    .time-text {
        font-size: 32px;
    }
}


/* === MOBILE VIEW === */
@media (max-width: 576px) {

    .path-section {
        padding: 0px 15px;
    }

    .path-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .box-group {
        gap: 20px;
    }

    .path-box {
        width: 100%;
    }

    .box-top {
        font-size: 18px;
        padding: 18px;
    }

    .box-content {
        padding: 18px;
    }

        .box-content p {
            font-size: 15px;
            margin-bottom: 20px;
        }

    .time-text {
        font-size: 14px;
    }

    .circle-btn {
        width: 40px;
        height: 40px;
    }
}


/*3rd section*/
.zs-why-wrap {
    padding: 100px 20px;
    background: #ffffff;
}
.zs-why-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 39% 56%;
    align-items: center;
    gap: 60px;
}
.zs-why-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 3rem;
    color: #3b3b3b;
    width: 60%;
    font-family: lato;
}
.zs-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
.zs-why-box {
    padding: 20px 25px;
    border-radius: 22px;
    background: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 15px 40px rgba(0, 0, 0, 0.06);
}

    .zs-why-box img {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
        object-fit: contain;
    }
    .zs-why-box p {
        font-size: 18px;
        font-weight: 500;
        color: #3b3b3b;
        line-height: 1.5;
        font-family: 'Lato';
    }


/* TAB VIEW */
@media (max-width: 992px) {

    .zs-why-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        width: 95%;
    }

    .zs-why-left h2 {
        width: 96%;
        font-size: 3.3rem;
        line-height: 4rem;
        font-weight: 600;
        font-family: 'Lato';
    }

    .zs-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .zs-why-box p {
        font-size: 32px;
        font-family: 'Lato';
    }
}


/* MOBILE VIEW  */
@media (max-width: 576px) {

    .zs-why-wrap {
        padding: 60px 15px;
    }

    .zs-why-left h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .zs-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zs-why-box {
        padding: 15px 18px;
    }

        .zs-why-box img {
            width: 45px;
            height: 45px;
        }

        .zs-why-box p {
            font-size: 15px;
        }
}








/*Last section*/
.action-section {
    background: #B8F2E6;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 1300px;
    margin: 60px auto 40px;
}
.action-container {
    text-align: left;
    font-family: unset;
}

    .action-container h2 {
        margin-top: -12px;
        color: #3b3b3b;
        font-size: 4.4rem;
        white-space: nowrap;
        font-family: unset;
        font-family: 'Lato';
    }

    .action-container p {
        font-size: 21px;
        margin-top: -22px;
        color: #3b3b3b;
        font-family: unset;
    }

.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: 17px;
    margin-left: 18px;
    margin-top: -10px;
    color: #3b3b3b;
    font-family: unset;
}

/*  Mobile & Tablet View   */
@media (max-width: 1024px) {
    .action-section {
        padding: 25px 12px;
        margin: 5px auto;
        max-width: 95%;
    }

    .action-container h2 {
        font-size: 4.5rem;
        white-space: normal;
        text-align: center;
        margin-bottom: 11px;
        line-height: 6rem;
    }

    .action-container p {
        font-size: 34px;
        text-align: justify;
        margin-top: 15px;
        color: #3b3b3b;
        line-height: 3rem;
    }

    .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: 45px;
            color: #3b3b3b;
            margin-left: 0.5rem;
            margin-top: 1.1rem;
        }

        .card-content p {
            font-size: 32px;
            margin-top: 0px;
            color: #3b3b3b;
            white-space: nowrap;
            margin-left: 0.5rem;
        }
}
