
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Deadline Over</title>
  <style>
    body {
      margin: 0;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background: #f7f9fc;
      color: #333;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      text-align: center;
      padding: 2rem;
    }
    h1 {
      color: #d9534f;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }
    .contact {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 1rem;
      max-width: 400px;
      width: 100%;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin-bottom: 1rem;
    }
    .contact h2 {
      margin-top: 0;
      color: #337ab7;
    }
    .contact p {
      margin: 0.5rem 0;
    }
  </style>
</head>
<body>
  <h1>Deadline is Now Over</h1>
  <p>Thank you for your interest. If you have any queries, please contact:</p>

  <div class="contact">
    <h2>Ganesh Sonawane</h2>
    <p>SARC Core Team Member, Hostel and Department Affairs</p>
    <p><strong>Contact Number:</strong> +91 9975454641</p>
  </div>

  <div class="contact">
    <h2>Sai Sharanya Kinnera</h2>
    <p>SARC Core Team Member, Hostel and Department Affairs</p>
    <p><strong>Contact Number:</strong> +91 8309270649</p>
  </div>
</body>
</html>