<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Admission Confirmed</title>

    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            padding: 50px;
            background: #f7f7f7;
        }
        .container {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            max-width: 500px;
            margin: auto;
            box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
        }
        h1 {
            color: #28a745;
            font-size: 32px;
        }
        p {
            font-size: 18px;
            color: #333;
            margin-top: 15px;
        }
        .btn {
            display: inline-block;
            margin-top: 25px;
            padding: 12px 20px;
            background: #25D366;
            color: white;
            text-decoration: none;
            font-size: 18px;
            border-radius: 8px;
        }
        .btn:hover {
            background: #1da851;
        }
    </style>
</head>
<body>

    <div class="container">
        <h1>🎉 Admission Confirmed!</h1>

        <p>
            Thank you for completing your admission form.  
            Our team has received your details successfully.
        </p>

        <p>
            You will receive a **WhatsApp message shortly** with  
            your **Payment Scanner (QR)** and next steps.
        </p>

        <a href="https://api.whatsapp.com/send?phone=919881762072&text=Hi,+I+have+submitted+admission+form,+please+give+me+fees+payment+scanner+to+reserve+my+seat" class="btn">Pay on WhatsApp</a>
    </div>

...
</div>

<!-- Paste confetti code here -->
<script src="https://cdn.jsdelivr.net/npm/canvas-confetti@1.6.0/dist/confetti.browser.min.js"></script>
<script>
   // (paste the entire JS code here)
</script>





<!-- Confetti JS CDN -->
<script src="https://cdn.jsdelivr.net/npm/canvas-confetti@1.6.0/dist/confetti.browser.min.js"></script>

<script>
// Auto fire cracker when the page loads
window.onload = function () {
    // Burst 1
    confetti({
        particleCount: 200,
        startVelocity: 60,
        spread: 100,
        origin: { y: 0.6 }
    });

    // Burst 2 - slight delay
    setTimeout(() => {
        confetti({
            particleCount: 150,
            startVelocity: 70,
            spread: 120,
            origin: { x: 0.2, y: 0.7 }
        });
    }, 600);

    // Burst 3
    setTimeout(() => {
        confetti({
            particleCount: 150,
            startVelocity: 70,
            spread: 120,
            origin: { x: 0.8, y: 0.7 }
        });
    }, 900);
};
</script>

</body>
</html>



</body>
</html>
