/*For Contact.html*/
#contact {
    text-align: center;
    padding: 30px;
    
}
#contact h1, #contact h3{
      text-shadow: 2px 4px 4px rgb(187, 184, 184);
}
.all-contact{
    display: flex;
    justify-content: center;
    padding: 40px 0px;
    margin-top: 30px;
    gap: 30px;
    border: 1px solid rgb(214, 213, 213);
    box-shadow: 0px 0px 10px rgb(218, 213, 213);
    
}
#contact-list{ 
  text-align: left;
  border-right: 1px solid rgb(51, 134, 243);
  padding-right: 20px;
}
.each-contact{
    padding-top: 20px;
}
.each-contact a{
 text-decoration: none;
  color: #2c71ba;
}
.each-contact a:hover{
 color: #042950;
}
#contact-form{
text-align: left;
margin-left: 40px;

}
#contact-form input, select, textarea {
  padding: 12px 14px;
  margin-top: 10px;
  font-size: 16px;
  border: 1px solid #b9b9b9;
  transition: 0.3s;
  width: 85%;
}
#contact-form input:focus, select:focus, textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}
.phone-wrapper {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
#contact-form button {
  background: #007bff;
  color: white;
  padding: 10px 20px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}
#contact-form button:hover {
  background: #0056b3;
}