/* SVG Animations */
path[data-anim*="draw-path"],
line[data-anim*="draw-path"],
polyline[data-anim*="draw-path"],
polygon[data-anim*="draw-path"] {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: none; /* Reset any existing animations */
}

/* Animation for draw-path */
@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}
