.contact-container {
  padding-top: 50px;
  width: 90%;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.contact-container h1 {
  font-size: 2.5rem;
}

.contact-container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Contact Content */
.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Contact Form */
.contact-form {
  background: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-form label {
  font-weight: bold;
  display: block;
  margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  background-color: green;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: darkgreen;
}

/* Contact Info */
.contact-info {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info h2 {
  font-size: 1.8rem;
}

.contact-info p {
  font-size: 1.1rem;
}

.contact-info a {
  color: #397960;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* .social-links a {
  font-weight: bold;
  text-decoration: none;
  margin: 0 5px;
}

.social-links a:hover {
  color: green;
} */
/* From Uiverse.io by vinodjangid07 */
.socialscard {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  height: fit-content;
  /* background-color: rgb(238, 238, 238); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
}

/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
}
/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
}
/* twitter*/
.containerTwo:hover {
  background-color: #00acee;
  transition-duration: 0.3s;
}
/* linkdin*/
.containerThree:hover {
  background-color: #0072b1;
  transition-duration: 0.3s;
}
/* Whatsapp*/
.containerFour:hover {
  background-color: #128c7e;
  transition-duration: 0.3s;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
