body {
    font-family: poppins;
    background-color: #000000;
    margin: 0;
    padding: 0;
    color: white;
  }
  .logoimg {
    margin: 8px;
    width: 340px;
    height: auto;
  }
  
  .navbar {   border: 2px solid rgba(0, 119, 255, 0.6);
              border-radius: 14px;
              background-color: #333;
              color: white;
              display: flex;
              justify-content: space-between;
              align-items: center;
              padding: 4px 20px;
          }
  .navbar.logo {
              font-size: 40px;
              font-weight: bold;
          }
  .nav-links {
              list-style: none;
              display: flex;
          }
  .nav-links li {
              margin: 0 10px;
          }
  .nav-links a {
              text-decoration: none;
              color: white;
              padding: 10px;
          }
  .nav-links a:hover {
              background-color: #575757;
              border-radius: 5px;
          }
          /* Hamburger Icon */
  .menu-icon {
              font-size: 30px;
              cursor: pointer;
              display: none; /* By default hidden */
          }
          /* Mobile Menu (Hidden Initially) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%); /* Fully hidden by default */
    width: 90%;
    height: 100vh;
    background-color:black;
    z-index: 9999;
    flex-direction: column;
    padding: 20px;
    border-right: 2px solid rgba(0, 119, 255, 0.6);
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    display: flex; /* Always use flex so animation works */
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu.show {
    transform: translateX(0);  /* Slide in */
    visibility: visible;
    pointer-events: auto;
}


.mobile-menu a {
            
            font-size:22px;
            margin-top: 20px;
            border-radius:10px;
            display: block;
            color: white;
            padding: 12px;
            text-decoration: none;
        }
.mobile-menu a:hover {
            background-color: #575757;
        }
  
   /* Responsive Design */
   @media screen and (max-width: 768px) {
              .nav-links {
                  display: none;
              }
              .menu-icon {
                  display: block;
              }
          }
  /* Close Button */
  .close-btn {
      margin-top: 50px;
      display: block;
      text-align: right;
      padding: 10px;
      cursor: pointer;
      font-size: 20px;
      color: white;
  }
  .close-btn:hover {
      color: #ff4d4d;
  }
  
  /*ProfileCSS*/
  .profile-container {
      width: auto;
      margin: 10px;
      padding: 20px;
      background-color: #121d49;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      margin-top: 30px;
      border: 2px solid rgba(0, 119, 255, 0.6);
  }
  
  .profile-container img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 2px solid #ddd;
      display: block;
      margin: auto;
  }
 

  .personal h3 {
      color:#927b12;
      margin: 10px 0;
      font-size: 22px;
  }
  
  .personal p {
      font-size: 14px;
      color: #c36c18;
  }
  .personal span{
    color:rgba(0,119,255,0.6)
  }
  .personal{
    flex: 1;
    width: 900px;
    height: 220px;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid rgba(0, 119, 255, 0.6);
  }
  .gc-data{
    width: 380px;
    height: 220px;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid rgba(0, 119, 255, 0.6);
  }
  .gc-data span{
    color:#008fff;
  }

.all-data{
    border-radius: 10px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.head{
    color: #008fff;
    font-size:22px;
}



.profileopt{
    border: 2px solid rgba(0, 119, 255, 0.6);
    border-radius: 10px;
    margin: 10px;
    background-color: #121d49;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  #option{
border: 2px solid rgba(0, 119, 255, 0.6);
    border-radius: 8px;
    padding: 8px;
    width: 135px;
    margin-top: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 17px;
  }
  #option a{
    display: flex;
    justify-content: center;
    text-decoration: none;
    color:rgb(208, 206, 206);
  }
  #option button{
    width:100%;
    height: 100%;
    background-color: black;
    border: none;
    color:white;
    font-size: 20px;
    font-weight: bold;
  }
  #option button:hover{
    background-color: rgba(0, 119, 255, 0.6);
  }
  #option:hover{
    background-color: rgba(0, 119, 255, 0.6);
  }
  #message{
    margin:10px 40px;
    color: green;
  }
  marquee{
    color: rgb(159, 131, 61);
    margin-top: 100px;
  }
  @media (max-width: 480px) {
    marquee{
        color: rgb(159, 131, 61);
        margin-top: 40PX;
      }

}
