body {
  font-family: Arial, sans-serif;
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* min-height: 100vh;
  margin-left: 30px; */
  height: 100vh;
  margin: 0;
  padding: 0;
}

/*  navbar  */

    .navbar {
      position: sticky;
      top: 0;
      left: 0;
      width: 100%;
      background: #ffffff;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      z-index: 1000;
    }

    .navbar-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      height: 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .navbar-logo {
      font-size: 20px;
      font-weight: bold;
      color: #333;
      font-family: 'Inter', Arial, sans-serif;
    }

    .navbar-menu {
      list-style: none;
      display: flex;
      gap: 60px;  
      margin: 0;
      padding: 0;
    }

    .navbar-menu li a {
      text-decoration: none;
      font-size: 16px;
      color: #555;
      font-family: 'Inter', Arial, sans-serif;
      transition: color 0.3s ease;
    }

    .navbar-menu li a:hover {
      color: #3a93e6;
    }

    /* ===== HAMBURGER MENU ===== */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle span {
      height: 3px;
      width: 25px;
      background: #333;
      margin: 4px 0;
      transition: 0.3s;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {

   
      .navbar-container {
        flex-direction: row;
        height: auto;
      }

      .navbar-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none; /* hidden by default */
      }

      .navbar-menu.active {
        display: flex; /* show when toggled */
      }

      .menu-toggle {
        display: flex;
      }
   
    }

/* MAIN CONTAINER */
#main {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%; */
  max-width: 576px; 
   /* padding: 40px; */
  /* min-height: 666px; */
  height: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-wrap: wrap;
  /* align-content: flex-start; */
  padding: 20px;
  background: #fff;
  border-radius: 8px;
}

/* INPUTS */
#input-container {
  margin-top: 27px;
  width: 576px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

#key1 {
  width: 100%;
  height: 40px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0,0.27);
  background: url("./items/Vector.png") no-repeat 12px center;
  background-size: 16px 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  padding-left: 50px;
}
/* #key1:not(:placeholder-shown) {
  background-image: none;
} */

#key1::placeholder {
  /* padding-left: 27.5px; */
  font-size: 1rem;
  color: rgba(0, 0, 0,0.56);
}

/* BUTTON */
#getData {
  font-size: 1rem;
  padding: 10px 20px;
  background-color: #ffffff;
  color: rgba(0, 0, 0,0.56);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0,0.27);
  display: flex;
  margin-left: auto;
}

/* FILES */
#files {
  width: 100%;
  margin-top: 40px;
  text-align: center;
  /* visibility: hidden; */
  display: none;
}

#image {
  width: 132px;
  max-width: 50%;
  height: auto;
}

#name {
  margin-top: 25px;
  font-size: clamp(18px, 2vw, 24px);
}

#size_and_type {
  font-size: clamp(14px, 1.5vw, 18px);
  margin-top: 9px;
}

#note {
  margin-top: 40px;
  font-size: clamp(12px, 1.3vw, 14px);
  font-family: 'Inter', sans-serif;
  color: rgb(86, 93, 109);
  line-height: 1.6;
  width:448px;
  height: 46px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

#Download {
  margin-top: 51px;
  display: flex;
  margin-inline: auto;
  width: 100%;
  max-width: 448px;
  height: 45px;
  justify-content: center;
  align-items: center;
  background-color: rgb(58, 147, 230);
  border: none;
  color: white;
  border-radius: 6px;
  font-size: 1rem;
}

/* STATUS POPUP */
.status {
  position: absolute;
  top: 270px;
  height: auto;
  min-height: 100px;
  width: 80%;
  max-width: 200px;
  background-color: #fff;
  border: rgba(0, 0, 0, 0.3) 2px solid;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.status_active {
  opacity: 1;
  visibility: visible;
}

#note_key {
 display: flex;
 justify-content: center;
 align-items: center;
 margin-top: 50px;
}



/* FOOTER */
.footer {
  background: #f8f9fa;
  padding: 40px 20px 20px;
  border-top: 1px solid #ddd;
  font-family: Arial, sans-serif;
  width: 100%;
  margin-top: 20px;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-column {
  text-align: center;
  min-width: 150px;
}

.footer-column h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

/* ==============
   RESPONSIVENESS
   ============== */

/* Tablets */
@media (max-width: 992px) {
  #main {
    max-width: 90%; 
    margin-top: 100px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer-container {
    gap: 40px;
  }
  #note_key{
 display: flex;
 width: 100%;
 align-items: center;
 justify-content: center;

  /* margin-top: 90px; */
  }
  #note{
    text-align: center;
width: 448px; 
margin: 0 auto; 
 }
 

/* /* */
} 
@media  (max-width:375px) {
body{
 display: flex;
    align-items: center;
    align-items: center;
    
  }
  #download{
    width: 200px;
  }

  
}
/* Mobile */
@media (max-width: 576px) {
  body{
    display: flex;
    align-items: center;
    align-items: center;
    position: relative;
    /* left: 20px; */
/* left: auto; */
  }
  #main {
  width:330px;
    padding: 15px;
    margin-top: 80px;
  }
  #Download{
    width: 250px;
  } 
   #getData {
    /* width: 100%; */
    
    float: right;
  }
  .navbar-container {
    /* flex-direction: column; */
    padding: 10px;
  }

  .navbar-menu {
      gap: 10px;
      margin-right: 40px;
  }

}#note{
  width: 320px;


}
.sideAd{
  /* display: flex;
  justify-content: center;
  align-items: center; */
}
@media(max-width:992px)  {
  .ad_1_2{
display: none;
}
}

 .mobli{
       text-decoration: none;
      font-size: 16px;
      color: #555;
      font-family: 'Inter', Arial, sans-serif;
      transition: color 0.3s ease;
    }
   #menudown li{
       list-style-type: none;
       margin-left: auto;
        margin-right: auto;
        margin-top:15px ;
    }

    #menudown{
      display: none;
      position: fixed;
      top: 30px;
       right:0%;
      text-align: center;
      margin-top: 5px;
      margin-right: 5px;     
  background-color: #fff;       /* box background */
  min-width: 100px;             /* width of dropdown */
  padding: 8px 0;               /* space inside */
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15); /* soft shadow */
  border-radius: 6px; 
    }
