.tw-work-section {
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.tw-container {
    width: 70%;
    margin: auto;
    display: grid;
    grid-template-columns: 32% 68%;
    gap: 40px;
}

/* LEFT */
.tw-left {
    position: sticky;
    top: 200px;
    /* reduce */
    align-self: start;
}

.tw-heading {
    font-size: 42px;
    color: #f73427;
    font-weight: 700;
    margin-bottom: 25px;
}

.tw-step {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 18px;
    color: #bbb;
}

.tw-step span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.tw-step.active {
    color: #f73427;
    font-weight: 600;
}

.tw-step.active span {
    background: #f73427;
    color: #fff;
}

/* RIGHT */
.tw-box {
    min-height: 600px;
    /* ❌ remove fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 80%;
    margin-left: auto;
    padding: 20px 0;
}

/* IMAGE */
.tw-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #f97316;
    padding: 10px;
    margin-bottom: 15px;
    background: #fff;
}

.tw-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* TEXT */
.tw-box p {
    max-width: 420px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* ================= MOBILE ================= */
@media(max-width:992px) {
    .tw-container {
        grid-template-columns: 1fr;
        width: 90%;
        gap: 0px;
    }

    .tw-steps {
        display: none;
    }

    .tw-left {
        position: relative;
        top: 0px;
        text-align: center;
        margin-bottom: 0px;
    }

    .tw-heading {
        font-size: 28px;
    }

    .tw-step {
        justify-content: center;
    }

    .tw-box {
        width: 100%;
        margin-left: 0;
        min-height: auto;
    }

    .tw-img {
        width: 120px;
        height: 120px;
    }

    .tw-box p {
        font-size: 16px;
    }
}

/* EXTRA SMALL */
@media(max-width:576px) {
    /* .tw-container {
        background: #f73427;
    } */

    .tw-steps {
        display: none;
    }

    /* ✅ heading visible rahe */
    .tw-left {
        text-align: center;
    }

    .tw-heading {
        font-size: 22px;
    }

    .tw-step {
        font-size: 14px;
    }

    .tw-box p {
        font-size: 14px;
    }
}