﻿body {
    font-family: "Sofia Sans",sans-serif;
}


.owl-dots {
    display: none;
}

.web-header {
    margin: 0px 0 60px
}

.hero-banner {
    background: url("../images/sappHome-newBan.jpg") no-repeat right center;
    background-size: cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 22;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    z-index: 0;
    background: transparent;
}

.hero-content {
    max-width: 600px;
}

    /* Heading */

    .hero-content h1 {
        color: #252627;
        font-size: 39px;
        font-weight: 800;
        margin-bottom: 25px;
        line-height: 1.35;
    }

/* Paragraph */

.hero-desc {
    color: #232323;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 35px;
}

/* Button */

.hero-btn {
    display: inline-block;
    padding: 16px 30px;
    border-radius: 6px;
    background: linear-gradient(90deg,#2371E1 0%,#75F943 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 20px;
}

/* Last text */

.hero-small {
    color: #252627;
    font-size: 15px;
    font-weight: 500;
}


.compliance-right h2:after {
    display: none;
}
/* Responsive */
@media(max-width:1024px) {
    .hero-content h1 {
        font-size: 48px;
        line-height: 60px;
    }
}

@media(max-width:768px) {

    .hero-banner {
        background-position: left;
        text-align: center;
        padding: 50px 0;
    }

    .hero-content {
        margin: auto;
    }

        .hero-content h1 {
            font-size: 22px;
            line-height: 32px;
        }
}




.compliance-system {
    padding: 90px 0;
    background: #f5f6f7;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.compliance-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */

.compliance-left {
    flex: 1;
}

.compliance-item {
    display: flex;
    gap: 15px;
    margin-bottom: 28px;
}

.green-dot {
    width: 12px;
    height: 12px;
    background: #37d34a;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.compliance-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #252627;
    margin-bottom: 6px;
}

.compliance-item span {
    font-weight: 500;
    color: #666;
}

.compliance-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* RIGHT */

.compliance-right {
    flex: 1;
    text-align: left;
    position: relative;
}

    .compliance-right h2 {
        font-size: 28px;
        font-weight: 800;
        color: #252627;
        line-height: 1.4;
        margin-bottom: 20px;
        text-align: left;
    }

.compliance-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #2f74d0;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
}

.arrow-vector {
    position: absolute;
    bottom: -60%;
    left: auto;
    width: 59%;
    opacity: 0.9;
    left: -39%;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .compliance-grid {
        flex-direction: column;
        text-align: center;
    }

    .compliance-right {
        text-align: center;
    }

    .arrow-vector {
        display: none;
    }
}

@media(max-width:600px) {

    .compliance-right h2 {
        font-size: 22px;
    }

    .compliance-item {
        align-items: flex-start;
    }
}



/* SECTION */

.compliance-coverage {
    background: #F6FAFF;
    padding: 20px 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* TITLE */

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #252627;
    margin-bottom: 50px;
}

/* GRID */

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

/* CARD */

.coverage-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .coverage-card img {
        height: 45px;
        margin-bottom: 15px;
    }

    .coverage-card p {
        font-size: 16px;
        font-weight: 600;
        color: #252627;
        margin: 0;
    }

    .coverage-card span {
        font-weight: 500;
        color: #666;
    }

    /* HOVER */

    .coverage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

/* BUTTON */

.coverage-btn-wrap {
    text-align: center;
    margin-top: 45px;
}

.coverage-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #2F6FD6;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .coverage-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }
}




.how-work-section {
    margin: 0 auto;
    background: url("../images/howWe-work.jpg") center no-repeat;
    background-size: contain;
    padding: 0px 0;
    position: relative;
    width: 96%;
}

.how-container {
    max-width: 100%;
    margin: auto;
    position: relative;
    min-height: 500px;
}

/* BOX STYLE */

.work-box {
    width: 300px;
    /* background: #fff; */
    padding: 20px;
    border-radius: 8px;
    position: absolute;
}

    .work-box h4 {
        font-size: 17px;
        font-weight: 700;
        color: #252627;
        margin-bottom: 10px;
    }

    .work-box p {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
    }

/* POSITIONING */

.left-top {
    left: 4%;
    top: 6%;
}

.right-top {
    right: 7%;
    top: 20px;
}

.left-bottom {
    left: 4%;
    bottom: 41px;
}

.right-bottom {
    right: 7%;
    bottom: 24px;
}

/* CENTER */

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

    .center-text h2 {
        font-size: 36px;
        font-weight: 800;
        color: #252627;
    }

/* RESPONSIVE */

@media(max-width:1024px) {

    .work-box {
        width: 259px;
    }
}

@media(max-width:880px) {

    .how-work-section {
        background: none;
        padding: 43px 0;
    }

    .how-container {
        display: flex;
        flex-direction: column;
        gap: 0px;
        align-items: center;
    }

    .work-box {
        position: static;
        width: 100%;
    }

    .center-text {
        position: static;
        transform: none;
        order: -1;
        margin-bottom: 20px;
    }


    hero-banner {
        background: url(../images/sappHome-newBan.jpg) no-repeat right;
        background-size: cover;
        min-height: 600px;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 22;
        background-position: left !important;
    }
}








@media(min-width:1314px) {

    .left-top {
        left: 6%
    }

    .left-bottom {
        left: 6%;
    }
}

@media(min-width:1314px) {
    .left-top {
        left: 10%
    }

    .left-bottom {
        left: 10%;
    }
}


@media(max-width:1200px) {
    .right-bottom {
        right: 4%;
        bottom: 24px;
    }

    .right-top {
        right: 4%;
        top: 20px;
    }
}



/* SECTION */

.outcomes-section {
    background: url("../images/outcomesYou-can.jpg") no-repeat right center;
    background-size: cover;
    padding: 91px 0;
    min-height: 347px;
    display: flex;
    align-items: center;
}

/* CONTAINER */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* CONTENT */

.outcomes-content {
    max-width: 520px;
}

    /* HEADING */

    .outcomes-content h2 {
        font-size: 34px;
        font-weight: 800;
        color: #252627;
        margin-bottom: 28px;
        text-align: left;
    }

/* LIST */

.outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .outcomes-list svg {
        width: 21px;
        margin-right: 7px;
        position: relative;
        bottom: 3px;
    }

    .outcomes-list li {
        display: flex;
        align-items: flex-start;
        font-size: 16px;
        color: #333;
        margin-bottom: 16px;
        line-height: 1.6;
    }

.roadmap-text h2:after {
    display: none;
}
/* TICK */
.tick-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .outcomes-section {
        background-position: center right;
        padding: 90px 0;
    }
}

@media(max-width:768px) {

    .outcomes-section {
        background: none;
        padding: 12px 0;
        text-align: center;
    }

    .outcomes-content {
        margin: auto;
    }

    .outcomes-list li {
        justify-content: center;
    }
}

@media(max-width:480px) {

    .outcomes-content h2 {
        font-size: 22px;
        text-align: center;
    }

    .outcomes-list li {
        font-size: 15px;
    }
}




/* SECTION */

.roadmap-section {
    background: url("../images/compliance-roadmap.jpg") no-repeat center;
    background-size: cover;
    padding: 81px 0;
    margin: 6px 0;
}

/* CONTAINER */

.roadmap-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px 20px;
}

/* CONTENT */

.roadmap-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

/* TEXT */

.roadmap-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #252627;
    margin-bottom: 10px;
    text-align: left;
    margin-top: 0px;
}

.roadmap-text p {
    font-size: 16px;
    color: #4b4b4b;
    line-height: 1.6;
}

/* BUTTON */

.roadmap-btn a {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(90deg,#2371E1 0%,#75F943 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .roadmap-content {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:768px) {

    .roadmap-section {
        padding: 0px 2px;
    }

    .roadmap-text h2 {
        font-size: 19px;
    }
}

@media(max-width:480px) {

    .roadmap-text p {
        font-size: 14px;
        text-align: left;
    }

    .roadmap-btn a {
        padding: 12px 20px;
        font-size: 14px;
    }
}
