.dt-container_97c8441c {
    --bg-start: #02142D;
    --bg-end: #041A35;
    --cyan: #00A8FF;
    --green: #00FF84;
    
    background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-end) 100%);
    min-height: 100vh;
    padding: 120px 20px;
    overflow: hidden;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
}

/* Background Effects */
.dt-bg-effects_97c8441c {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.dt-blob_97c8441c {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: dtFloat 20s infinite alternate ease-in-out;
}

.dt-blob-1_97c8441c { width: 600px; height: 600px; background: var(--cyan); top: -100px; left: -100px; }
.dt-blob-2_97c8441c { width: 500px; height: 500px; background: var(--green); bottom: -100px; right: -100px; animation-delay: -5s; }

@keyframes dtFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

/* Timeline Layout */
.dt-timeline-wrapper_97c8441c {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 50px 0;
}

.dt-line-wrapper_97c8441c {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px; /* Set by control */
}

.dt-line-bg_97c8441c, .dt-line-progress_97c8441c {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    border-left: 2px solid transparent; /* Width set by control */
}

.dt-line-bg_97c8441c { 
    border-left-color: rgba(0, 168, 255, 0.15); 
}

.dt-line-progress_97c8441c {
    border-left-color: var(--cyan);
    height: 0%;
    filter: drop-shadow(0 0 8px var(--cyan));
    transition: height 0.1s ease-out;
}

/* Items */
.dt-item_97c8441c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
    width: 100%;
    perspective: 1000px;
}
.dt-item_97c8441c:last-child { margin-bottom: 0; }

/* Nodes & Animations */
.dt-node_97c8441c {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 70px;
    height: 70px;
    background: #02142D;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--cyan);
    box-shadow: 0 0 0 rgba(0, 168, 255, 0);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    opacity: 0.5;
}

/* Node Active States */
[data-node-anim="grow"] .dt-item_97c8441c.is-active .dt-node_97c8441c { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
[data-node-anim="pulse"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtPulse 2s infinite; }
[data-node-anim="spin"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtSpin 1s forwards; }
[data-node-anim="bounce"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtBounce 1s forwards; }
[data-node-anim="shake"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtShake 0.8s both; }
[data-node-anim="glow-pulse"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; transform: translate(-50%, -50%) scale(1.1); animation: dtGlowPulse 2s infinite alternate; }
[data-node-anim="pop"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtPop 0.5s forwards; }
[data-node-anim="flip"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtFlip 1s forwards; }
[data-node-anim="swing"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtSwing 1s forwards; transform-origin: top center; }
[data-node-anim="rubberband"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtRubberBand 1s forwards; }
[data-node-anim="tada"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtTada 1s forwards; }
[data-node-anim="heartbeat"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtHeartbeat 1.5s infinite both; }
[data-node-anim="wobble"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtWobble 1s forwards; }
[data-node-anim="jello"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtJello 1s forwards; }
[data-node-anim="flash"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtFlash 1s forwards; }
[data-node-anim="zoom-in"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtZoomIn 0.8s forwards; }
[data-node-anim="zoom-out"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtZoomOut 0.8s forwards; }
[data-node-anim="slide-up"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtSlideUp 0.8s forwards; }
[data-node-anim="slide-down"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtSlideDown 0.8s forwards; }
[data-node-anim="slide-left"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtSlideLeft 0.8s forwards; }
[data-node-anim="slide-right"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtSlideRight 0.8s forwards; }
[data-node-anim="rotate-in"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtRotateIn 1s forwards; }
[data-node-anim="rotate-out"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtRotateOut 1s forwards; }
[data-node-anim="fade-in"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtFadeIn 1s forwards; }
[data-node-anim="fade-out"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtFadeOut 1s forwards; }
[data-node-anim="blur"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtBlur 1s forwards; }
[data-node-anim="color-shift"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtColorShift 3s infinite alternate; }
[data-node-anim="border-pulse"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtBorderPulse 2s infinite; }
[data-node-anim="shadow-pop"] .dt-item_97c8441c.is-active .dt-node_97c8441c { opacity: 1; animation: dtShadowPop 0.5s forwards; }


@keyframes dtPulse { 0% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 132, 0.7); } 70% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 0 20px rgba(0, 255, 132, 0); } 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 132, 0); } }
@keyframes dtSpin { 0% { transform: translate(-50%, -50%) rotate(0deg) scale(0.5); } 100% { transform: translate(-50%, -50%) rotate(360deg) scale(1.1); } }
@keyframes dtBounce { 0%, 20%, 50%, 80%, 100% { transform: translate(-50%, -50%) scale(1.1); } 40% { transform: translate(-50%, -80%) scale(1.1); } 60% { transform: translate(-50%, -65%) scale(1.1); } }
@keyframes dtShake { 10%, 90% { transform: translate(-52%, -50%) scale(1.1); } 20%, 80% { transform: translate(-48%, -50%) scale(1.1); } 30%, 50%, 70% { transform: translate(-54%, -50%) scale(1.1); } 40%, 60% { transform: translate(-46%, -50%) scale(1.1); } }
@keyframes dtGlowPulse { 0% { box-shadow: 0 0 20px rgba(0, 255, 132, 0.4); } 100% { box-shadow: 0 0 60px rgba(0, 255, 132, 0.8); } }
@keyframes dtPop { 0% { transform: translate(-50%, -50%) scale(0); } 80% { transform: translate(-50%, -50%) scale(1.2); } 100% { transform: translate(-50%, -50%) scale(1.1); } }
@keyframes dtFlip { 0% { transform: translate(-50%, -50%) perspective(400px) rotateY(-180deg); } 100% { transform: translate(-50%, -50%) perspective(400px) rotateY(0deg) scale(1.1); } }
@keyframes dtSwing { 20% { transform: translate(-50%, -50%) rotate(15deg); } 40% { transform: translate(-50%, -50%) rotate(-10deg); } 60% { transform: translate(-50%, -50%) rotate(5deg); } 80% { transform: translate(-50%, -50%) rotate(-5deg); } 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1.1); } }
@keyframes dtRubberBand { 0% { transform: translate(-50%, -50%) scale3d(1, 1, 1); } 30% { transform: translate(-50%, -50%) scale3d(1.25, 0.75, 1); } 40% { transform: translate(-50%, -50%) scale3d(0.75, 1.25, 1); } 50% { transform: translate(-50%, -50%) scale3d(1.15, 0.85, 1); } 65% { transform: translate(-50%, -50%) scale3d(0.95, 1.05, 1); } 75% { transform: translate(-50%, -50%) scale3d(1.05, 0.95, 1); } 100% { transform: translate(-50%, -50%) scale3d(1, 1, 1) scale(1.1); } }
@keyframes dtTada { 0% { transform: translate(-50%, -50%) scale3d(1, 1, 1); } 10%, 20% { transform: translate(-50%, -50%) scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); } 30%, 50%, 70%, 90% { transform: translate(-50%, -50%) scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); } 40%, 60%, 80% { transform: translate(-50%, -50%) scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); } 100% { transform: translate(-50%, -50%) scale3d(1, 1, 1) scale(1.1); } }
@keyframes dtHeartbeat { 0% { transform: translate(-50%, -50%) scale(1.1); } 14% { transform: translate(-50%, -50%) scale(1.3); } 28% { transform: translate(-50%, -50%) scale(1.1); } 42% { transform: translate(-50%, -50%) scale(1.3); } 70% { transform: translate(-50%, -50%) scale(1.1); } }
@keyframes dtWobble { 0% { transform: translate(-50%, -50%) translateX(0%); } 15% { transform: translate(-50%, -50%) translateX(-25%) rotate(-5deg); } 30% { transform: translate(-50%, -50%) translateX(20%) rotate(3deg); } 45% { transform: translate(-50%, -50%) translateX(-15%) rotate(-3deg); } 60% { transform: translate(-50%, -50%) translateX(10%) rotate(2deg); } 75% { transform: translate(-50%, -50%) translateX(-5%) rotate(-1deg); } 100% { transform: translate(-50%, -50%) translateX(0%); } }
@keyframes dtJello { 0%, 11%, 100% { transform: translate(-50%, -50%) translate3d(0, 0, 0); } 22% { transform: translate(-50%, -50%) skewX(-12.5deg) skewY(-12.5deg); } 33% { transform: translate(-50%, -50%) skewX(6.25deg) skewY(6.25deg); } 44% { transform: translate(-50%, -50%) skewX(-3.125deg) skewY(-3.125deg); } 55% { transform: translate(-50%, -50%) skewX(1.5625deg) skewY(1.5625deg); } 66% { transform: translate(-50%, -50%) skewX(-0.78125deg) skewY(-0.78125deg); } 77% { transform: translate(-50%, -50%) skewX(0.390625deg) skewY(0.390625deg); } 88% { transform: translate(-50%, -50%) skewX(-0.1953125deg) skewY(-0.1953125deg); } }
@keyframes dtFlash { 0%, 50%, 100% { opacity: 1; } 25%, 75% { opacity: 0; } }
@keyframes dtZoomIn { 0% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); } 50% { opacity: 1; } 100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; } }
@keyframes dtZoomOut { 0% { transform: translate(-50%, -50%) scale(1.5); } 100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; } }
@keyframes dtSlideUp { 0% { transform: translate(-50%, 50%); opacity: 0; } 100% { transform: translate(-50%, -50%); opacity: 1; } }
@keyframes dtSlideDown { 0% { transform: translate(-50%, -150%); opacity: 0; } 100% { transform: translate(-50%, -50%); opacity: 1; } }
@keyframes dtSlideLeft { 0% { transform: translate(50%, -50%); opacity: 0; } 100% { transform: translate(-50%, -50%); opacity: 1; } }
@keyframes dtSlideRight { 0% { transform: translate(-150%, -50%); opacity: 0; } 100% { transform: translate(-50%, -50%); opacity: 1; } }
@keyframes dtRotateIn { 0% { transform: translate(-50%, -50%) rotate(-200deg); opacity: 0; } 100% { transform: translate(-50%, -50%) rotate(0); opacity: 1; } }
@keyframes dtRotateOut { 0% { transform: translate(-50%, -50%) rotate(0); opacity: 1; } 100% { transform: translate(-50%, -50%) rotate(200deg); opacity: 0; } }
@keyframes dtFadeIn { 0% { opacity: 0; } 100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); } }
@keyframes dtFadeOut { 0% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); } 100% { opacity: 0; } }
@keyframes dtBlur { 0% { filter: blur(10px); opacity: 0; } 100% { filter: blur(0); opacity: 1; transform: translate(-50%, -50%) scale(1.1); } }
@keyframes dtColorShift { 0% { border-color: var(--cyan); color: var(--cyan); } 100% { border-color: var(--green); color: var(--green); } }
@keyframes dtBorderPulse { 0% { border-width: 2px; } 50% { border-width: 10px; } 100% { border-width: 2px; } }
@keyframes dtShadowPop { 0% { box-shadow: 0 0 0 rgba(0,0,0,0); } 100% { box-shadow: 8px 8px 0 var(--cyan); transform: translate(-54%, -54%) scale(1.1); } }

/* Item Entrance Animations */
.dt-content-col_97c8441c, .dt-image-col_97c8441c {
    width: 45%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dt-layout-left_97c8441c .dt-content-col_97c8441c { order: 2; }
.dt-layout-left_97c8441c .dt-image-col_97c8441c { order: 1; }
.dt-layout-right_97c8441c .dt-content-col_97c8441c { order: 1; text-align: right; }
.dt-layout-right_97c8441c .dt-image-col_97c8441c { order: 2; }

/* Entrance Styles Initial States */
.anim-fade-up .dt-content-col_97c8441c, .anim-fade-up .dt-image-col_97c8441c { transform: translateY(100px); }
.anim-fade-in .dt-content-col_97c8441c, .anim-fade-in .dt-image-col_97c8441c { transform: scale(0.95); }
.anim-zoom-in .dt-content-col_97c8441c, .anim-zoom-in .dt-image-col_97c8441c { transform: scale(0.5); }
.anim-slide-left .dt-content-col_97c8441c, .anim-slide-left .dt-image-col_97c8441c { transform: translateX(100px); }
.anim-slide-right .dt-content-col_97c8441c, .anim-slide-right .dt-image-col_97c8441c { transform: translateX(-100px); }
.anim-flip-x .dt-content-col_97c8441c, .anim-flip-x .dt-image-col_97c8441c { transform: perspective(400px) rotateX(90deg); }
.anim-flip-y .dt-content-col_97c8441c, .anim-flip-y .dt-image-col_97c8441c { transform: perspective(400px) rotateY(90deg); }

/* Entrance Active States */
.dt-item_97c8441c.is-visible .dt-content-col_97c8441c,
.dt-item_97c8441c.is-visible .dt-image-col_97c8441c {
    opacity: 1;
    transform: translate(0) scale(1) rotate(0) rotateX(0) rotateY(0);
}

/* Specific entrance animations requiring keyframes */
.dt-item_97c8441c.anim-bounce-in.is-visible .dt-image-col_97c8441c { animation: bounceIn 1s cubic-bezier(0.28, 0.84, 0.42, 1) forwards; }
.dt-item_97c8441c.anim-rotate-in.is-visible .dt-image-col_97c8441c { animation: rotateIn 1s ease-out forwards; }
.dt-item_97c8441c.anim-roll-in.is-visible .dt-image-col_97c8441c { animation: rollIn 1s ease-out forwards; }

@keyframes bounceIn { 0% { opacity: 0; transform: scale(0.3); } 50% { opacity: 1; transform: scale(1.05); } 70% { transform: scale(0.9); } 100% { opacity: 1; transform: scale(1); } }
@keyframes rotateIn { 0% { opacity: 0; transform: rotate(-200deg); } 100% { opacity: 1; transform: rotate(0); } }
@keyframes rollIn { 0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); } 100% { opacity: 1; transform: translateX(0) rotate(0); } }


/* Cards & Styling */
.dt-text-card_97c8441c { padding: 20px 0; }
.dt-image-card_97c8441c {
    border-radius: 30px;
    overflow: hidden;
    height: 320px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
}

.dt-img_97c8441c {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card Hover Effects based on Control */
[data-card-hover="lift"] .dt-image-card_97c8441c:hover { transform: translateY(-15px); box-shadow: 0 30px 70px rgba(0,0,0,0.7); }
[data-card-hover="scale"] .dt-image-card_97c8441c:hover { transform: scale(1.05); box-shadow: 0 30px 70px rgba(0,0,0,0.7); }
[data-card-hover="glow"] .dt-image-card_97c8441c:hover { border-color: var(--cyan); box-shadow: 0 0 30px rgba(0, 168, 255, 0.4); }
[data-card-hover="tilt"] .dt-image-card_97c8441c:hover { transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale3d(1.02, 1.02, 1.02); }
[data-card-hover="wobble"] .dt-image-card_97c8441c:hover { animation: wobbleHover 1s ease-in-out infinite alternate; }
[data-card-hover="jelly"] .dt-image-card_97c8441c:hover { animation: jellyHover 0.8s ease; }

.dt-image-card_97c8441c:hover .dt-img_97c8441c { transform: scale(1.1); }

@keyframes wobbleHover { 0% { transform: rotate(0deg); } 25% { transform: rotate(-2deg); } 75% { transform: rotate(2deg); } 100% { transform: rotate(0deg); } }
@keyframes jellyHover { 0%, 100% { transform: scale(1, 1); } 25% { transform: scale(1.05, 0.95); } 50% { transform: scale(0.95, 1.05); } 75% { transform: scale(1.02, 0.98); } }


/* Typography & Badges */
.dt-badge_97c8441c {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid currentColor;
    background: rgba(0,0,0,0.2);
}
.dt-layout-right_97c8441c .dt-badge_97c8441c { margin-left: auto; }
.dt-badge-blue_97c8441c { color: var(--cyan); }
.dt-badge-green_97c8441c { color: var(--green); }
.dt-badge-purple_97c8441c { color: #A800FF; }
.dt-badge-orange_97c8441c { color: #FF8400; }
.dt-badge-custom_97c8441c { /* Color applied via Elementor custom control */ }

.dt-title_97c8441c { font-size: 46px; font-weight: 700; margin: 0 0 20px 0; line-height: 1.2; }
.dt-desc_97c8441c { font-size: 18px; line-height: 1.9; margin: 0; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .dt-line-wrapper_97c8441c { left: 35px; }
    
    .dt-node_97c8441c {
        left: 35px;
        width: 50px;
        height: 50px;
        font-size: 14px;
        transform: translate(-50%, -50%) scale(0.5);
    }

    /* Important: Override complex node animations on mobile if they offset positioning */
    [data-node-anim] .dt-item_97c8441c.is-active .dt-node_97c8441c { 
        transform: translate(-50%, -50%) scale(1.1); 
        animation: none; /* Disable complex animations on mobile to maintain layout */
        box-shadow: 0 0 20px rgba(0, 168, 255, 0.4);
    }
    
    .dt-item_97c8441c {
        flex-direction: column !important;
        padding-left: 90px; /* Offset for line */
        margin-bottom: 80px;
        align-items: flex-start;
    }
    
    .dt-content-col_97c8441c, .dt-image-col_97c8441c {
        width: 100%;
        order: unset !important;
        text-align: left !important;
        transform: translateY(50px) scale(0.95) !important;
        opacity: 0; /* Reset opacity for mobile scroll */
    }
    
    .dt-item_97c8441c.is-visible .dt-content-col_97c8441c,
    .dt-item_97c8441c.is-visible .dt-image-col_97c8441c {
        transform: translate(0) scale(1) !important;
        opacity: 1;
    }

    .dt-image-card_97c8441c {
        height: auto; /* Allow image to dictate height on mobile */
        min-height: 250px; /* Minimum height if no image */
        width: 100%; /* Ensure full width available */
        margin-bottom: 30px;
    }
    
    .dt-img_97c8441c {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .dt-layout-right_97c8441c .dt-badge_97c8441c { margin-left: 0; }
    .dt-image-col_97c8441c { margin-top: 30px; width: 100%; } /* Ensure column is 100% width */
    .dt-title_97c8441c { font-size: 32px; }
}
