.social {
  background-image: url("../images/social.png");
  background-position: -50px top;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.4);

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;

  padding: 10%;
  margin-top: 5%;
  z-index: -2;
  min-height: 50vh;

  position: relative;
  text-align: center;
  color: black;
  font-family: "Open Sans", sans-serif;
}

.contact-icons1 {
  display: flex;
  justify-content: center;
}

.contact-icons1 img {
  width: 50%;
  height: auto;
}

@media (min-width: 750px) {
  .social {
    display: flex;
    flex-direction: column; /* stack heading and icons vertically */
    justify-content: flex-start; /* align from top */
    align-items: center; /* center horizontally */
    padding: 5%;
    margin-top: -14%;
    padding-top: 30%;
    padding-bottom: 30%;
    /* margin-bottom: 20%; */
    min-height: 30vh;

    background-image: url("../images/social.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;

    text-align: center;
    gap: 2rem; /* space between heading and icons */
  }

  .social h3 {
    margin: 0; /* remove default margin */
  }

  .contact-icons1 {
    display: flex;
    gap: 1.5rem; /* space between icons */
  }
}
