.elementor-18875 .elementor-element.elementor-element-484395f2{--display:flex;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-41d37da *//* EcoBag Pro Timeline — Scoped to #time */
#time {
    --primary: #47D8B5;
    --primary-dark: #3BC4A1;
    --primary-light: #E8FAF5;
    --primary-gradient: linear-gradient(135deg, #47D8B5 0%, #3BC4A1 100%);
    --black: #0a1628;
    --white: #FFFFFF;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius-lg: 16px;
    --radius-md: 12px;

    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

#time * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Wrapper */
#time .eco-timeline-wrapper {
    position: relative;
    height: 520px;
}

/* Fixed Center Line */
#time .eco-timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-light) 100%);
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

/* Scroll Track */
#time .eco-timeline-track {
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    position: relative;
    z-index: 2;
    height: 100%;
}
#time .eco-timeline-track::-webkit-scrollbar {
    display: none;
}
#time .eco-timeline-track:active {
    cursor: grabbing;
}

/* Timeline Flex */
#time .eco-timeline {
    display: flex;
    gap: 24px;
    padding: 20px 10px;
    min-width: max-content;
    position: relative;
    height: 100%;
}

/* Item */
#time .eco-timeline-item {
    flex: 0 0 300px;
    position: relative;
    height: 100%;
}

/* Dot */
#time .eco-timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 3;
    transition: all 0.3s ease;
}
#time .eco-timeline-item:hover .eco-timeline-dot {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 6px rgba(71, 216, 181, 0.2);
}

/* Card */
#time .eco-timeline-content {
    position: absolute;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}
#time .eco-timeline-content:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

/* Odd items → Card above */
#time .eco-timeline-item:nth-child(odd) .eco-timeline-content {
    bottom: calc(50% + 30px);
}
#time .eco-timeline-item:nth-child(odd) .eco-timeline-content:hover {
    transform: translateY(-6px);
}

/* Even items → Card below */
#time .eco-timeline-item:nth-child(even) .eco-timeline-content {
    top: calc(50% + 30px);
}
#time .eco-timeline-item:nth-child(even) .eco-timeline-content:hover {
    transform: translateY(6px);
}

/* Arrows */
#time .eco-timeline-item:nth-child(odd) .eco-timeline-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 0 0 4px 0;
    border-right: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    transition: border-color 0.4s ease;
}

#time .eco-timeline-item:nth-child(even) .eco-timeline-content::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-135deg);
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 0 0 4px 0;
    border-right: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    transition: border-color 0.4s ease;
}

#time .eco-timeline-content:hover::after {
    border-color: var(--primary);
}

/* Year badge */
#time .eco-timeline-year {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

/* Title */
#time .eco-timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

/* Description */
#time .eco-timeline-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Highlight Latest */
#time .eco-timeline-item.highlight .eco-timeline-dot {
    background: var(--primary);
    width: 22px;
    height: 22px;
    box-shadow: 0 0 0 6px rgba(71, 216, 181, 0.25);
    animation: pulse 2s infinite;
}
#time .eco-timeline-item.highlight .eco-timeline-year {
    background: linear-gradient(135deg, var(--black) 0%, #1E293B 100%);
}
#time .eco-timeline-item.highlight .eco-timeline-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
}

/* Progress Dots */
#time .eco-timeline-progress {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    #time .eco-timeline-wrapper {
        height: 480px;
    }
    #time .eco-timeline {
        gap: 16px;
    }
    #time .eco-timeline-item {
        flex: 0 0 260px;
    }
    #time .eco-timeline-item:nth-child(odd) .eco-timeline-content {
        bottom: calc(50% + 25px);
    }
    #time .eco-timeline-item:nth-child(even) .eco-timeline-content {
        top: calc(50% + 25px);
    }
    #time .eco-timeline-content {
        padding: 20px;
        border-radius: var(--radius-md);
    }
    #time .eco-timeline-title {
        font-size: 16px;
    }
    #time .eco-timeline-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    #time .eco-timeline-wrapper {
        height: 460px;
    }
    #time .eco-timeline-item {
        flex: 0 0 240px;
    }
    #time .eco-timeline-content {
        padding: 18px;
    }
    #time .eco-timeline-year {
        font-size: 13px;
        padding: 6px 14px;
    }
}/* End custom CSS */