/* ============================================
   AlfaSoft - Premium Animations & Effects
   Glassmorphism | Water Drops | Spotlight
   Antigravity | Shimmer | 3D Tilt
   ============================================ */

/* === CURSOR SPOTLIGHT === */
.cursor-spotlight {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.08) 0%, rgba(0, 210, 255, 0.04) 30%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-secondary);
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5), 0 0 60px rgba(0, 210, 255, 0.2);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-dot.hovering {
    width: 40px;
    height: 40px;
    background: rgba(108, 92, 231, 0.15);
    border: 2px solid rgba(108, 92, 231, 0.4);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.3);
}

/* === ENHANCED GLASSMORPHISM === */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transition: left 0.8s ease;
    z-index: 0;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(108, 92, 231, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.glass-card:hover::after {
    opacity: 1;
}

.glass-card>* {
    position: relative;
    z-index: 1;
}

/* Glass shine edge effect */
.glass-card .glass-shine {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    z-index: 2;
}

/* === WATER RIPPLE EFFECT === */
.water-ripple {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    animation: waterRipple 1s ease-out forwards;
}

@keyframes waterRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Water drop on cards */
.glass-card .water-drop-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: waterDrop 0.8s ease-out forwards;
}

@keyframes waterDrop {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* === ANTIGRAVITY FLOATING === */
.antigravity {
    animation: antigravityFloat 6s ease-in-out infinite;
}

.antigravity-slow {
    animation: antigravityFloat 8s ease-in-out infinite;
}

.antigravity-fast {
    animation: antigravityFloat 4s ease-in-out infinite;
}

@keyframes antigravityFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(1deg);
    }

    50% {
        transform: translateY(-8px) rotate(-0.5deg);
    }

    75% {
        transform: translateY(-20px) rotate(0.5deg);
    }
}

@keyframes antigravityOrbit {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-12px) translateX(8px) rotate(2deg);
    }

    50% {
        transform: translateY(-5px) translateX(-5px) rotate(-1deg);
    }

    75% {
        transform: translateY(-18px) translateX(3px) rotate(1deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

/* Antigravity floating orbs */
.antigravity-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.antigravity-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.antigravity-orb:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--color-accent-primary);
    top: 10%;
    left: -5%;
    animation: antigravityOrbit 20s ease-in-out infinite;
}

.antigravity-orb:nth-child(2) {
    width: 300px;
    height: 300px;
    background: var(--color-accent-secondary);
    top: 60%;
    right: -5%;
    animation: antigravityOrbit 25s ease-in-out infinite reverse;
}

.antigravity-orb:nth-child(3) {
    width: 250px;
    height: 250px;
    background: var(--color-accent-tertiary);
    bottom: 10%;
    left: 30%;
    animation: antigravityOrbit 18s ease-in-out infinite 2s;
}

/* === SHIMMER / SHINE EFFECTS === */
.shimmer-text {
    background-size: 200% auto;
    background-image: linear-gradient(90deg, var(--color-text-primary) 0%, var(--color-accent-secondary) 50%, var(--color-text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Border shimmer on cards */
.border-shimmer {
    position: relative;
}

.border-shimmer::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-primary), var(--color-accent-secondary), transparent);
    background-size: 300% 100%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    animation: borderShimmer 3s linear infinite;
    transition: opacity 0.5s ease;
}

.border-shimmer:hover::before {
    opacity: 1;
}

@keyframes borderShimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* === MAGNETIC BUTTONS === */
.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.btn-magnetic:hover {
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.4), 0 0 80px rgba(108, 92, 231, 0.1);
}

/* Button glow pulse */
.btn-primary {
    position: relative;
    overflow: visible;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--color-accent-gradient);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
    opacity: 0.6;
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {

    0%,
    100% {
        filter: blur(15px);
        opacity: 0.4;
    }

    50% {
        filter: blur(25px);
        opacity: 0.7;
    }
}

/* === HERO ENHANCEMENTS === */
.hero-badge {
    animation: fadeInUp 0.6s ease forwards, antigravityFloat 5s 1s ease-in-out infinite;
}

.hero h1 .gradient-text {
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

/* Spotlight beam in hero */
.hero-spotlight {
    position: absolute;
    top: -20%;
    right: 10%;
    width: 300px;
    height: 800px;
    background: linear-gradient(180deg, rgba(108, 92, 231, 0.08) 0%, transparent 100%);
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 0;
    animation: spotlightSweep 8s ease-in-out infinite;
}

.hero-spotlight-2 {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 200px;
    height: 600px;
    background: linear-gradient(180deg, rgba(0, 210, 255, 0.05) 0%, transparent 100%);
    transform: rotate(-20deg);
    pointer-events: none;
    z-index: 0;
    animation: spotlightSweep 10s 2s ease-in-out infinite reverse;
}

@keyframes spotlightSweep {

    0%,
    100% {
        transform: rotate(15deg) translateX(0);
        opacity: 0.6;
    }

    50% {
        transform: rotate(25deg) translateX(100px);
        opacity: 1;
    }
}

/* === FLOATING GLASS SHAPES === */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.025);
    background: rgba(255, 255, 255, 0.008);
    backdrop-filter: blur(2px);
    opacity: 0.4;
}

.floating-shape:nth-child(1) {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: 20%;
    right: 18%;
    animation: antigravityOrbit 20s ease-in-out infinite;
}

.floating-shape:nth-child(2) {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: 40%;
    right: 28%;
    animation: antigravityFloat 14s ease-in-out infinite 1s;
}

.floating-shape:nth-child(3) {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    bottom: 30%;
    right: 12%;
    animation: antigravityOrbit 22s ease-in-out infinite reverse;
}

.floating-shape:nth-child(4) {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: 55%;
    right: 35%;
    animation: antigravityFloat 16s ease-in-out infinite 2s;
}

.floating-shape:nth-child(5) {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 25%;
    right: 45%;
    animation: antigravityOrbit 25s ease-in-out infinite 3s;
    border-color: rgba(0, 210, 255, 0.03);
}

/* === 3D TILT EFFECT === */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.tilt-card .tilt-content {
    transform: translateZ(30px);
}

/* === ENHANCED SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* === FEATURE CARD HOVER GLOW === */
.feature-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(108, 92, 231, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === PRODUCT CARD ENHANCED === */
.product-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(108, 92, 231, 0.08);
}

/* === NAVBAR GLASS ENHANCEMENT === */
.navbar.scrolled {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.8), rgba(18, 18, 26, 0.8));
    backdrop-filter: blur(25px) saturate(1.8);
    -webkit-backdrop-filter: blur(25px) saturate(1.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* === SECTION DIVIDER ANIMATION === */
.section-divider {
    width: 200px;
    height: 2px;
    background: var(--color-accent-gradient);
    margin: 0 auto;
    border-radius: 9999px;
    position: relative;
    overflow: visible;
}

.section-divider::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: white;
    border-radius: inherit;
    top: 0;
    animation: dividerSlide 3s ease-in-out infinite;
}

@keyframes dividerSlide {

    0%,
    100% {
        left: -10%;
        opacity: 0;
    }

    50% {
        left: 110%;
        opacity: 1;
    }
}

/* === TEXT REVEAL ANIMATION === */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}

@keyframes textRevealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === LOGO HOVER EFFECT === */
.navbar-logo:hover .logo-icon {
    animation: logoSpin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(10deg) scale(1.1);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

/* === HERO STAT COUNTER GLOW === */
.hero-stat {
    padding: 1rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.1);
}

/* === TESTIMONIAL CARD GLASS === */
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* === SOCIAL LINK RIPPLE === */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.3), transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
    border-radius: inherit;
}

.social-link:hover::after {
    transform: scale(2);
}

/* === CTA SECTION ENHANCED === */
.cta-section::before {
    animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* === TEAM AVATAR GLOW === */
.team-avatar {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover .team-avatar {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
}

/* === WATER SURFACE EFFECT (for hero bottom) === */
.water-surface {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 2;
}

.water-surface::before,
.water-surface::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.3), rgba(108, 92, 231, 0.3), transparent);
    animation: waterFlow 5s ease-in-out infinite;
}

.water-surface::after {
    animation-delay: 2.5s;
    opacity: 0.5;
}

@keyframes waterFlow {

    0%,
    100% {
        transform: translateX(-5%) scaleX(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(5%) scaleX(1.05);
        opacity: 1;
    }
}

/* === PARALLAX LAYERS === */
.parallax-layer {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* === LOADING ANIMATION === */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--color-accent-gradient);
    border-radius: inherit;
    animation: loaderBar 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px 10px rgba(108, 92, 231, 0.1);
    }
}

@keyframes loaderBar {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }
}

/* === SCROLL-DRAW TIMELINE === */
.timeline {
    position: relative;
}

/* The static background line (subtle, faded) */
#timeline-scroll::before {
    background: linear-gradient(180deg,
            rgba(108, 92, 231, 0.1) 0%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(0, 210, 255, 0.1) 100%) !important;
}

/* The animated progress line that draws on scroll */
.timeline-progress {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg,
            var(--color-accent-primary) 0%,
            var(--color-accent-secondary) 60%,
            rgba(0, 210, 255, 0.8) 100%);
    z-index: 1;
    transition: height 0.05s linear;
    border-radius: 3px;
    box-shadow:
        0 0 8px rgba(108, 92, 231, 0.6),
        0 0 20px rgba(108, 92, 231, 0.3),
        0 0 40px rgba(0, 210, 255, 0.15);
}

/* Glowing tip of the progress line */
.timeline-progress::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent-secondary);
    box-shadow:
        0 0 12px rgba(0, 210, 255, 0.8),
        0 0 30px rgba(0, 210, 255, 0.5),
        0 0 60px rgba(108, 92, 231, 0.3);
    animation: timelineTipPulse 1.5s ease-in-out infinite;
}

@keyframes timelineTipPulse {

    0%,
    100% {
        box-shadow:
            0 0 12px rgba(0, 210, 255, 0.8),
            0 0 30px rgba(0, 210, 255, 0.5),
            0 0 60px rgba(108, 92, 231, 0.3);
        transform: translateX(-50%) scale(1);
    }

    50% {
        box-shadow:
            0 0 20px rgba(0, 210, 255, 1),
            0 0 50px rgba(0, 210, 255, 0.7),
            0 0 80px rgba(108, 92, 231, 0.5);
        transform: translateX(-50%) scale(1.3);
    }
}

/* Timeline dots — initially small & dim */
.timeline-draw-item .timeline-dot {
    transform: translateX(-50%) scale(0.5);
    opacity: 0.3;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(108, 92, 231, 0.4);
    box-shadow: none;
    border-color: var(--color-bg-secondary);
}

/* Timeline dots — activated (scaled up + glow) */
.timeline-draw-item.active .timeline-dot {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    background: var(--color-accent-primary);
    box-shadow:
        0 0 20px rgba(108, 92, 231, 0.6),
        0 0 40px rgba(108, 92, 231, 0.3),
        0 0 60px rgba(0, 210, 255, 0.15);
    border-color: var(--color-bg-primary);
}

/* Dot ring animation when activated */
.timeline-draw-item.active .timeline-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(108, 92, 231, 0.4);
    animation: dotRingExpand 1s ease-out forwards;
}

@keyframes dotRingExpand {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Timeline content — initially hidden */
.timeline-draw-item .timeline-content {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Even items slide from left */
.timeline-draw-item:nth-child(even) .timeline-content {
    transform: translateX(-40px);
}

/* Odd items slide from right */
.timeline-draw-item:nth-child(odd) .timeline-content {
    transform: translateX(40px);
}

/* Timeline content — activated */
.timeline-draw-item.active .timeline-content {
    opacity: 1;
    transform: translateX(0);
}

/* Year badge glow when activated */
.timeline-draw-item.active .timeline-year {
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
    animation: yearFlash 0.6s ease-out;
}

@keyframes yearFlash {
    0% {
        text-shadow: 0 0 40px rgba(0, 210, 255, 0.8), 0 0 80px rgba(108, 92, 231, 0.5);
        transform: scale(1.1);
    }

    100% {
        text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
        transform: scale(1);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .timeline-progress {
        left: 0;
        transform: none;
    }

    .timeline-draw-item:nth-child(even) .timeline-content,
    .timeline-draw-item:nth-child(odd) .timeline-content {
        transform: translateX(30px);
    }

    .timeline-draw-item.active .timeline-content {
        transform: translateX(0);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}