*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}




nav{
    display: flex;
    justify-content: space-between;
   width: 100%;
   padding: 1rem 3%;
   height: 20vh;
   position: sticky;
    top: 0;
    z-index: 1000;
   background: white;
   border-bottom: 1px solid rgb(179, 214, 243);
   backdrop-filter: blur(30px); 
   box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.Logo{
    width: 6rem;
    border-radius: 10px;
    
}
.nav-links{
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.nav-links li a{
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    position: relative;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    transition: 0.1s ease-out;
}

.nav-links li a:hover{
     border-bottom: 2px solid brown;
     background-color: aliceblue;
     padding: 1rem;
}



.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.39);
    backdrop-filter: blur(30px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem;
}



.sidebar li a{
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    transition: 0.1s;
  
}



.sidebar li a:hover{
     padding: 1rem;
     background-color: rgb(115, 115, 139);

}




 .menu{
    margin: 1.3rem;
 }






/* Styling for form container */
#paymentForm {
    width: 300px;
    margin: 0 auto;
  }
  
  /* Styling for form groups */
  .form-group {
    margin-bottom: 20px;
  }
  
  /* Styling for labels */
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  /* Styling for input fields */
  input[type="email"],
  input[type="tel"],
  input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  /* Styling for submit button */
  button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #45a049;
  }




.footer{
    margin-top: 30px;
    width: 100%;
    text-align: center;
    padding: 7px;
    background-color: rgb(36, 29, 21);

}

.footer h4{
    margin-bottom: 5px;
    margin-top: 5px;
    font-weight: 600;
    color: blanchedalmond;
    
}

.footer p{
    color: blanchedalmond;

}


.p5{
    margin-right: 85%;
    color: blanchedalmond;

}


.Logo2{
    width: 6rem;
    border-radius: 10px;
  margin-left:80%;
  margin-top: -10%;
    
}



  


@media(max-width:700px ){

    .hideOnMobile{
        display: none;
    }

    .sidebar li a:hover{
     padding: 0.3rem;
     background-color: rgb(115, 115, 139);     

}

.menu{
    height: 20px;
    width: 20px;
}
    .sidebar{
    width: 300px;
    height: 300vh;
}

}


 @media(min-width:970px ){

    .menu{
        display: none;
    
 }
}







  