﻿
/* ================= COMMON ================= */
.erp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: "Poppins", sans-serif;
}

.erp-section-header {
    max-width: 700px;
    margin-bottom: 50px;
}

    .erp-section-header.center {
        text-align: center;
        margin: 0 auto 50px;
    }

    .erp-section-header h2 {
        color: black;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .erp-section-header p {
        font-size: 17px;
        color: #555;
        line-height: 1.7;
    }

@media (max-width: 768px) {
    .erp-section-header h2,
    .erp-overview-header h2 {
        font-size: 30px;
    }

    .erp-section-header p,
    .erp-overview-header p {
        font-size: 16px;
    }
}


/* ================= ACCOUNTING BANNER ================= */
.impl-banner {
    background: linear-gradient(135deg, rgba(0,35,75,0.85), rgba(0,120,200,0.55));
    padding: 180px 0;
    position: relative;
    overflow: hidden;
    height:580px;
}

    /* SUBTLE PATTERN OVERLAY */
    .impl-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent 60%);
        pointer-events: none;
    }

/* GRID LAYOUT */
.impl-grid, .acc-container {
    margin-top:20px;
    position: relative;
    z-index: 1;
    /*    display: grid;*/
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.banner-content h2 {
    margin-top:80px;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}

.banner-content p {
    /*    margin-left:105px;*/
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
}

.impl-btn-primary {
    background: #fff;
    color: #0f4c81;
    display: inline-block;
    margin-top: 28px;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
}

/* RIGHT IMAGE */
.banner-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .banner-image img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .banner-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-content p {
        margin: 0 auto;
    }

    .banner-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .accounting-banner {
        padding: 80px 0;
    }

    .banner-content h2 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 15px;
    }
}

/* ================= OVERVIEW ================= */
.erp-overview-section {
    margin-top: 50px;
    padding: 90px 0 60px;
    background: #ffffff;
}

.erp-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.erp-overview-header h2 {
    font-size: 38px;
    color: black;
    font-weight: 700;
    margin-bottom: 20px;
}

.erp-overview-header p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .erp-overview-section {
        margin-top: 30px;
        padding: 70px 0 50px;
    }
}




/* ================= DELIVERABLES ================= */
.erp-deliverables {
    margin-top: 50px;
}

    .erp-deliverables h3 {
        color: black;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 24px;
    }

.erp-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.deliverable-item {
    background: #f8fafc;
    padding: 20px 22px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .deliverable-item:hover {
        transform: translateY(-6px);
    }

@media (max-width: 600px) {
    .deliverable-item {
        padding: 18px 20px;
        font-size: 15px;
    }
}




/* ================= WHY CHOOSE ================= */
.erp-why-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.erp-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.erp-why-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

    .erp-why-card:hover {
        transform: translateY(-8px);
    }

.why-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 10px;
}

.erp-why-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.erp-why-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .erp-why-section {
        padding: 70px 0;
    }

    .erp-why-card {
        padding: 24px;
    }

        .erp-why-card h4 {
            font-size: 18px;
        }

        .erp-why-card p {
            font-size: 15.5px;
        }
}



/* ================= INDUSTRIES ================= */
.erp-industries-section {
    padding: 80px 0 0;
    background: #ffffff;
}

.erp-industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.industry-pill {
    padding: 12px 20px;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .industry-pill:hover {
        background: #2563eb;
        color: #fff;
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .erp-overview-header h2,
    .erp-section-header h2 {
        font-size: 30px;
    }
}

/* ================= TIMELINE WRAPPER ================= */
.implementation-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /*gap: 48px;*/ /* controlled spacing */
    margin-top: 60px;
    position: relative;
}

/* ================= STEP ITEM ================= */
.timeline-step {
/*    flex: 0 0 auto;*/
    width: 140px;
    text-align: center;
    position: relative;
}


/* ================= IMAGE ================= */
.step-image {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.timeline-step:hover .step-image {
    transform: scale(1.05);
}

/* ================= TITLE ================= */
.step-title {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
}

/* ================= DETAILS ================= */
.step-details {
    margin-top: 16px;
    padding: 16px;
    background: #ffffff;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    transition: grid-template-rows 0.4s ease, opacity 0.3s ease;
}

.step-details > * {
    min-height: 0;
}

/* ================= HOVER SHOW ================= */
.timeline-step:hover .step-details {
    grid-template-rows: 1fr;
    opacity: 1;
}

/* ================= LIST ================= */
.step-details ul {
    padding-left: 18px;
    text-align: left;
}

.step-details li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* ================= SVG ================= */
.timeline-step svg {
    width: 100px;
    height: 80px;
    display: block;
    margin: 0 auto;
}

.timeline-step svg circle{
/*.timeline-step svg path,*/
/*.timeline-step svg line {*/
    fill: none;
    stroke: currentColor;
    stroke-width: 6;
/*    stroke-linecap: round;
    stroke-linejoin: round;*/
}

.timeline-step svg text {
    fill: currentColor;
    font-size: 18px;
    font-weight: 700;
    text-anchor: middle;
}

/* ================= TITLE ================= */
.step-icon h5 {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

/* ================= ARROW BETWEEN STEPS ================= */
.timeline-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 40px; /* aligns to circle center */
    left: calc(40% + 50px);
/*    right: -38px;*/
    width: 60px;
    height: 2px;
    background: currentColor;
}

/* Arrow head */
.timeline-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 36px;
    left: calc(50% + 90px);
/*    right: -40px;*/
    width: 8px;
    height: 8px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(-45deg);
}


/* ================= HOVER SCALE ================= */
.timeline-step:hover svg {
    transform: scale(1.06);
    transition: transform 0.3s ease;
}

/* ================= COLOR CLASSES ================= */
.blue { color: #1e40ff; }
.cyan { color: #00b3ff; }
.teal { color: #00a0b0; }
.purple { color: #b100d1; }
.yellow { color: #f4b400; }
.green { color: #16a34a; }
.violet { color: #7c3aed; }

/* ================= TABLET ================= */
@media (max-width: 1024px) {
    .implementation-timeline {
        flex-wrap: wrap;
        gap: 60px;
    }

    .timeline-step::before,
    .timeline-step::after {
        display: none;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
/*    .implementation-timeline .timeline-step:first-child .step-details {
        display: block;
        opacity: 1;
    }*/

    .step-details {
        display: none;
        opacity: 1; /* override desktop */
        grid-template-rows: 1fr;
    }

    .timeline-step.active .step-details {
        display: block;
    }

    .implementation-timeline {
        flex-direction: column;
        gap: 24px;
    }

    .timeline-step {
        width: 100%;
        background: #fff;
        border-radius: 18px;
        padding: 18px;
        box-shadow: 0 12px 28px rgba(0,0,0,0.08);
        text-align: left;
        cursor:pointer;
    }

        .timeline-step::before,
        .timeline-step::after {
            display: none;
        }

    .step-icon {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .timeline-step svg {
        width: 56px;
        height: 56px;
        margin: 0;
    }
}


/* ================= REPORTS SECTION ================= */

.reports-section {
    padding: 70px 20px;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.reports-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.reports-header {
    text-align: center;
    margin-bottom: 60px;
}

    .reports-header h2 {
        font-size: 32px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 12px;
    }

    .reports-header p {
        font-size: 17px;
        color: #4b5563;
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* Row Layout */
.reports-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

    /* Reverse row for second section */
    .reports-row.reverse {
        grid-template-columns: 1fr 1.2fr;
    }

/* Reports List */
.reports-list {
    margin-left: 70px;
    padding: 30px;
}

    .reports-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .reports-list ul li {
            padding: 12px 0 12px 32px;
            position: relative;
            font-size: 16px;
            color: #1f2937;
            border-bottom: 1px solid #e5e7eb;
        }

            .reports-list ul li:last-child {
                border-bottom: none;
            }

            .reports-list ul li::before {
                content: "➜";
                position: absolute;
                left: 0;
                top: 12px;
                color: #2563eb;
                font-size: 18px;
            }

.reports-note {
    margin-top: 20px;
    font-size: 14px;
    color: #374151;
}

/* Power BI Content */
.reports-info {
    color: #1a1a1a;
    padding: 35px;
    border-radius: 16px;
}

    .reports-info h3 {
        font-size: 24px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .reports-info p {
        font-size: 16px;
        line-height: 1.7;
        opacity: 0.95;
    }

/* Image Box */
.reports-image {
    padding: 15px;
}

    .reports-image img {
        max-width: 100%;
        height: 370px;
        width: 400px;
        border-radius: 12px;
        display: block;
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .reports-row,
    .reports-row.reverse {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reports-list {
        margin-left: 0;
        padding: 20px;
    }

    .reports-image img {
        width: 100%;
        height: auto;
    }
}

/* ===== REPORTS SECTION MOBILE FIX ===== */
@media (max-width: 768px) {

    /* Stack rows cleanly */
    .reports-row,
    .reports-row.reverse {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Always show text first */
    .reports-info,
    .reports-list {
        order: 1;
        text-align: center;
    }

    /* Image goes below content */
    .reports-image {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
}



@media (max-width: 600px) {
    .reports-header h2 {
        font-size: 28px;
    }

    .reports-header p {
        font-size: 15.5px;
    }

    .reports-info {
        padding: 24px 20px;
    }
}


/* ================= FAST TRACK IMPLEMENTATION ================= */

.fast-track-section {
    margin-top: -40px;
    background: linear-gradient(180deg, #eef9fb 0%, #f7feff 100%);
    font-family: "Poppins", sans-serif;
}

.fast-track-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.fast-track-header {
    text-align: center;
    margin-bottom: 60px;
}

    .fast-track-header h2 {
        font-size: 32px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 10px;
    }

    .fast-track-header p {
        font-size: 17px;
        color: #4b5563;
        max-width: 850px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* Content Layout */
.fast-track-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image */
.fast-track-image {
    padding: 18px;
}

    .fast-track-image img {
        width: 100%;
        border-radius: 12px;
        display: block;
    }

/* Master Data Card */
.fast-track-card {
    background: linear-gradient(135deg, #00bdffeb, #0044a7e6);
    color: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(109, 40, 217, 0.35);
}

    .fast-track-card h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    /* List Styling */
    .fast-track-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .fast-track-card ul li {
            position: relative;
            padding-left: 26px;
            margin-bottom: 14px;
            font-size: 16px;
            line-height: 1.6;
        }

            .fast-track-card ul li::before {
                content: "✔";
                position: absolute;
                left: 0;
                top: 2px;
                font-size: 14px;
                color: #dbeafe;
            }

            /* Sub-points */
            .fast-track-card ul li span {
                display: block;
                font-size: 14px;
                opacity: 0.9;
                margin-left: 6px;
            }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .fast-track-section {
        margin-top: 0;
        padding: 70px 0;
    }

    .fast-track-card {
        padding: 30px 26px;
    }

        .fast-track-card h3 {
            font-size: 22px;
        }
}
/* ================= FAST TRACK – MOBILE REORDER & POLISH ================= */
@media (max-width: 600px) {

    .fast-track-section {
        padding: 60px 16px;
    }

    /* Stack content vertically */
    .fast-track-content {
        display: flex;
        flex-direction: column;
        gap: 28px;
        align-items: center;
        text-align: center;
    }

    /* Image FIRST */
    .fast-track-image {
        order: 1;
        padding: 0;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

        .fast-track-image img {
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        }

    /* Blue card BELOW image */
    .fast-track-card {
        order: 2;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        padding: 28px 22px;
        border-radius: 22px;
        text-align: left;
        box-shadow: 0 18px 45px rgba(28,121,255,0.35);
    }

        .fast-track-card h3 {
            font-size: 22px;
            text-align: center;
            margin-bottom: 18px;
        }

        .fast-track-card ul li {
            font-size: 15px;
        }

            .fast-track-card ul li span {
                font-size: 13px;
            }
}



/* ==================== FAQ STYLE 2 (ISOLATED) ==================== */

.faq2-wrapper {
    background: linear-gradient(180deg, #eef9fb 0%, #f7feff 100%);
    padding: 80px 20px;
    font-family: "Poppins", sans-serif;
    color: #222;
}

.faq2-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq2-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

.faq2-list {
    max-width: 1200px;
    margin: 0 auto;
}

.faq2-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 12px;
    transition: background 0.2s ease;
}

    .faq2-item:hover {
        background: #fafafa;
    }

.faq2-title {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 16px 0;
}

    .faq2-title::before {
        content: "›";
        font-size: 26px;
        font-weight: 600;
        color: #806666;
        transition: transform 0.3s ease;
    }

    .faq2-title h3 {
        font-size: 18px;
        font-weight: 500;
        margin: 0;
    }

/* Expand arrow */
.faq2-item.faq2-expanded .faq2-title::before {
    transform: rotate(90deg);
}

.faq2-content {
    max-height: 0;
    overflow: hidden;
    padding-left: 38px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

    .faq2-content p {
        margin: 15px 0;
        color: #555;
    }

/* Expanded state */
.faq2-item.faq2-expanded .faq2-content {
    padding-top: 8px;
    padding-bottom: 16px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1118px) {
    .faq2-list {
        margin: 0 40px;
    }
}

@media (max-width: 768px) {
    .faq2-list {
        margin: 0 20px;
    }
}

@media (max-width: 300px) {
    .faq2-list {
        margin: 0 10px;
    }

    .faq2-title {
        flex-direction: column;
        align-items: flex-start;
    }

        .faq2-title h3 {
            font-size: 15px;
        }
}

@media (max-width: 768px) {
    .erp-container,
    .reports-container,
    .fast-track-container {
        padding: 0 16px;
    }
}


/* ================= FLOW LAYOUT ================= */
.industry-flow-lines {
    display: flex;
    flex-direction: column;
    gap: 52px;
    max-width: 1050px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* ================= HEADER ================= */
.industry-flow-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 70px;
}

    .industry-flow-header h2 {
        font-size: 38px;
        font-weight: 700;
        letter-spacing: -0.4px;
        margin-bottom: 12px;
        color: #1f2937;
    }

    .industry-flow-header p {
        font-size: 17px;
        line-height: 1.6;
        color: #4b5563;
    }

/* ================= INDUSTRY CONNECTED ================= */
.industry-connected {
    padding: 90px 20px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
}

/* HEADER */
.industry-connected-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

    .industry-connected-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 12px;
    }

    .industry-connected-header p {
        font-size: 17px;
        color: #4b5563;
        line-height: 1.6;
    }

/* GRID */
.industry-connected-grid {
    margin-left: 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 80px;
}

/* ITEM */
.connected-item {
    position: relative;
    padding-left: 42px;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: color 0.3s ease;
}

    /* DOT */
    .connected-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 10px;
        height: 10px;
        background: #2563eb;
        border-radius: 50%;
        transform: translateY(-50%);
    }

    /* LINE */
    .connected-item::after {
        content: "";
        position: absolute;
        left: 14px;
        top: 50%;
        width: 20px;
        height: 2px;
        background: linear-gradient(90deg, #2563eb, #4f46e5);
        transform: translateY(-50%);
        transition: width 0.3s ease;
    }

    /* HOVER */
    .connected-item:hover {
        color: #2563eb;
    }

        .connected-item:hover::after {
            width: 25px;
        }

/* RESPONSIVE */
@media (max-width: 900px) {
    .industry-connected-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ================= INDUSTRY SECTION – MOBILE REDESIGN ================= */
@media (max-width: 600px) {

    /* Section padding */
    .industry-connected {
        padding: 60px 16px;
    }

    /* Header */
    .industry-connected-header {
        margin-bottom: 40px;
        text-align: center;
    }

        .industry-connected-header h2 {
            font-size: 28px;
            line-height: 1.25;
        }

        .industry-connected-header p {
            font-size: 15.5px;
        }

    /* Grid reset */
    .industry-connected-grid {
        margin-left: 0; /* 🔥 REMOVE LEFT SHIFT */
        grid-template-columns: 1fr;
/*        gap: 16px;*/
    }

    /* Industry item → card */
    .connected-item {
        padding: 14px 16px 14px 48px;
        font-size: 15.5px;
        font-weight: 600;
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        color: #0f172a;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

        /* Dot → badge */
        .connected-item::before {
            width: 22px;
            height: 22px;
            left: 14px;
            background: linear-gradient(135deg, #2563eb, #4f46e5);
        }

        /* Remove connector line */
        .connected-item::after {
            display: none;
        }

        /* Tap feedback */
        .connected-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(37,99,235,0.18);
            color: #2563eb;
        }
}
