.service-box {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: url("../images/shape/offter-item-shape-top.png") no-repeat;
    background-size: contain;
    opacity: 0;
    transition: 0.3s;
}

.service-box:hover::before {
    opacity: 1;
}

.service-box h3 {
    color: #3b6cf4;
    margin-bottom: 10px;
}

.serviceboxs {
    background: url("../images/shape/service-three-shape.png") no-repeat;
    background-repeat: no-repeat;
    background-position: top right;
}

/* TECH LIST */
.tech-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #1a2a6c, #3b6cf4); */
    /* background: url("../images/shape/faq-shape.png") no-repeat right; */
    background:
        linear-gradient(135deg, #1a2a6c, #3b6cf4),
        url("../images/shape/service-bg-shape.png") no-repeat right;

}

.tech-card {
    background: #fff;
    padding: 25px 15px;
    text-align: center;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tech-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.tech-card p {
    font-weight: 600;
    margin: 0;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: url("../images/shape/offter-item-shape-bottom.png") no-repeat;
    background-size: contain;
    opacity: 0;
    transition: 0.3s;
}

.tech-card:hover::before {
    opacity: 1;
}

/* WHY US */
ul li {
    margin-bottom: 10px;
}

/* PROCESS */
.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;

}

.process div {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3b6cf4;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

/* CTA */
.cta-section {
    background: url("../images/shape/choose-shape-right.png") no-repeat top right,
        url("../images/shape/offer-bg-shape-right.png")no-repeat top left;
    background-repeat: no-repeat;
    /* background-position: ; */
    color: white;
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

/* Sticky Image */
.sticky-image {
    position: sticky;
    top: 120px;
    /* header height adjust */
}

.sticky-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* spacing */
.service-section {
    padding: 80px 0;
}

.service-box {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    color: #3b6cf4;
    margin-bottom: 10px;
}

.service-box ul {
    margin-top: 15px;
    padding-left: 0;
}

.service-box ul li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
}

.service-box ul li::before {
    content: "✔";
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #3b6cf4, #1d3596);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 10px;
}

.p-100 {
    padding: 100px 0;
}

.breadcrumb-list {
    width: 62%;
}

.why-section {
    padding: 80px 0;
}

.why-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.why-card .icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #3b6cf4, #1a2a6c);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0a1f44;
}

.why-card p {
    font-size: 14px;
    color: #555;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-section {
    padding: 80px 0;
    background: url("../images/shape/footer-solid-right.png") no-repeat right;
}

.process-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

/* line */
.process-wrapper::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    z-index: 0;
}

.process-item {
    width: 18%;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.process-item .circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b6cf4, #1a2a6c);
    color: #fff;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.process-item i {
    font-size: 22px;
    color: #3b6cf4;
    margin-bottom: 10px;
}

.process-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.process-item p {
    font-size: 13px;
    color: #555;
}

/* hover */
.process-item:hover {
    transform: translateY(-8px);
}

@media (max-width: 768px) {
    .process-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .process-wrapper::before {
        display: none;
    }

    .process-item {
        width: 100%;
    }
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    /* spacing reduce */
    .service-section,
    .why-section,
    .process-section,
    .tech-section {
        padding: 50px 0;
    }

    /* heading size */
    h2 {
        font-size: 22px;
        text-align: center;
    }

    /* LEFT IMAGE FIX */
    .sticky-image {
        position: relative;
        /* remove sticky */
        top: 0;
        margin-bottom: 20px;
    }

    /* SERVICE BOX */
    .service-box {
        padding: 18px;
    }

    .service-box h3 {
        font-size: 16px;
    }

    /* TECH CARDS */
    .tech-card img {
        width: 70px;
        height: 70px;
    }

    .tech-card {
        padding: 15px;
    }

    /* WHY CARD */
    .why-card {
        padding: 20px;
    }

    /* PROCESS FIX */
    .process-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .process-wrapper::before {
        display: none;
    }

    .process-item {
        width: 100%;
    }

    /* CTA */
    .cta-section h2 {
        font-size: 20px;
    }

    /* breadcrumb fix */
    .breadcrumb-list {
        width: 100%;
    }

    .p-100 {
        padding: 60px 0;
    }

}


.cursor-pointer{
    cursor: pointer;
}

