.parallel-scroll-section {
    position: relative;
    width: 100%;
    display: flex;
}
.parallel-scroll-section .left-content {
    width: 45%;
    padding: 60px 40px;
    box-sizing: border-box;
    position: relative;
}
.parallel-scroll-section .content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.3;
    transform: translateX(-40px);
    transition: all 0.5s ease;
}
.parallel-scroll-section .content-section.active {
    opacity: 1;
    transform: translateX(0);
}
.parallel-scroll-section .content-section + .content-section {
    margin-top: 40vh;
}
.parallel-scroll-section .content-section h3 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
}
.parallel-scroll-section .content-section p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 25px;
    max-width: 520px;
}
.parallel-scroll-section .section-btn {
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: transparent;
    color: #fff;
    padding: 13px 40px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}
.parallel-scroll-section .section-btn .btn-icon {
    flex-shrink: 0;
    display: block;
    border-radius: 4px;
    width: 15px !important;
    height: 15px !important;
    object-fit: contain;
    margin: 0 0 0 10px;
}
.parallel-scroll-section .section-btn .btn-text {
    line-height: 1.4;
}
.parallel-scroll-section .section-btn:hover .btn-icon{
    filter: brightness(0) invert(1);
}
.parallel-scroll-section .right-images {
    width: 55%;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}
.parallel-scroll-section .image-section {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    padding: 20%;
}
.parallel-scroll-section .image-section.active {
    opacity: 1;
}
.parallel-scroll-section .image-section img {
    width: 65%;
    height: 100%;
    object-fit: contain;
    transition: .5s all ease-in-out;
}
.parallel-scroll-section .image-section img.center_image{
    margin: 0 17.5%;
}
.parallel-scroll-section .image-section img.left_image{
    position: absolute;
    width: 16%;
    top: 35%;
    left: 100px;
    height: 15%;
    opacity: 0;
}
.parallel-scroll-section .image-section.active img.left_image{
    top: 25%;
    opacity: 1;
}
.parallel-scroll-section .right-images:hover .image-section img.left_image{
    top: 35%;
}
.parallel-scroll-section .image-section img.right_image{
    position: absolute;
    width: 16%;
    bottom: 35%;
    right: 100px;
    height: 15%;
    opacity: 0;
}
.parallel-scroll-section .right-images .image-section.active img.right_image{
    bottom: 25%;
    opacity: 1;
}
.parallel-scroll-section .right-images:hover .image-section img.right_image{
    bottom: 35%;
}
@keyframes fadeInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.parallel-scroll-section .right-images .image-section img.center_image{
    opacity: 0;
    transform: translateX(100px);
}

.parallel-scroll-section .right-images .image-section.active img.center_image{
    animation: fadeInFromRight 0.6s ease-out forwards;
}
/* Button: Keyframes for fade in from bottom */
@keyframes fadeInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button base state */
.parallel-scroll-section .content-section .section-btn {
    opacity: 0;
    transform: translateY(50px);
}

/* Button active - triggers animation */
.parallel-scroll-section .content-section.active .section-btn {
    animation: fadeInFromBottom 0.8s ease-out forwards;
}


@media (max-width: 1099px){
    .parallel-scroll-section .image-section{
        padding: 10%;
    }
    .parallel-scroll-section .image-section img{
        width: 40%;
    }
    .parallel-scroll-section .image-section img.center_image{
        margin: 0 30%;
    }
    .parallel-scroll-section .image-section img.left_image{
        left: 30px;
    }
    .parallel-scroll-section .image-section img.right_image{
        right: 30px;
    }
}

@media (max-width: 768px) {
    .parallel-scroll-section {
        flex-direction: column;
    }
    .parallel-scroll-section .left-content,
    .parallel-scroll-section .right-images {
        width: 100%;
    }
    .parallel-scroll-section .right-images {
        position: relative;
        height: 60vh;
        margin-top: 20px;
    }
    .parallel-scroll-section .content-section + .content-section {
        margin-top: 20vh;
    }
    .parallel-scroll-section .section-btn {
        padding: 12px 20px;
    }
}