/* Contact Section Styles */
.contact-me {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 5%;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}
.error-message {
  color: red;
  font-size: 0.9em;
  display: block;
  margin-top: 0;
  padding-bottom: 10px;
}

.contact {
  text-align: center;
  margin-bottom: 30px;
}

.span1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  margin-top: 5px;
  margin-left: 500px;
  border: 1.5px solid rgba(255, 0, 0, 0.8);
  box-shadow: 0 0 5px red, 0 0 7px red, 0 0 9px red;
}

.contact h1.heading {
  font-size: 2.5rem;
  color: #333;
}

.contact-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.contact-text {
  font-size: 20px;
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 25px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 10px;
}
.contact-information {
  box-sizing: border-box;
  /* border: 1px solid #333; */
  padding: 10px;
}

.contact-info {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  color: #555;
}

.contact-info li {
  margin-bottom: 10px;
}

.contact-info li i {
  margin-right: 10px;
  color: #ff0000;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0000 0%, #ff4d4d 100%);
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.social-icons a:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.6);
}

.send-message {
  /* flex: 1 1 45%;
  max-width: 45%; */
  width: 60%;
}

.info input,
.info textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.info input:focus,
.info textarea:focus {
  border-color: #ff0000;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.7);
}

.send-btn {
  /* background: linear-gradient(135deg, #ff0000 0%, #ff4d4d 100%); */
  background: linear-gradient(145deg, #85b931, red);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  border: none;
}

.send-btn:hover {
  background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}
