*{
    margin: 0;
    padding: 0;
    
}

/* NAVIGATION BAR STYLES  MANAUL CODE 782010*/

:root{
    --primary-color: #20183b;
    --primaryhover: #007bef;
    --test: red;

}

body{
    cursor: default;
    background-color:  #f4f6ff;
}

nav{
    background-color: #fffdfd;
    color: white;
    zoom: 80%;

    height: 80px;


    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.logo1{
    width: 50px;
    margin: 0px;

    position: relative;
    top:15px;
    left: 20px;
}

.logotitle1{
    width: 200px;
    margin: 0px;

    position: relative;
    top: 12px;
    left: 20px;
   
}

.nav-links{
    float: right;
    margin-right: 30px;
    margin-top: 0px;
    background-color: transparent;
    height: auto;

    width: 160px;
    
    text-align: center;

    position: relative;
    bottom: 30px;

}

.nav-links a{
    text-decoration: none;
    color: var(--primary-color);

    font-size: 30px;
}

.nav-links a:hover{
    color: var(--primaryhover);

    
    
    transition: 0.4s;
}


/* feedback */


.feedback-section {
  max-width: 400px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  text-align: center;
}

.feedback-section h2 {
  margin-bottom: 5px;
}

.feedback-section input,
.feedback-section select,
.feedback-section textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.feedback-section textarea {
  resize: none;
  height: 80px;
}

.feedback-section button {
  width: 100%;
  padding: 10px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.feedback-section button:hover {
  background: #3d9241;
  transition: 0.4s;

}

#feedbackStatus{
    margin-top: 15px;
    font-weight: bold;
    font-size: 10px;
}

.feedback-section{
    zoom: 140%;
    margin-top: 70px;
}

.back{
    margin-top: 0px;
    text-align: center;
    background-color: transparent;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
} 

body{
    cursor: default;
}

.btn-feedback{
    margin-bottom: 20px;
    font-size: 20px ;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;


}

.btn-feedback:hover{
    background-color: var(--primaryhover);
    transition: 0.4s;
}


/* FOOTER STYLES */

.footer{
    background-color: white;
    height: 40px;
    width: 100%;

    margin-top: auto;
    text-align: center;
    color: white;

    position: fixed;
    bottom: 0;
    left: 0;
    ;
    box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.1);

 
}


.nav-logoimg-footer{

    float: left;

}

.logo1-footer {
    width: 40px;
}

 .logotitle1-footer{
    width: 150px;
    position: relative;
    bottom: 4px;
 }

 .signature{
    float: right;
    color: black;

    position: relative;
    bottom: -10px;
    margin-right: 20px;
 }


 @media (max-width: 440px) {  

    body{

        zoom: 70%;
   
    }

    nav{
        zoom: 90%;
    }

  .nav2-imglogo img{
      zoom: 80%;

  }

  .btn-style{
      zoom: 120%;
  }

  .nav2-text{
    margin-top: 250px !important;
  }

  .feedback-section{
    zoom: 180%;
    margin-top: 50px;
  }

  .btn-feedback{
    zoom: 135%;
  }


 }


 /* LOADING ANIMATION STYLES */
.feedback-section button.loading {
  position: relative;
  color: transparent;
}

.feedback-section button.loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}



/* LINK */

#feedbackStatus {
    cursor: pointer;
    color: rgb(37, 34, 34);
}

#feedbackStatus:hover {
    color: var(--primaryhover);
    transition: 0.4s;
}   