/* Custom Gold Gradient Text Utility */
.text-gradient-gold {
    background: linear-gradient(to right, #FDE68A, #D4AF37, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button Glow Effect */
.btn-gold-glow:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Custom styling for the timeline line */
.timeline-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(to bottom, #D4AF37 0px, #D4AF37 10px, transparent 10px, transparent 20px);
    /* Dashed Gold Line */
    transform: translateX(-50%);
    opacity: 0.3;
}

/* Glowing effect for center dots */
.glow-dot {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}