 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #000;
      color: #fff;
      padding: 15px;
    }

    /* Navbar */
    .navbar {
      display: flex;
      justify-content: center;
      background-color: #fff7cc;
      border-radius: 10px;
      padding: 10px;
      gap: 20px;
      margin-bottom: 15px;
    }
    .nav-btn {
      font-weight: bold;
      color: crimson;
      background: none;
      border: none;
      font-size: 18px;
      cursor: pointer;
    }

    /* Header section */
    .header {
      background-color: #fef9e7;
      color: #000;
      text-align: center;
      border-radius: 12px;
      padding: 15px;
      margin-bottom: 20px;
    }
    .subheading {
      color: darkblue;
      font-weight: bold;
    }
    .main-title {
      font-size: 32px;
      color: crimson;
      margin: 10px 0;
    }
    .description {
      font-size: 14px;
      text-align: justify;
      color: #222;
    }

    /* Khaiwal box */
    .khaiwal-box {
      background: #fff8e7;
      color: #222;
      padding: 20px;
      margin-top: 25px;
      border-radius: 10px;
      font-size: 16px;
      line-height: 1.6;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .khaiwal-box h2 {
      text-align: center;
      font-size: 22px;
      color: crimson;
      margin-bottom: 10px;
    }
    .khaiwal-box a {
      color: #25D366;
      font-weight: bold;
      text-decoration: none;
    }

    /* Record Section */
    .record-section {
      background: #fff;
      color: #222;
      padding: 20px;
      border-radius: 10px;
      margin-top: 20px;
    }
    .record-title {
      color: navy;
      font-size: 20px;
      text-align: center;
      margin-bottom: 10px;
    }
    .buttons {
      display: flex;
      gap: 10px;
      margin: 15px 0;
      flex-wrap: wrap;
    }
    .btn {
      padding: 10px;
      border-radius: 8px;
      font-weight: bold;
      text-align: center;
      flex: 1 1 45%;
    }
    .green {
      background-color: #28a745;
      color: white;
    }
    .red {
      background-color: crimson;
      color: white;
    }

    /* Floating Buttons */
    .floating-whatsapp,
    .floating-call {
      position: fixed;
      bottom: 20px;
      right: 20px;
      font-size: 22px;
      width: 50px;
      height: 50px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      z-index: 999;
    }
    .floating-whatsapp {
      background-color: #25D366;
      bottom: 80px;
    }
    .floating-call {
      background-color: #007bff;
    }

    /* Footer */
    footer {
      background-color: #222;
      color: #ccc;
      text-align: center;
      padding: 20px;
      border-radius: 10px;
      margin-top: 30px;
      font-size: 14px;
    }
    footer h3 {
      color: crimson;
      margin-bottom: 10px;
    }
    footer a {
      color: #25D366;
      text-decoration: none;
      font-weight: bold;
    }
    footer a:hover {
      text-decoration: underline;
    }


    .blinking-number {
  animation: blinkGlow 1s infinite alternate;
}

@keyframes blinkGlow {
  from {
    color: #25D366; /* green glow */
    text-shadow: 0 0 10px #25D366, 0 0 20px #25D366;
  }
  to {
    color: #fff;
    text-shadow: none;
  }
}
