@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "ubuntu", sans-serif;
    }
    body {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #000000;
    }
    .profile-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 460px;
      width: 100%;
      height: 80%;
      background: #737373;
      border-radius: 40px;
      padding: 25px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      position: relative;
    }
    .profile-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 36%;
      width: 100%;
      border-radius: 24px 24px 0 0;
      background-color: #737373;
    }
    .image {
      position: relative;
      height: 180px;
      width: 180px;
      border-radius: 50%;
      background-color: #ffae00;
      padding: 3px;
      margin-bottom: 16px;
    }
    .image .profile-img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #fff;
    }
    .profile-card .text-data {
      display: flex;
      flex-direction: column;
      align-items: center;
      color: #ffffff;
    }
    .text-data .name {
      font-size: 40px;
      font-weight: 500;
      margin-top: 1.5rem;
    }
    .text-data .job {
      font-size: 25px;
      font-weight: 600;
      color: #ffae00;
    }
    .profile-card .media-buttons {
      display: flex;
      align-items: center;
      margin-top: 40px;
    }
    .media-buttons .link {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 36px;
      height: 60px;
      width: 60px;
      border-radius: 50%;
      margin: 0 8px;
      background-color: #ffae00;
      text-decoration: none;
    }
    .profile-card .buttons {
      display: flex;
      align-items: center;
      margin-top: 40px;
    }
    .buttons .button {
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      border: none;
      border-radius: 24px;
      margin: 0 10px;
      padding: 8px 24px;
      background-color: #ffae00;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .buttons .button:hover {
      background-color: #747474;
    }

/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------  Pop-Up QR Scanner CSS Code  ------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "ubuntu", sans-serif;
}
section {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #e3f2fd;
}
button {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  padding: 14px 22px;
  border: none;
  background: #ffae00;
  border-radius: 26px;
  cursor: pointer;
}
button:hover {
  background-color: #7e7e7e;
}
.modal-box {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
section.active {
  display: none;
}
.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
}
section.active .overlay {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 380px;
  width: 100%;
  padding: 30px 20px;
  border-radius: 24px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%) scale(1.2);
}
section.active .modal-box {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.modal-box i {
  font-size: 70px;
  color: #4070f4;
}
.modal-box h2 {
  margin-top: 0.6px;
  font-size: 26px;
  font-weight: 500;
  color: #333;
}
.modal-box h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-align: center;
}
.modal-box .buttons {
  margin-top: 30px;
  font-weight: bolder;
  font-family: "ubuntu", sans-serif;
}
.modal-box button {
  font-size: 20px;
  padding: 6px 12px;
  margin: 0 10px;
  font-weight: bolder;
  font-family: "ubuntu", sans-serif;
}
.modal-box img.qr-image {
  width: 200px;   /* Size adjust karo as per your design */
  height: 200px;
  object-fit: contain;
}
section {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #e3f2fd;
  display: none; /* Add this line */
}
section.active {
  display: block; /* And this */
}

