body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:#00cfd3;
    color: black;
    justify-items: center;
  
  }

  header {
    background-image: url("");
    color: black;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-repeat: repeat;
    background-color: #00cfd3;
    background-size: cover;
    opacity: 50;
    position: fixed;
    width: 100%;
    z-index: 1000;
    Top: 0;
  }

  header img.logo {
    height: 80px;
  }

  header nav a {
    color: black;
    text-decoration: none;
    margin:  15px;
    gap: 15px; /* Space between nav items */
    transition: font-size 0.3s, background-color 0.3s;
    font-size: 14px; /* Larger font for bigger screens */ 
    display: flex;                
  }

  /* Adjust font size for smaller screens */
  @media (max-width: 768px) {
          nav a {
              font-size: 12px; /* Smaller font for small screens */
              gap: 10px

          }

        }
  
   /* Navigation Bar */
  .navbar {
          display: flex;
          justify-content: space-between;
          align-items: center;
          background-color: #00cfd3;
          padding: 10px 20px;
          color: black;
      }

  /* Menu Button for Small Screens */
  .menu-btn {
          display: none;
          font-size: 24px;
          background: none;
          color: black;
          border: none;
          cursor: pointer;
          margin-right: 20px
          
      }

  /* Navigation List */
  .nav-list {
          display: flex;
          list-style: none;
          margin: 10;
          padding: 0;
      }

  .nav-list li {
          margin: 0 10px;
      }  
      
  .nav-list a {
          color: black;
          text-decoration: none;
          padding: 5px 10px;
          border-radius: 5px;
          transition: background 0.3s ease;
      }

  .nav-list a:hover {
          background-color: #9932cc;
      }

  /* Responsive Design */
  @media (max-width: 768px) {
          .menu-btn {
              display: block;
          }

          .nav-list {
              display: none;
              flex-direction: column;
              background-color: #00cfd3;
              position: absolute;
              top: 50px;
              right: 20px;
              width: 150px;
              border-radius: 5px;
          }

          .nav-list li {
              margin: 10px 0;
              text-align: center;
          }

          .nav-list.active {
              display: flex;
          }

              
          }

    
  .hero {
    background: #00cfd3;
    color: black;
    text-align: center;
    padding: 200px 20px;
    position: relative;
    opacity: 0.8;      
  }

  .hero h1 {
    font-size: 2.5em;
    margin: 0;
    color: black;
  }

  .hero p {
    font-size: 1.2em;
    margin: 20px 0;
    color: black;
  }

  .hero button {
    background: transparent;
    border: 3px solid black;
    padding: 10px 5px;
    color: black;
    cursor: pointer;
    border-radius: 30px;
    transition: background 0.3s;
    width: 100%;
    max-width: 110px;
    min-width: 110px;
  }

  .hero button:hover {
    background: #9932cc;
  }

  .section {
    padding: 20px 10px;
    text-align: center;
    background: #00cfd3;
    justify-items: center;
  }

  .converter input, .converter button {
    padding: 10px;
    font-size: 1em;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid black;
  }

  .transfer-form {
    display: none;
    padding: 120px 20px;
    text-align: center;
    background: #00cfd3;
  }

  .transfer-form input, .transfer-form select {
    padding: 10px;
    font-size: 1em;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid black;
    
  }

  .transfer-form2 {
    display: none;
    padding: 120px 20px;
    text-align: center;
    background: #00cfd3;
    
  }

  .transfer-form2 input, .transfer-form2 select {
    padding: 10px;
    font-size: 1em;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid black;
  }

  .transfer-form3 {
    display: none;
    padding: 120px 20px;
    text-align: center;
    background: #00cfd3;
  }

  .transfer-form3 input, .transfer-form3 select {
    padding: 10px;
    font-size: 1em;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid black;
  }

  .transfer-form4 {
    display: none;
    padding: 120px 20px;
    text-align: center;
    background: #00cfd3;
  }

  .transfer-form4 input, .transfer-form4 select {
    padding: 10px;
    font-size: 1em;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid black;
  }

  .transactionDetails {
    display: none;
    padding: 50px 20px;
    text-align: center;
    background: #00cfd3;
  }

  .transactionDetails  h3, .transactionDetails  p {
    padding: 10px;
    font-size: 1em;
    margin: 10px;
    border-radius: 5px;
    border: 0px;
  }

  button {
    background: transparent;
    border: 3px solid black;
    color: black;
    padding: 10px;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
  }


  /* How It Works */
  .how-to {
    padding: 50px 20px;
    text-align: center;
  }

  .how-to h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
  }

  .steps {
    display: flex; /* Flexbox for horizontal layout */
    justify-content: center;
    gap: 20px; /* Add space between divs */
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
  }

  .step {
    background-color: 0;
    padding: 20px;
    width: 200px;
    border: 1px solid black;
    border-radius: 8px;

    flex: 1; /* Flexible width */
    min-width: 150px; /* Ensure divs don't get too small */
    text-align: center;
          
  }

  /* Responsive layout for smaller screens */
  @media (max-width: 768px) {
          section {
              flex-direction: column; /* Stack divs vertically */
          }
      }

  .step h3 {
    color: var(--accent-color);
    font-size: 1.2em;
  }

  .step p {
    font-size: 0.9em;
    color: black;
  }

  .transferRequest {
    display: none;
    padding: 50px 20px;
    text-align: center;
    background: #00cfd3;
  }

  .container {
    padding: 0px 20px;
    text-align: center;
    background: #00cfd3;
    position: relative;

  }

  .container input, .container select {
    padding: 10px;
    font-size: 1em;
    margin: 0px;
    border-radius: 5px;
    border: 1px solid black;
    max-width: 100%;
    max-width: 100px;
    min-width: 100px;
    text-align: center;
  }

  .transferRequest {
    padding: 100px 20px;
    text-align: center;
    background: #00cfd3;
    display: none;
  }

  .transferRequest input, .transferRequest select {
    padding: 10px;
    font-size: 1em;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid black;
  }

  .currency-container { display: flex; align-items: center;}
  .currency-icon { width: 50px; margin-right: 10px; margin-bottom: 0px;}

  /* Drawer styles */
  .drawer {
    position: fixed;
    right: -800px; /* Hidden by default */
    top: 0;
    height: 100%;
    width: 150px;
    background-color: #00cfd3;;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    padding: 130px 50px;
    transition: right 0.3s ease-in-out;
  
  }

  .drawer.open {
    right: 0; /* Show the drawer */
  }

  /* Drawer close button */
  .drawer button {
    display: block;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #00cfd3;
    color: black;
    border: 1px solid black;
    border-radius: 30px;
    cursor: pointer;
  }

  .drawer button:hover {
    background-color: #9932cc;;
  }

  footer {
          background-color: #00cfd3;
          color: black;
          padding: 50px 10px;
          text-align: center;
      }

      footer h3 {
          margin-top: 0;
      }

      footer a {
          color: black;
          text-decoration: none;
          transition: color 0.3s ease;
      }

      footer a:hover {
          color: #9932cc;
      }

      .social-icons a {
          display: inline-block;
          margin: 0 5px;
          font-size: 24px;
      }

      .social-icons img {
          width: 24px;
          height: 24px;
      }

      .contact-buttons button {
          background-color: #25D366; /* WhatsApp green */
          color: black;
          border: none;
          padding: 10px 20px;
          margin: 10px 5px;
          border-radius: 30px; /* Fully rounded ends */
          cursor: pointer;
          transition: background-color 0.3s ease;
      }

      .contact-buttons button.email-button {
          background-color: #00cfd3; /* Email button blue */
          color: black;
          border: solid black;
          padding: 10px 20px;
          margin: 10px 5px;
          border-radius: 30px; /* Fully rounded ends */
         
      }

      .contact-buttons button:hover {
          opacity: 0.9;
          color: #9932cc;
      }

      /* Modal Styles (for contact form) */
      .modal {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: #00cfd3;
          justify-content: center;
          align-items: center;
      }

      .modal-content {
          background: #00cfd3;
          padding: 20px;
          border-radius: 5px;
          max-width: 400px;
          width: 90%;
          text-align: left;
      }

      .modal-content h4 {
          margin-top: 0;
      }

      .modal-content input,
      .modal-content textarea {
          width: 100%;
          padding: 10px;
          margin: 10px 0px;
          border: 1px solid black;
          border-radius: 5px;
      }

      .modal-content button {
          background-color: #00cfd3;
          color: black;
          border: 2px block black;
          padding: 10px 15px;
          border-radius: 30px;
          cursor: pointer;
      }

      .modal-content button.close {
          background-color: #00cfd3;
          color: black;
          border: 2px block black;
          padding: 10px 15px;
          border-radius: 30px;
          cursor: pointer;
          margin-bottom: 20px;
      }

      .login-form,
      .createAccount-form {
          background: #00cfd3;
          padding: 70px 20px;
          border-radius: 10px;
          /*box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
          /*border-color:1px block black;*/
          text-align: center;
          width: 100%;
          align-items: center;
          
      }

      h1 {
          margin-bottom: 20px;
          color: black;
      }

      .form-group {
          margin-bottom: 15px;
      }

      .form-group input {
          width: 80%;
          max-width: 400px;
          padding: 10px;
          font-size: 16px;
          border: 1px solid black;
          border-radius: 5px;
          margin: 10px;
      }

      .form-group button {
          width: 100%;
          max-width:100px;
          min-width: 100px;
          padding: 10px;
          font-size: 16px;
          background-color: #00cfd3;
          color: black;
          border: 2px block black;;
          border-radius: 30px;
          cursor: pointer;
      }

      .form-group button:hover {
          background-color: #9932cc;
      }

      .link {
          margin-top: 10px;
          display: block;
          color: black;
          text-decoration: none;
      }

      .link:hover {
          text-decoration: underline;
      }