.elementor-3416 .elementor-element.elementor-element-31cff767{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-3416 .elementor-element.elementor-element-31cff767{--width:512px;}}/* Start custom CSS for html, class: .elementor-element-7284288e */.services-list {
    width: 100%;
    position: relative;
    /* Note: Use this only if the list items are wrapped, otherwise the column width is sufficient. */
}

/* SERVICE ITEM - FIXED: Reduced vertical padding for tighter list spacing */
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0; /* Adjusted from 22px 0 for better spacing */
    cursor: pointer;
}

.service-text {
    font-size: 24px;
    color: #111;
    transition: 0.3s ease;
}

/* HOVER TEXT COLOR */
.service-item:hover .service-text {
    color: #8A42FF;
}

/* DIVIDER */
.divider {
    width: 100%;
    height: 1px;
    background: #000;
    opacity: 0.6;
}

.arrow-icon {
    width: 37px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.service-item:hover .arrow-icon {
    transform: translateX(4px);
}

/* ======================================= */
/* 3. Hover Image Box */
/* ======================================= */

/* FIXED HOVER IMAGE RIGHT POSITION */
.hover-image-box {
    position: absolute;
    /* Adjust 'left' relative to the .services-list or .right-services-column */
    /* This positioning needs careful testing in the browser */
    left: 60%;        /* Adjusted to keep it near the right column */
    top: 0;
    width: 140px;
    height: 140px;
    pointer-events: none; /* prevents blocking over */
}

/* ALL IMAGES STACKED */
.hover-img {
    position: absolute;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 20px; 
    
    /* 2. THE CRITICAL FIX: Clip anything that goes outside the border-radius */
    overflow: hidden;
    opacity: 0;
    transform: rotate(5deg);
    transition: opacity 0.3s ease;
}

/* SHOW ACTIVE IMAGE */
.hover-img.active {
    opacity: 1;
}/* End custom CSS */