<script>  // Wait for 3 seconds, then trigger download  setTimeout(function() {    const pdfUrl = "https://cdn.prod.website-files.com/688338d47e3c2428091f4bc8/6911c140441c26c17131a9df_Sapphire_CXO%20Hiring%20checklist_2025.pdf"; // Replace with your actual PDF URL    const link = document.createElement('a');    link.href = pdfUrl;    link.download = 'Sapphire_CXO_Hiring_checklist_2025.pdf';    document.body.appendChild(link);    link.click();    document.body.removeChild(link);  }, 3000); // 3000 = 3 seconds delay</script>