.taskerz-tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Top tabs row */
.taskerz-tabs-header {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.taskerz-tab-btn {
    border: none;
    cursor: pointer;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    background: #ffffff;
    color: #222;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.taskerz-tab-btn.is-active {
    background: linear-gradient(90deg, #ff7a00, #ff3b3b);
    color: #fff;
    transform: translateY(-2px);
}

/* Body layout: left text + right image */
.taskerz-tabs-body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

/* Left content */
.taskerz-tabs-left {
    position: relative;
}

.taskerz-tab-content {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.taskerz-tab-content.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.taskerz-tab-heading {
    font-size: 32px;
    margin-bottom: 16px;
}

.taskerz-tab-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.taskerz-tab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 999px;
    background: #00a651;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.taskerz-tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}

/* Right images with fade/slide animation */
.taskerz-tabs-right {
    position: relative;
    min-height: 320px;
}

.taskerz-tab-image-wrap {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(20px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.taskerz-tab-image-wrap.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.taskerz-tab-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 900px) {
    .taskerz-tabs-body {
        grid-template-columns: 1fr;
    }

    .taskerz-tabs-left,
    .taskerz-tab-content {
        position: relative;
    }

    .taskerz-tabs-right {
        min-height: 260px;
        margin-top: 20px;
    }
}
