﻿body {
    margin: 0;
    font-family: lato;
    color: #3b3b3b;
}


.dashboard-header-section {
    background: linear-gradient(143.03deg, #2C3E50 21.48%, #33485D 32.44%, #3A526A 43.4%, #415C76 54.35%, #486683 65.31%, #4F6F90 76.27%, #56799D 87.22%, #5D83A9 98.18%, #648DB6 109.14%);
    max-width: 1300px;
    margin: 7rem auto 0;
    padding: 40px 50px 140px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    height: 55rem;
}

    .dashboard-header-section h2 {
        margin: 0;
        font-size: 50px;
        font-weight: 900;
        line-height: 1.2;
        font-family: 'Lato';
        color: #fbfbfb;
    }

    .dashboard-header-section p {
        font-size: 18px;
        margin-top: 9px;
        margin-bottom: 25px;
        font-family: 'Lato';
        color: #fbfbfb;
        width: 60%;
        margin-left: 17rem;
    }


.dashboard-buttons {
    margin-bottom: 20px;
}

    .dashboard-buttons .btn-primary,
    .dashboard-buttons .btn-outline {
        font-size: 16px;
        padding: 10px 20px;
        margin: 0 8px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

.btn-primary {
    color: #3b3b3b;
    border: none;
    background: #fbfbfb;
}

    .btn-primary:hover {
        background: transparent;
        color: #fbfbfb;
        border: 1px solid;
    }

.btn-outline {
    background: transparent;
    color: #fbfbfb;
    border: 1px solid;
}

    .btn-outline:hover {
        background: #fbfbfb;
        color: #3b3b3b;
        border: 1px solid;
    }


.dashboard-image-box {
    background: #fafafa;
    /*    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);*/
    max-width: 950px;
    margin: -70px auto 30px;
    padding: 20px;
    position: relative;
    z-index: 2;
    margin-top: -520px;
}

.dashboard-image {
    width: 100%;
    height: 480px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .dashboard-image img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 10px;
    }



.dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    font-size: 22px;
}

    .dashboard-tabs span {
        cursor: pointer;
        font-weight: 500;
    }

        .dashboard-tabs span:hover,
        .dashboard-tabs span.active {
            color: #000;
            font-weight: 600;
        }


@media (max-width: 1024px) {

    .dashboard-header-section {
        max-width: 95%;
        padding: 30px 30px 90px;
        margin-top: 10rem;
    }

        .dashboard-header-section h2 {
            font-size: 70px;
            font-family: 'Lato';
            font-weight: 600;
        }

        .dashboard-header-section p {
            font-size: 35px;
            line-height: 1.6;
            font-family: 'Lato';
            width: 100%;
            margin-left: 0rem;
        }

    .dashboard-image-box {
        margin: 20px auto;
        width: 80%;
        background: #fafafa;
        margin-top: -23rem;
        position: relative;
        height: 23rem;
    }

    .dashboard-image {
        height: auto;
        max-height: 420px;
    }

    .dashboard-tabs {
        flex-wrap: wrap;
        font-size: 23px;
    }

    .dashboard-buttons .btn-primary, .dashboard-buttons .btn-outline {
        font-size: 26px;
        padding: 20px 20px;
        margin: 0 8px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
}


@media (max-width: 600px) {

    .dashboard-header-section {
        padding: 30px 16px 60px;
        margin-top: 2rem;
    }

        .dashboard-header-section h2 {
            font-size: 22px;
        }

        .dashboard-header-section p {
            font-size: 15px;
            line-height: 1.5;
            text-align: center;
        }

    .dashboard-image-box {
        padding: 10px;
    }

    .dashboard-image {
        max-height: 300px;
    }

    .dashboard-tabs {
        gap: 10px;
        font-size: 13px;
    }

    .dashboard-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

        .dashboard-buttons .btn-primary,
        .dashboard-buttons .btn-outline {
            padding: 8px 14px;
            font-size: 14px;
        }
}



/*2nd - section*/

.process-section {
    padding: 60px 0;
    font-family: 'Lato', sans-serif;
}

.containerm {
    max-width: 1300px;
    width: 100%;
    margin: auto;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 40px;
}

.left-text,
.right-img {
    width: 50%;
}

    .left-text h2 {
        font-size: 2.2rem;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 3rem;
        width: 100%;
    }

    .left-text p {
        color: #3b3b3b;
        line-height: 1.6;
        font-size: 18px;
    }


.right-img {
    height: 250px;
    background: #fafafa;
    border-radius: 10px;
}


.process-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card {
    width: 30%;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
    }

    .card h4 {
        font-size: 30px;
        font-weight: 600;
        font-family: 'Lato';
        color: #3b3b3b;
        margin-bottom: 5px;
    }

    .card h3 {
        font-weight: 900;
    }

    .card p {
        font-size: 18px;
        font-family: 'Lato';
        color: #3b3b3b;
        text-align: justify;
    }

    .arrow {
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 30px solid #1a1a2e;
}

/* === TAB VIEW === */
@media (max-width: 1024px) {

    .top-content {
        flex-direction: column;
        text-align: center;
    }

    .left-text,
    .right-img {
        width: 100%;
    }

    .right-img {
        height: 200px;
    }

    .process-cards {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .card {
        width: 45%;
    }

    .arrow {
        display: none; 
    }
    .left-text h2 {
        font-size: 3.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 4.3rem;
        font-family: 'Lato';
    }
    .left-text p {
        color: #3b3b3b;
        line-height: 1.6;
        font-size: 35px;
        padding-left: 15px;
        padding-right: 14px;
    }
    .right-img {
        height: 300px;
        width: 95%;
    }
    .card {
        width: 80%;
    }
    .card h4 {
        font-size: 45px;
        font-weight: 600;
        font-family: 'Lato';
        color: #3b3b3b;
        margin-bottom: 20px;
        }
        .card p {
            font-size: 35px;
            font-family: 'Lato';
            color: #3b3b3b;
            text-align: justify;
        }

        .card h3 {
            font-weight: 900;
            font-size: 3rem;
            margin-bottom: 30px;
        }
    .card {
        width: 90%;
    }
}


/* ==== MOBILE VIEW ==== */
@media (max-width: 576px) {

    .process-section {
        padding: 40px 15px;
    }

    .left-text h2 {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .left-text p {
        font-size: 15px;
    }

    .process-cards {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        width: 100%;
        padding: 20px;
    }

        .card h4 {
            font-size: 22px;
        }

        .card h3 {
            font-size: 20px;
        }

        .card p {
            font-size: 15px;
        }

    .right-img {
        height: 180px;
    }
}





/*3rd - section*/
.feature-section {
    padding: 60px 0;
    font-family: 'Lato', sans-serif;
}

.containerf {
    max-width: 1300px;
    margin: auto;
}

.feature-header {
    text-align: center;
    margin-bottom: 50px;
}

    .feature-header h2 {
        font-size: 2.2rem;
        font-weight: 600;
        line-height: 1.4;
        width: 100%;
        font-family: 'Lato';
    }

.feature-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.feature-box {
    width: 23%;
}

    .feature-box h3 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 10px;
        text-align: left;
        line-height: 2.5rem;
    }

    .feature-box p {
        font-size: 18px;
        color: #3b3b3b;
        line-height: 1.4;
        text-align: justify;
        font-family: 'Lato';
    }

.divider {
    width: 3px;
    background: #ddd;
    margin: 0 20px
}

/* TAB VIEW */
@media (max-width: 1024px) {

    .feature-row {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .feature-box {
        width: 45%;
    }

    .divider {
        display: none; 
    }

    .feature-header h2 {
        font-size: 3.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 4.3rem;
        font-family: 'Lato';
    }
    .feature-box h3 {
        font-size: 35px;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: left;
        line-height: 3rem;
    }

    .feature-box p {
        font-size: 35px;
        color: #3b3b3b;
        line-height: 1.4;
        text-align: left;
        font-family: 'Lato';
    }
}


/* ==== MOBILE VIEW ==== */
@media (max-width: 576px) {

    .feature-section {
        padding: 40px 15px;
    }

    .feature-header h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .feature-row {
        flex-direction: column;
        gap: 20px;
    }

    .feature-box {
        width: 100%;
        text-align: center;
    }

        .feature-box h3 {
            font-size: 20px;
            text-align: center;
        }

        .feature-box p {
            font-size: 15px;
            text-align: center;
        }

    .divider {
        display: none;
    }
}







/*4th - section*/
.workflow-section {
    padding: 60px 0;
    font-family: 'Lato', sans-serif;
}

.containerw {
    max-width: 1300px;
    margin: auto;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.left-heading {
    width: 50%;
}

    .left-heading h2 {
        font-size: 2.2rem;
        font-weight: 600;
        line-height: 3rem;
        width: 100%;
    }

.right-text {
    width: 50%;
}

    .right-text p {
        font-size: 18px;
        color: #3b3b3b;
        line-height: 1.6;
        text-align: justify;
        font-family: 'Lato';
    }

.workflow-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.work-card {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.03);
}

    .work-card img {
        width: 100%;
        max-width: 590px;
        margin-bottom: 10px;
    }

    .work-card h3 {
        font-size: 26px;
        margin-bottom: 0px;
        font-weight: 600;
    }

    .work-card p {
        font-size: 18px;
        color: #3b3b3b;
        line-height: 1.6;
        margin-bottom: -5px;
        font-family: 'Lato';
    }


/* ===== TAB VIEW ====== */
@media (max-width: 1024px) {

    .workflow-section {
        padding: 60px 25px;
        font-family: 'Lato', sans-serif;
        width: 98%;
        margin-left: 10px;
    }


    .top-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .left-heading,
    .right-text {
        width: 100%;
    }

        .left-heading h2 {
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 4.3rem;
            font-family: 'Lato';
        }

        .right-text p {
            font-size: 35px;
            text-align: center;
            font-family: 'Lato';
        }

    .workflow-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .work-card img {
        max-width: 100%;
    }
    .work-card h3 {
        font-size: 35px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    .work-card p {
        font-size: 35px;
        color: #3b3b3b;
        line-height: 1.6;
        margin-bottom: 0px;
        font-family: 'Lato';
    }
}


/* ===== MOBILE VIEW ===== */
@media (max-width: 576px) {

    .workflow-section {
        padding: 40px 15px;
    }

    .left-heading h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .right-text p {
        font-size: 15px;
    }

    .work-card {
        padding: 15px;
    }

        .work-card h3 {
            font-size: 20px;
        }

        .work-card p {
            font-size: 15px;
        }

    .workflow-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}






/* What's Next Section */
.whats-next {
    text-align: center;
    max-width: 1300px;
    padding: 100px 7px;
    margin-left: 50px;
    padding-bottom: 31px;
    margin-top: -3rem;
}

    .whats-next h2,
    .whats-next p {
        text-align: left;
    }

    .whats-next h2 {
        font-size: 2.2rem;
        color: #3b3b3b;
        margin-bottom: 10px;
        font-weight: 700;
        font-family: 'Lato';
    }

    .whats-next p {
        font-family: 'Lato';
        font-size: 18px;
        color: #3b3b3b;
        margin-bottom: 40px;
    }

.next-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.next-box {
    border: 1px solid #3b3b3b;
    border-radius: 10px;
    padding: 30px 20px;
    background: #fff;
    transition: all 0.3s ease;
}

    .next-box h3 {
        font-size: 2.2rem;
        color: #3b3b3b;
        margin-bottom: 10px;
        font-weight: 600;
        font-family: 'Lato';
    }

    .next-box p {
        font-size: 18px;
        color: #3b3b3b;
        margin-bottom: 20px;
        text-align: center;
        font-family: 'Lato';
    }

    .next-box a {
        font-family: 'Lato', sans-serif;
        font-size: 14px;
        color: #3b3b3b;
        text-decoration: underline;
        font-weight: 600;
    }

    .next-box:hover {
        border: none;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        transform: translateY(-5px);
    }


@media only screen and (max-width: 1024px) {
    .whats-next {
        margin: 45px 20px 55px;
        padding: 0 0px;
        max-width: 100%;
        margin-top: 3rem;
    }

        .whats-next h2 {
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 4.3rem;
            font-family: 'Lato';
            margin-left:2rem;
        }

        .whats-next p {
            font-size: 35px;
            margin-left: 2rem;
            line-height: 3rem;
            font-weight: 400;
            margin-top: 20px;
            font-family: 'Lato';
        }

    .next-grid {
        height: 61rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
        width: 52rem;
        margin-left: 5rem;
    }

    .next-box {
        padding: 23px 20px;
        width: 115%;
        margin-left: -4rem;
    }

        .next-box h3 {
            font-size: 40px;
            font-weight: 600;
            font-family: 'Lato';
        }

        .next-box p {
            font-size: 35px;
            text-align: center;
        }

        .next-box a {
            font-size: 27px;
            color: #3b3b3b;
            text-decoration: underline;
            font-weight: 500;
        }
}

@media only screen and (max-width: 600px) {

    .whats-next {
        margin: 60px auto 40px;
        padding: 0 10px;
    }

        .whats-next h2 {
            font-size: 2.8rem;
            text-align: left;
            margin-left: 6rem;
            font-weight: 600;
        }

        .whats-next p {
            font-size: 28px;
            text-align: left;
            margin-left: 6rem;
        }

    .next-grid {
        height: 55rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 39rem;
        margin-left: 6rem;
    }

    .next-box {
        width: 100%;
        margin-bottom: 15px;
        padding: 15px 12px;
    }

        .next-box h3 {
            font-size: 1.3rem;
        }

        .next-box p {
            font-size: 12px;
        }
}




/*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.3rem;
        white-space: nowrap;
        font-family: 'Lato';
        font-size: 4.4rem;
    }

    .action-container p {
        font-size: 18px;
        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: unset;
}

.card-content p {
    font-size: 18px;
    margin-left: 18px;
    margin-top: -10px;
    color: #3b3b3b;
    font-family: 'Lato';
}

@media (max-width: 1024px) {
    .action-section {
        padding: 25px 15px;
        margin: 30px 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: 35px;
        text-align: justify;
        margin-top: 0px;
        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: 40px;
            color: #3b3b3b;
            margin-left: 0.5rem;
            margin-top: 1.1rem;
            font-family: 'Lato';
        }

        .card-content p {
            font-size: 30px;
            margin-top: 10px;
            color: #3b3b3b;
            white-space: nowrap;
            margin-left: 0.5rem;
            font-family: 'Lato';
        }
}
