.gsc-workprocess-list {
    position: relative;
    padding: 40px 0;
    margin: 20px 0;
    background: #f5f7fa;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



.gsc-workprocess-list .entry-timeline {
    position: relative;
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gsc-workprocess-list .entry-timeline:nth-child(odd) .entry-left {
    order: 2;
}

.gsc-workprocess-list .entry-timeline:nth-child(odd) .entry-right {
    order: 1;
}

.gsc-workprocess-list .hentry {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gsc-workprocess-list .entry-left,
.gsc-workprocess-list .entry-right {
    width: 45%;
}

.gsc-workprocess-list .entry-content {
    text-align: left;
}

.gsc-workprocess-list .entry-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.gsc-workprocess-list .entry-timeline:nth-child(odd) .entry-content {
    text-align: right;
}

.gsc-workprocess-list .entry-timeline:nth-child(odd) .entry-images {
    text-align: left;
    align-items: flex-start;
}

.gsc-workprocess-list .entry-timeline:nth-child(even) .entry-images {
    align-items: flex-end;
}

.gsc-workprocess-list .year {
    font-size: 40px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
    position: relative;
}

.gsc-workprocess-list .year::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 10px;
    height: 10px;
    background: #007bff;
    border-radius: 50%;
    transform: translateY(-50%);
}

.gsc-workprocess-list .title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.gsc-workprocess-list .desc {
    font-size: 16px;
    color: #555;
}

.gsc-workprocess-list .image {
    position: relative;
    display: flex;
    align-items: center;
}

.gsc-workprocess-list .image img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gsc-workprocess-list .image img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}



.gsc-workprocess-list .blue-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 13px;
    background: #007bff;
    transform: translateX(-50%);
    border-radius: 11px;
    height: 0; /* Start with height 0 */
    transition: height 2s ease-out; /* Smooth transition */
}

.gsc-workprocess-list .entry-timeline {
    position: relative;
    padding: 20px 0;
    overflow: hidden; /* Ensure the blue line doesn't overflow */
}

.gsc-workprocess-list .entry-timeline.in-view .blue-line {
    height: 100%; /* Full height when in view */
}

.gsc-workprocess-list .entry-timeline.in-view .year::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 15px;
    height: 15px;
    background: #7ab9fd; /* Different color for effect */
    border-radius: 50%;
    transform: translateY(-50%);
    animation: pulse 1s infinite; /* Pulse effect */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.gsc-workprocess-list .entry-timeline .entry-content,
.gsc-workprocess-list .entry-timeline .entry-images {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 4s ease-out, transform 3s ease-out;
}

.gsc-workprocess-list .entry-timeline.in-view .entry-content,
.gsc-workprocess-list .entry-timeline.in-view .entry-images {
    opacity: 1;
    transform: translateY(0);
}

.gsc-workprocess-list .entry-timeline .entry-content.delay,
.gsc-workprocess-list .entry-timeline .entry-images.delay {
    transition-delay: 0.3s; /* Adjust delay as needed */
}
