.ibps-wrapper {
    display: flex;
    align-items: stretch;
    gap: 40px;
    width: 100%;
}

.ibps-image-position-right .ibps-wrapper {
    flex-direction: row-reverse;
}

/* ---------- Image Outer Column (Wrapper Box) ---------- */
.ibps-image-col {
    position: relative;
    width: 44%;
    height: 480px;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
}

/* Inner block that structuralizes transitions perfectly */
.ibps-image-inner-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    flex: 1;
}

/* Foreground <img> element styling */
img.ibps-image-item {
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* Default setup overwritten via Elementor control */
    object-position: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

img.ibps-image-item.active {
    opacity: 1;
    visibility: visible;
}

.ibps-img-transition-none img.ibps-image-item {
    transition: none;
}

/* ---------- Content Column Wrap Architecture ---------- */
.ibps-content-col-wrap {
    position: relative;
    flex: 1;
    display: flex;
}

/* ---------- Progress Trackers ---------- */
.ibps-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
}

.ibps-progress-track,
.ibps-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    border-radius: 4px;
}

.ibps-progress-track {
    height: 100%;
    background-color: #e5e5e5;
}

.ibps-progress-fill {
    height: 0;
    background-color: #1050e0;
}

.ibps-progress-fill.ibps-animating {
    transition: height linear;
}

/* ---------- Content Core Columns ---------- */
.ibps-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 32px;
}

.ibps-item {
    cursor: pointer;
    transition: opacity 0.4s ease-in-out, border-color 0.4s ease-in-out, background-color 0.4s ease-in-out;
    box-sizing: border-box;
}

.ibps-item.active {
    opacity: 1 !important;
}

.ibps-item-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.ibps-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
    color: #1a1a1a;
    transform: scale(1);
    transition: background-color 0.4s, color 0.4s, transform 0.4s;
}

.ibps-item.active .ibps-icon {
    background-color: #1050e0;
    color: #ffffff;
    transform: scale(1.08);
}

.ibps-text {
    flex: 1;
}

.ibps-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #111111;
}

.ibps-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* ---------- Media Queries / Responsiveness ---------- */
@media (max-width: 1024px) {
    .ibps-image-col {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .ibps-wrapper,
    .ibps-image-position-right .ibps-wrapper {
        flex-direction: column !important;
    }

    .ibps-image-col {
        width: 100% !important;
        height: 300px;
    }

    .ibps-content-col-wrap {
        width: 100%;
    }
}

/* ---------- Mobile Layout Exceptions ---------- */
@media (max-width: 767px) {
    .ibps-hide-mobile-visual .ibps-image-col,
    .ibps-hide-mobile-visual .ibps-progress-line {
        display: none !important;
    }

    .ibps-hide-mobile-visual .ibps-content-col {
        padding-left: 0 !important;
    }

    .ibps-hide-mobile-visual .ibps-item {
        opacity: 1 !important;
        cursor: default;
    }

    .ibps-hide-mobile-visual .ibps-icon {
        background-color: #f2f2f2 !important;
        color: #1a1a1a !important;
        transform: none !important;
    }
}