
  /* Reset some default styles */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Roboto', Arial, sans-serif;
    background-image: url('../img/bg_light.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  /* Main container */
  .container {
    max-width: 700px;
    width: 100%;
    background: rgba(241, 241, 241, 0.8);
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
  }

  /* Header section */
  header {
    text-align: center;
    margin-bottom: 20px;
  }

  .logo {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    border-radius: 50%;
  }

  h2, h3 {
    margin-bottom: 10px;
    color: #007bff;
  }

  marquee {
    font-weight: bold;
    color: #007bff;
    margin-bottom: 15px;
  }

  strong {
    display: block;
    margin-bottom: 3px;
  }

  /* Language selector styling */
  #languageSelect {
    margin: 10px;
    top: 5px;
    display: block;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 1em;
  }

  /* Navigation buttons */
  .navbar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
  }

  .navbar button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #5cb85c;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }

  .navbar button:hover {
    background-color: #4cae4c;
    transform: scale(1.05);
  }

  /* Modal overlay */
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  /* Modal content box */
  .modal-content {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    position: relative;
  }

  /* Close button */
  .close {
    position: absolute;
    top: 10px; right: 10px;
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9em;
  }

  /* Form styles */
  form {
    display: flex;
    flex-direction: column;
  }

  input[type=text], select {
    margin: 8px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  button[type=submit] {
    margin-top: 12px;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
  }

  button[type=submit]:hover {
    background-color: #0056b3;
  }

  /* Loader images inside buttons */
  #paymentLoader, #loginLoader {
    display: none;
    width: 20px;
    height: 20px;
    margin-left: 10px;
  }

  /* Messages and error styles */
  #amountMessage {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
  }

  #successMessage {
    display: none;
    margin-top: 15px;
    color: green;
  }

  .error {
    display: none;
    font-size: 0.85em;
    color: red;
    margin-top: -8px;
  }

  /* Footer styles */
  footer {
    margin-top: 20px;
    padding: 10px 0;
    background-color: gray;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Footer buttons */
  .footer-buttons {
    display: flex;
    gap: 10px;
  }

  .footer-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .footer-buttons button:hover {
    background-color: #0056b3;
  }

  /* Social icons container */
  .social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
  }

  /* Individual social icon styles */
  .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 1.2em;
    transition: all 0.3s;
  }

  .social-icons a.youtube { background-color: #FF0000; }
  .social-icons a.tiktok { background-color: #000; }
  .social-icons a.instagram { background-color: #E1306C; }
  .social-icons a.twitter { background-color: #1DA1F2; }
  .social-icons a.whatsapp { background-color: #25D366; }

  .social-icons a:hover {
    opacity: 0.8;
    transform: scale(1.1);
  }
 
    .container {
        padding: 50px;
        width: 100%;
        border-radius: 5px;
        border: 1px solid blue;
        text-align: center;
    }
    .payment-info {
        border: 1px solid #ddd;
        padding: 35px;
        border-radius: 5px;
        margin: 20px auto;
        background-color: #f9f9f9;
        max-width: 900px;
        width: 100%;
    }
    .info-item {
        margin-bottom: 10px;
        font-size: 16px;
    }
    .info-item strong {
        color: #333;
    }
    .action-button {
        padding: 80px 70px;
        background-color: #28a745;
        color: white;
        border: none;
        width: 500px;
        height: 150px;
        border-radius: 5px;
        cursor: pointer;
        text-align: center;
        display: inline-block;
        margin-top: 20px;
        font-size: 40px;
    }
    .action-button:hover {
        background-color: #218838;
    }
    

