
    

    .container {
      max-width: 600px;
      margin: 2rem auto;
      background: #ffffff;
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .container h2 {
      text-align: center;
      font-size: 2rem;
      color: #4f46e5;
      margin-bottom: 1rem;
    }

    .payout-section p {
      font-size: 1.2rem;
      font-weight: 500;
      text-align: center;
      margin-bottom: 2rem;
    }

    .progress-bar-wrapper {
      margin-bottom: 2rem;
    }

    .progress-label {
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .progress-bar {
      width: 100%;
      height: 18px;
      background-color: #e5e7eb;
      border-radius: 10px;
      overflow: hidden;
    }

    .progress-bar-inner {
      height: 100%;
      width: 0%;
      background-color: #10b981;
      transition: width 0.5s;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    label {
      font-weight: 600;
      margin-bottom: 0.5rem;
      display: block;
      color: #374151;
    }

    .input-icon {
      position: relative;
    }

    .input-icon i {
      position: absolute;
      top: 50%;
      left: 15px;
      transform: translateY(-50%);
      color: #9ca3af;
    }

    .input-icon input {
      width: 100%;
      padding: 0.9rem 1rem;
      padding-left: 2.5rem;
      font-size: 1rem;
      border-radius: 12px;
      border: 1px solid #d1d5db;
      transition: all 0.3s;
    }

    .input-icon input:focus {
      border-color: #6366f1;
      box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
      outline: none;
    }

    button {
      padding: 1rem;
      background-color: #4f46e5;
      color: white;
      font-size: 1.1rem;
      font-weight: 600;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    button:hover {
      background-color: #4338ca;
    }

    #payoutMessage {
      margin-top: 1rem;
      text-align: center;
      font-weight: 600;
      color: #10b981;
    }

    .testimonial {
      text-align: center;
      margin-top: 2.5rem;
    }

    .testimonial p {
      font-size: 1rem;
      font-weight: 600;
      color: #4b5563;
    }

    .testimonial img {
      margin-top: 1rem;
      width: 80%;
      max-width: 240px;
    }

    /* Updated dropdown styles */
    .select-wrapper {
      position: relative;
      width: 100%;
    }

    select#method {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-color: #f3f4f6;
      border: 1px solid #d1d5db;
      border-radius: 12px;
      padding: 0.9rem 1rem;
      padding-right: 3rem;
      font-size: 1rem;
      color: #111827;
      font-weight: 500;
      transition: border 0.3s, box-shadow 0.3s;
    }

    select#method:hover {
      background-color: #e5e7eb;
    }

    select#method:focus {
      outline: none;
      border-color: #6366f1;
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    }

    .select-wrapper::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 1rem;
      transform: translateY(-50%);
      width: 1rem;
      height: 1rem;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9' /%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      pointer-events: none;
    }

    @media (max-width: 640px) {
      .container {
        padding: 1.5rem;
        margin: 1rem;
      }
    }

    /* Styles for the page remain the same, add styles for the custom alert modal */

    /* Alert Modal */
    .alert-modal {
      display: none; /* Hidden by default */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .alert-modal-content {
      background-color: #fff;
      padding: 2rem;
      border-radius: 10px;
      text-align: center;
      max-width: 400px;
      width: 80%;
      animation: slideIn 0.3s ease-in-out;
    }

    .alert-modal-header {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .alert-modal-body {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }

    .alert-modal button {
      padding: 0.8rem 1.5rem;
      background-color: #10b981;
      color: white;
      font-size: 1.1rem;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .alert-modal button:hover {
      background-color: #0f9a6f;
    }

    /* Slide-in animation */
    @keyframes slideIn {
      0% {
        transform: translateY(-50px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }
        * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f7f7f7;
      line-height: 1.6;
    }

    nav {
      background-color: #111;
      color: white;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

   .logo {
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.logo-main {
  color: #111;
}

.logo-accent {
  color: #00C851;
}


    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-links a img {
      height: 20px;
    }

.menu-toggle {
  display: block;
  font-size: 40px;
  cursor: pointer;
  color: white;
  position: fixed;
  top: 15px;
  right: 30px;
  z-index: 1100;
}

/* Adjust size for smaller screens */
@media (max-width: 768px) {
  .menu-toggle {
    font-size: 40px;
  }
      .nav-links {
        flex-direction: column;
        background-color: #111;
        width: 75%;
        position: fixed;
        font-size: 25px;
        top: 70px;
        left: -100%;
        height: 100%;
        gap:2px;
        padding-top: 0px;
      }

      .nav-links.show {
        left: 0;
      }

      .nav-links a {
        padding: 5px 5px;
        border-top: 1px solid #333;
      }
    }

    .hero {
      background: linear-gradient(to right, #005bea, #00c6fb);
      color: white;
      padding: 30px 0px;
      text-align: center;
      font-size: 25px;
    }
    h1 {
  font-size: 40px;
  font-weight: bold;
  color: white;
  text-align: center;
  margin: 0px 0;
  font-family: 'Arial', sans-serif;
text-transform: uppercase;
}


    footer {
      background-color: #1a202c;
      color: white;
      padding-top: 2.5rem;
      padding-bottom: 1.25rem;
      margin-top: 2.5rem;
    }

    .footer-container {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      padding: 0 1rem;
    }

    @media (min-width: 768px) {
      .footer-container {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    footer h4 {
      font-weight: bold;
      margin-bottom: 0.75rem;
    }

    footer ul {
      list-style: none;
      padding: 0;
    }

    footer ul li a {
      color: white;
      text-decoration: none;
      font-size: 1.3rem;
    }

    footer ul li a:hover {
      text-decoration: underline;
    }

    footer p {
      font-size: 1.3rem;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 2rem;
      color: #a0aec0;
      font-size: 0.875rem;
      border-top: 1px solid #2d3748;
      padding-top: 1rem;
    }
    @media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
/* Profile Section Container */
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #1a1a1a; /* Dark background for contrast */
  color: #ffffff;
  border-bottom: 1px solid #333;
}

/* Profile Image */
.profile-section img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Username Styling */
.profile-section h3 {
  margin: 5px 0;
  font-size: 20px;
  font-weight: 600;
}

/* Email Styling */
.profile-section p {
  font-size: 20px;
  color: #ccc;
}
/* Default: Mobile view - show everything */
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #1a1a1a;
  color: #ffffff;
}

.profile-section img,
.profile-section h3,
.profile-section p {
  display: block;
}

.profile-section img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.profile-section h3 {
  margin: 5px 0;
  font-size: 18px;
}

.profile-section p {
  font-size: 14px;
  color: #ccc;
}

/* Desktop: Show only email */
@media (min-width: 768px) {
  .profile-section img,
  .profile-section h3 {
    display: none;
  }

  .profile-section p {
    font-size: 16px;
  }
}

  