/* MAIN WRAPPER — SHORTER VERSION */
.qtech-whyus-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 13px;
 /* align-items: center; */
    position: relative;
    min-height: 300px;   /* ↓↓↓ بدل 420 */
    padding: 20px 0;
}

/* LEFT SIDE */
.qtech-whyus-left {
    display: flex;
    flex-direction: column;
    gap: 22px;  /* ↓↓↓ بدل 40px */
    min-width: 500px;
}

/* BLOCK */
.qtech-whyus-block {
    cursor: pointer;
    opacity: 0.3;
    transform: scale(0.95);
    transition: 0.3s ease;
    max-height: 30px;   /* ↓↓↓ بدل 60px */
    overflow: hidden;
    padding-bottom: 2px;
}

/* ACTIVE BLOCK */
.qtech-whyus-block.active {
    opacity: 1;
    transform: scale(1);
    max-height: none !important;
    overflow: visible !important;
}

/* TITLES */
.qtech-whyus-title {
    font-size: 22px;    /* ↓↓↓ بدل 32px */
    margin-bottom: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.qtech-whyus-block.active .qtech-whyus-title {
    opacity: 1;
}

/* BULLETS */
.qtech-whyus-points li {
    list-style: none;
    margin-bottom: 4px;
    opacity: 0;
    transform: translateY(4px);
    transition: 0.22s ease;
}

.qtech-whyus-block.active .qtech-whyus-points li {
    opacity: 1;
    transform: translateY(0);
}

/* RIGHT IMAGE */
.qtech-whyus-right {
    position: relative;
    width: 100%;
    height: 294px;   /* ↓↓↓ بدل 420px */
    overflow: hidden;
    border-radius: 10px;
}

.qtech-whyus-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(1.05);
    transition: 0.6s ease, transform 0.6s ease;
}

.qtech-whyus-right img.active {
    opacity: 1;
    transform: scale(1);
}


.qtech-whyus-block:hover ~ .qtech-whyus-right img.active {
    transform: scale(1.06) translateY(-6px);
}

.qtech-whyus-block {
    position: relative;
}

.qtech-whyus-block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #fff;
    transition: width 0.35s ease;
    opacity: 0.3;
}

.qtech-whyus-block:hover::after,
.qtech-whyus-block.active::after {
    width: 100%;
    opacity: 1;
}
