.final-service-wrapper.sticky-services-5de4ff77 {
    display: flex;
    gap: 60px;
    width: 100%;
    margin: 0 auto;
    background: transparent !important;
}

.sticky-services-5de4ff77 .sticky-visual-box {
    flex: 1;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    height: 550px;
    overflow: hidden;
    border-radius: 4px;
}

.sticky-services-5de4ff77 .sticky-visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.6s ease-in-out, transform 1s ease-out;
}

.sticky-services-5de4ff77 .sticky-visual-box img.active-frame {
    opacity: 1;
    transform: scale(1);
}

.sticky-services-5de4ff77 .service-nav-stack {
    flex: 1.2;
}

.sticky-services-5de4ff77 .service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px 0;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-services-5de4ff77 .service-row:first-child {
    border-top: 1px solid #e5e5e5;
}

.sticky-services-5de4ff77 .service-row::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.5s ease;
}

.sticky-services-5de4ff77 .service-row:hover::after, 
.sticky-services-5de4ff77 .service-row.active-state::after {
    width: 100%;
}

.sticky-services-5de4ff77 .row-main-flex {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.sticky-services-5de4ff77 .row-num {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    margin-top: 10px;
}

.sticky-services-5de4ff77 .service-row.active-state .row-num {
    color: #caa96b;
}

.sticky-services-5de4ff77 .row-heading {
    font-family: 'Sora', sans-serif !important;
    font-size: 42px !important;
    font-weight: 400 !important;
    color: #000000 !important;
    margin: 0 !important;
    line-height: 1.1 !important;
    letter-spacing: -1.5px !important;
    transition: transform 0.4s ease;
}

.sticky-services-5de4ff77 .service-row:hover .row-heading {
    transform: translateX(8px);
}

.sticky-services-5de4ff77 .row-sub {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
    margin-top: 12px;
}

.sticky-services-5de4ff77 .row-icon-circle {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ddd;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.sticky-services-5de4ff77 .service-row:hover .row-icon-circle, 
.sticky-services-5de4ff77 .service-row.active-state .row-icon-circle {
    background: #caa96b;
    border-color: #caa96b;
    transform: rotate(-45deg);
}

.sticky-services-5de4ff77 .row-icon-circle svg {
    width: 22px;
    fill: none;
    stroke: #333;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.sticky-services-5de4ff77 .service-row:hover .row-icon-circle svg, 
.sticky-services-5de4ff77 .service-row.active-state .row-icon-circle svg {
    stroke: #fff;
}

/* Mobile */
@media (max-width: 991px) {
    .final-service-wrapper.sticky-services-5de4ff77 {
        flex-direction: column;
        gap: 30px;
    }
    .sticky-services-5de4ff77 .sticky-visual-box {
        position: relative;
        top: 0;
        height: 350px;
        width: 100%;
    }
    .sticky-services-5de4ff77 .row-heading {
        font-size: 30px !important;
    }
}