/* Section Spacing */
.service-grid-section {
    padding: 100px 0;
    background: #ffffff;
}

@media (max-width: 768px) {
    .service-grid-section {
        padding: 60px 0;
    }
}

/* Service Cards */
.service-main-card {
    background: #f8fafc;
    border-radius: 40px;
    padding: 45px;
    border: 1px solid #ff8f3e;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
}

.service-main-card:hover {
    transform: translateY(-12px);
    border-color: #ff6b00;
    background: #fff;
    box-shadow: 0 40px 80px rgba(255, 107, 0, 0.1);
}

.service-main-icon {
    width: 65px;
    height: 65px;
    background: #fff7ed;
    color: #ff6b00;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #475569;
    font-size: 15px;
}

.service-list li i {
    color: #ff6b00;
    font-size: 12px;
}

@media (max-width: 991px) {
    .service-main-card {
        padding: 30px;
        border-radius: 25px;
    }

    .service-main-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}



.advantage-section {
    background: #0f172a;
    padding: 100px 0;
    color: #fff;
}

.adv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
    height: 100%;
}

.adv-card h4 {
    color: #ff6b00;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .advantage-section {
        padding: 60px 0;
    }

    .adv-card {
        padding: 30px;
    }
}

.process-flow-section {
    padding: 100px 0;
    background: #fdfbf9;
    position: relative;
}

.process-line-wrap {
    position: relative;
    padding: 40px 0;
}

.process-line-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(15, 23, 42, 0.05);
    transform: translateX(-50%);
}

.process-step-item {
    position: relative;
    margin-bottom: 10px;
    z-index: 2;
}

.process-step-item:last-child {
    margin-bottom: 0;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: #ff6b00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    border: 5px solid #fff;
}

.step-content-box {
    width: 45%;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid #ff843a;
    transition: 0.4s;
}

.process-step-item:nth-child(even) .step-content-box {
    margin-left: auto;
}

.step-tag {
    color: #ff6b00;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .process-flow-section {
        padding: 60px 0;
    }

    .process-line-wrap::before {
        left: 20px;
        transform: none;
    }

    .step-marker {
        left: 20px;
        transform: none;
        width: 45px;
        height: 45px;
        font-size: 16px;
        border-width: 3px;
    }

    .step-content-box {
        width: calc(100% - 65px);
        margin-left: 65px !important;
        padding: 25px;
        border-radius: 20px;
    }
}