#contact-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  width: 100%;
  padding: 50px;
}
.contact-me {
  font-size: var(--headingFontSize);
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  font-family: poppins, var(--default-font-family);
}

.contact-container {
  display: flex;
  width: 90%;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* padding: 20px; */
  border-radius: 10px;
  margin-top: 20px;
  gap: 5%;
}
.contact-form {
  width: 40%;
  margin-left: 0;
  /* margin-right: 20px; */
}

.contact-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.input-field {
  width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
  background-color: #999999;
  margin-bottom: 20px;
  border: 2px solid;
}
.message-field {
  width: 100%;
  height: 300px;
  padding: 20px;
  border-radius: 20px;
  background-color: #999999;
  margin-bottom: 20px;
  border: 2px solid;
  font-family: Inter, var(--default-font-family);
}

.btn {
  width: 10vw;
  height: 50px;
  padding: 10px;
  border-radius: 10px;
  background-color: #999999;
  margin-bottom: 20px;
  font-family: Inter, var(--default-font-family);
  font-weight: 600;
  border: 2px solid;
  transition: 1s;
  color: #081b29;
}

.btn:hover {
  background-color: #081b29;
  border: 1px solid darkturquoise;
  color: aliceblue;
  transform: scale(2px);
}

.contact-icon {
  /* text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; */
  width: 40%;
}

.link-icon {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}
.fa-brands {
  font-size: 50px;
  color: whitesmoke;
}
.fa-brands:hover {
  transform: translateY(-3px);
  scale: 1.1;
}
.contact-details {
  display: flex;
  width: 40%;
}

.contact-item {
  display: flex;
  margin-bottom: 15px;
  /* Added spacing between icons */
}
a {
  text-decoration: none;
  color: white;
}

.contact-icon-img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.contact-details a {
  text-decoration: none;
  color: white;
}

.contact-form {
  font-family: Inter, var(--default-font-family);
}
@media only screen and (max-width: 600px) {
  #contact-section {
    padding: 30px 20px;
  }
  .contact-container {
    width: 100%;
    flex-direction: column;
  }
  .contact-form {
    width: 100%;
    margin-left: 0;
    /* margin-right: 20px; */
  }
  .btn {
    width: 100%;
  }
  .contact-icon {
    width: 100%;
  }
  .fa-brands {
    font-size: 30px;
  }
  .link-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .contact-me {
    font-size: var(--headingFontSizeS);
  }
}
