* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  font-family: sans-serif;
}

.menu-bar {
  background: rgb(0, 0, 70);
  text-align: center;
  padding: 10px 0;
}

.menu-bar nav {
  display: inline-flex;
  list-style: none;
  color: #fff;
}

.menu-bar nav li {
  margin: 15px;
}

.menu-bar nav li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 5px;
}

.menu-bar nav li a:hover {
  background-color: #34495e;
}

.menu-bar .sub-menu-1 {
  display: none;
}

.menu-bar nav li:hover .sub-menu-1 {
  display: block;
  position: absolute;
  background: rgb(0, 0, 70);
  margin-top: 5px;
  margin-left: -15px;
}

.menu-bar nav li:hover .sub-menu-1 nav {
  display: block;
  margin: 10px;
}

.menu-bar nav li:hover .sub-menu-1 nav li {
  padding: 10px;
  border-bottom: 1px dotted #fff;
  background: transparent;
  border-radius: 0;
  text-align: left;
}

.menu-bar nav li:hover .sub-menu-1 nav li:last-child {
  border-bottom: none;
}

.menu-bar nav li:hover .sub-menu-1 nav li a:hover {
  color: #add8e6;
}

.hamburger {
  position: relative;
  display: block;
  width: 35px;
  background: none;
  cursor: pointer;
  appearance: none;
  outline: none;
  border: none;
}

.hamburger .bar,
.hamburger:after,
.hamburger:before {
  content: '';
  display: block;
  height: 5px;
  width: 100%;
  background-color: #fff;
  margin: 6px 0px;
  transition: 0.4s;
}

.hamburger.is-active:before {
  transform: rotate(-45deg) translate(-8px, 6px);
}

.hamburger.is-active:after {
  transform: rotate(45deg) translate(-9px, -8px);
}

.hamburger.is-active .bar {
  opacity: 0;
}

.mobile-nav {
  display: block;
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;      
  overflow-y: auto;   
  z-index: 98;
  background-color: rgb(0, 0, 70);
  padding-top: 120px;
  transition: 0.4s;
}


.mobile-nav.is-active {
  left: 0;
}

.mobile-nav a {
  display: block;
  text-align: center;
  padding: 12px 16px;
  background-color: rgb(98, 45, 177);
  width: 100%;
  max-width: 200px;
  margin: 0 auto 16px;
  color: #fff;
  text-decoration: none;
}

.mobile-nav a:hover {
  background-color: rgb(64, 6, 151);
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }

  .hamburger {
    display: none;
  }
}

@media (max-width: 1024px) {
  .menu-bar {
    padding-left: 64px;
    padding-right: 64px;
  }
}

@media (max-width: 767px) {
  .menu-bar {
    padding-left: 32px;
    padding-right: 32px;
  }

  header .menu-bar nav {
    display: none;
  }
}

header {
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media (max-width: 767px) {
  header .menu-bar nav {
    display: none;
  }
}

header .menu-bar nav a {
  color: inherit;
  font-size: 20px;
  text-decoration: none;
}


main {
  margin-top: 150px;
}



.container_text_center {
  text-align: center;
}

.button-container {
  margin-top: 20px; /* Adjust as needed */
  text-align: center;
}

.downbtn,
.Resetbtn {
  size: 20px;
  padding: 30px 60px;
  background-color: rgb(0, 0, 70);
  color: white;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 15px 25px rgba(0, 0, 0, 0.35);
  margin-top: 20px;
}

.downbtn:hover,
.Resetbtn:hover {
  background-color: rgb(0, 0, 100);
}

.drop-container {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  padding: 20px;
  border-radius: 10px;
  border: 2px dashed #555;
  color: #444;
  cursor: pointer;
  width: 80%;
  margin: 0 auto; /* Add this to center the container horizontally */
  transition: background .2s ease-in-out, border .2s ease-in-out;
}


.drop-container:hover {
  background: #eee;
  border-color: #111;
}

.drop-container:hover .drop-title {
  color: #222;
}

.drop-title {
  color: #444;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: color .2s ease-in-out;
}

.drop-container.drag-active {
  background: #eee;
  border-color: #111;
}

.drop-container.drag-active .drop-title {
  color: #222;
}


.password-fields {
  margin: 20px auto;
  width: 80%;
  display: flex;
  flex-direction: column;
}

#password,
#reenter_password {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.password-hint {
  font-size: 14px;
  color: #666;
}





.way_to_upload_section {
  text-align: center;
  padding: 50px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin-top: 20px; /* Add margin top to separate from header */
}

.way_to_upload_section h1 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.way_to_upload_section p {
  font-size: 1.2em;
  color: #555;
  line-height: 1.5;
}

.products-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background-color: #e6d9d9;
  margin: 20px auto; /* Center and add margin */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sub-products-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background-color: #e6d9d9;
  margin: 20px auto; /* Center and add margin */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product {
  width: 200px; /* Adjust width as needed */
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.product h2 {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 5px;
}

.product p {
  font-size: 1em;
  color: #555;
  line-height: 1.4;
}

.product a {
  text-decoration: none;
}

.footer {
    background-color: rgb(0, 0, 70);
    color: white;
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 30vh;
    justify-content: center; /* Align content vertically center */
  }
  
  .footer .container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto; /* Center the container */
  }
  
  .footer h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .footer p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .footer ul {
    margin: 0 auto;
    padding: 0;
    list-style: none;
  }
  
  .footer ul li {
    margin-bottom: 5px;
  }
  
  .footer ul li a {
    color: white;
    text-decoration: none;
  }
  
  .footer ul li a:hover {
    color: #ddd;
  }
  
  .footer .fa {
    margin-right: 5px;
    font-size: 16px;
    color: white;
  }
  
  .footer .copyright {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    color: white;
  }
  
  @media (max-width: 768px) {
    .footer .col-md-4 {
      width: 100%;
    }
  }
  
