.reflow-gradient {
    display: inline-block;
    color: #f0f0f0;
}

.dynamic-border {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
}

.card-hl {
    transition: all 0.15s ease;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-hl:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.dynamic-border-h {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
}

.reflow-gradient-animated {
    display: inline-block;
    color: #f0f0f0;
}

.card-mod {
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #000000;
}

.card-blur {
    background: #000000;
}

.gradient-text {
    color: #f0f0f0 !important;
    transition: all 0.15s ease;
}

.btn.btn-primary {
    border-radius: 0;
}

.btn-primary {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #999;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.15s ease;
    border-radius: 0;
}

.btn-primary:hover {
    background: #111;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.12);
}

.mobile-menu-items {
    background: #000000 !important;
}

.form-control {
    background-color: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f0f0f0;
    border-radius: 0;
}

.form-control::placeholder {
    color: #777;
}

.zt-timeline {
    position: relative;
    max-width: 940px;
    margin: 2.5rem auto 0;
    padding: 2rem 0 1rem;
}

.zt-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(-50%);
}

.zt-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.zt-left {
    padding-right: calc(50% + 2rem);
}

.zt-right {
    padding-left: calc(50% + 2rem);
}

.zt-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #000;
    border: 1px solid #888;
    box-sizing: border-box;
    border-radius: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 2;
    transition: transform 0.15s ease, box-shadow 0.15s ease;

    /* Glow Effect */
    box-shadow: 0 0 8px rgba(155, 155, 155, 0.8), 
                0 0 16px rgba(155, 155, 155, 0.4);
}

.zt-item:hover .zt-dot {
    transform: translate(-50%, -50%) scale(1.25);
}

.zt-item::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    z-index: 1;
}

.zt-left::after {
    left: calc(50% - 2rem);
    width: 2rem;
    background: rgba(255, 255, 255, 0.06);
}

.zt-right::after {
    left: 50%;
    width: 2rem;
    background: rgba(255, 255, 255, 0.06);
}

.zt-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #f0f0f0;
    padding: 0.85rem 1.1rem;
    border-radius: 0;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.15s ease;
    width: 100%;
    overflow: hidden;
}

.zt-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
}

.zt-right .zt-card {
    flex-direction: row-reverse;
    text-align: right;
}

.zt-img-wrap {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 0;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.zt-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.zt-card:hover .zt-img-wrap img {
    opacity: 1;
    transform: scale(1.05);
}

.zt-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.zt-name {
    font-size: 1.15rem;
    font-weight: 350;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: #f0f0f0;
}

.zt-dates {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.zt-element {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.zt-element img {
    height: 13px;
    width: 13px;
    opacity: 0.7;
}

.zt-right .zt-info {
    align-items: flex-end;
}

@media (max-width: 767.98px) {
    .zt-line {
        left: 24px;
    }

    .zt-left,
    .zt-right {
        padding-left: 56px;
        padding-right: 0;
    }

    .zt-dot {
        left: 24px;
    }

    .zt-left::after,
    .zt-right::after {
        left: 31px;
        width: 25px;
        background: rgba(255, 255, 255, 0.06);
    }

    .zt-right .zt-card {
        flex-direction: row;
        text-align: left;
    }

    .zt-right .zt-info {
        align-items: flex-start;
    }

    .zt-img-wrap {
        width: 72px;
        height: 72px;
    }

    .zt-item {
        margin-bottom: 1rem;
    }
}

.zt-dot-nav {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #000;
    border: 1px solid #888;
    box-sizing: border-box;
    transform: rotate(45deg);
    vertical-align: middle;
    margin-right: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    
    box-shadow: 0 0 4px rgba(155, 155, 155, 0.6), 
                0 0 8px rgba(155, 155, 155, 0.3);
}

button:hover .zt-dot-nav {
    transform: rotate(45deg) scale(1.25);
    border-color: #aaa;
    box-shadow: 0 0 6px rgba(200, 200, 200, 0.8), 
                0 0 12px rgba(200, 200, 200, 0.5);
}

button[aria-expanded="true"] .zt-dot-nav,
.zt-dot-nav.expanded {
    transform: rotate(225deg) scale(1.25);
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 
                0 0 16px rgba(255, 255, 255, 0.6);
}

.zt-dot-sel {
    display: block;
    width: 16px;
    height: 16px;
    background: #000000;
    border: 1px solid #888888;
    box-sizing: border-box;
    transform: rotate(45deg);
    margin: 0 auto; 
    flex-shrink: 0;
    box-shadow: 0 0 4px rgba(155, 155, 155, 0.6), 
                0 0 8px rgba(155, 155, 155, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.zt-dot-positive {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: rgba(113, 255, 160, 0.9);
    border: 1px solid rgb(113, 255, 160);
    box-sizing: border-box;
    transform: rotate(45deg);
    vertical-align: middle;
    margin-right: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    
    box-shadow: 0 0 3px rgba(8, 25, 14, 0.7), 
                0 0 4px rgba(113, 255, 160, 0.6);
}

.zt-dot-negative {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: rgba(221, 80, 80, 0.9);
    border: 1px solid rgb(221, 80, 80);
    box-sizing: border-box;
    transform: rotate(45deg);
    vertical-align: middle;
    margin-right: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    
    box-shadow: 0 0 3px rgba(52, 19, 19, 0.7), 
                0 0 4px rgba(221, 80, 80, 0.6);
}