.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    background-image: url('./image/img3.JPG'); /* Add your background image URL here */
    background-size: cover;
    background-position: center;
}

nav ul{
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
ul a{
  list-style-type: none;
  text-decoration: none;
  color: black;
  font-weight: 700;
}
nav ul{
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
ul a{
  list-style-type: none;
  text-decoration: none;
  color: black;
  font-weight: 700;
}
nav{
  background-color: #f8f8f8;
  padding: .5rem 1rem 0rem 6.5rem;
  padding-bottom: 1px;
  margin-left: 1rem;
}
.nav-bar{
  background-color: maroon;
  padding: 1.5rem 1rem 1.5rem 1rem ;
  position: relative;

}
li{
  border: 1px solid maroon;
  border-radius: 15px;
  padding: 10px 18px 20px 15px;
  box-shadow: -4px -6px 5px maroon ;
 
}
nav li:hover{
background-color: #800000;
box-shadow: -4px -6px 5px #ffffff ;
}
li a:hover{
  color: #f8f8f8;
} 

.logo {
  display: flex;
  align-items: center;
  padding: 10px;
}

.logo-circle {
  width: 160px; 
  height: auto; 
  background-color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  margin-right: 20px; 
  position: absolute;
  top: 0%;
  left:0%
}

.logo-circle img {
  width: 121px;
  height: 96px; 
}

.logo-circle span {
  font-size: 14px; 
  color: black;
  font-weight: bold;
  margin-top: 10px; 
}

.hidden {
  display: none;
}

.hamburger-menu {
  height: 50px;
  width: 50px;
  position: relative;
  cursor: pointer;
  padding: 1rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  margin-top: 1rem;
}

.hambar {
  width: 70%;
  height: 5px;
  background-color: white;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.6s, opacity 0.8s, top 0.6s;
  z-index: 2000;
}

.bar1 {
  top: 25%;
}

.bar3 {
  top: 75%;
}

.hamburger-menu.active .bar1 {
  transform: translate(-50%, -50%) rotate(-315deg);
  top: 50%;
}

.hamburger-menu.active .bar2 {
  opacity: 0;
}

.hamburger-menu.active .bar3 {
  transform: translate(-50%, -50%) rotate(-225deg);
  top: 50%;
}

.show {
  display: none;
}

.divham {
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100vh;
}



section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}


.login-box {
  position: relative;
  width:400px;
  height:450px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(15px);
}
h2 {
  font-size: 2em;
  color: #fff;
  text-align: center;
}

.input-box {
  position: relative;
  width: 310px;
  margin: 30px 0;
  border-bottom: 2px solid #fff;
}

.input-box label {
  position: absolute;
  top:50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 1em;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.input-box input:focus~label,
.input-box input:valid~label {
  top: -5px;
}

.input-box input {
  width: 100%;
  height: 50px;
  background: transparent;
  border:none;
  outline: none;
  font-size: 1em;
  color: #fff;
  padding: 0 45px 0 5px;
}

.input-box .icon {
  position: absolute;
  right: 8px;
  color: #fff;
  font-size: 1.2em;
  line-height: 57px;
}

.remember-forgot {
  margin: -15px 0 15px;
  font-size: .9em;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.remember-forgot label input {
  margin-right: 3px;
}

.remember-forgot a {
  color: #fff;
  text-decoration: none;
}

.remember-forgot a:hover {
  text-decoration: underline;
}

.button {
  width: 100%;
  height: 40px;
  background: #fff;
  border:none;
  outline: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1em;
  color:#000;
  font-weight: 500;
}

.register-link {
  font-size: .9em;
  color: #fff;
  text-align: center;
  margin: 25px 0 10px;
  display: flex;
  justify-content: space-between;
}

.register-link p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.register-link p a:hover {
  text-decoration: underline;
}

.register-link a {
  color: #fff;
  text-decoration: none;
}

.register-link a:hover {
  text-decoration: underline;
}
p a{
  text-decoration:none;
  color: black;
  font-weight: 600;
}
p{
  color: #333;
}
.footer-main{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 1rem;
  padding-bottom: .5rem;
  background-color: goldenrod;
 
}
footer{
  bottom: 0;
  width: 100%;
}

/* For mobile devices with a screen width of 320px or less */
@media (max-width: 320px) {
  .login-box {
     width: 100%;
     height: 100vh;
     padding: 20px;
   }
  .input-box {
     width: 250px;
   }
  .button {
     font-size: 1.2em;
   }
 }
 
 /* For mobile devices with a screen width of 480px or less */
 @media (max-width: 480px) {
  .login-box {
     padding: 15px;
   }
  .input-box {
     width: 200px;
   }
  .button {
     font-size: 1.1em;
   }
 }

/* @media (max-width: 360px) {
  .login-box{
    width: 100%;
    height: 100vh;
    border: none;
    border-radius: 0;
  }

  .input-box{
    width: 290px;
  }
} */
/* }
  footer {
    background-color: #ffc107; 
    color: black;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: black;
    margin-right: 20px;
    font-weight: bold;
}

.footer-links a:last-child {
    margin-right: 0;
} */
@media (max-width:1400px) {
  .header2{
      display: none;
  }
}
@media (max-width:1200px){
  .nav-bar{
    display: none;
}
.ham-menu{
    display: block;
    flex-direction: column;
    background-color: maroon;
    position: fixed;
    right: 0;
    top: 0%;
    z-index: 100;
    padding-left:3rem ;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 100%;
}
nav{
    background-color: maroon;
    padding: .5rem 1rem 0rem 6.5rem;
    padding-bottom: 1px;
    margin-left: 1rem;
 }
 li a{
    color: #f8f8f8;
 }
 nav li:hover{
    background-color: maroon;
    box-shadow: -4px -6px 5px #ffffff ;
     }
 .top-nav2{
    margin-top: 3rem;
    font-size: 4px;
    display: flex;
    gap: 2em;
    width: 100%;
    height: 100%;
   }
    .header2{
        display: flex;
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
        gap: 5px;
        padding-top: 2rem;
          transition: transform 0.3s ease-in-out;
     }
     .navHamBurger{
        display: flex;
        flex-direction: column;
      padding-left: 0rem;
      padding-bottom: 2rem;

    } 
    .nav-bar{
        display: none;
    }
    li a{
        font-size: 1.5rem;
        padding-right: 1rem;
    }
  

}