.about-social-wrapper {
  display: flex;
  flex-direction: column;  /* stack items */
  align-items: center;     /* center everything */
  justify-content: center;
  text-align: center;
  width: 100%;             /* allow full width */
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.social-box {
  width: 100%;
  display: flex;
  justify-content: center;   /* centers horizontally */
  align-items: center;
  margin: 20px auto;         /* push equal spacing */
}

.social-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;   /* space between each card */
  padding: 0;
  list-style: none;
  margin: 0 auto;
  justify-content: center;
}

.social-box ul li {
  list-style: none;
  margin: 15px;   /* extra margin for spacing */
}


.social-box ul li a .fa {
  font-size: 28px;       /* smaller so it matches text baseline */
  color: #262626;
  line-height: 1;        /* remove extra vertical space */
  transition: 0.5s;
}

.social-box ul li a span {
  position: static;
  font-size: 18px;       /* text size match pannunga */
  color: #262626;
  letter-spacing: 2px;
  transition: 0.5s;
}

.social-box ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;    /* both icon + text center line */
  justify-content: flex-start;
  gap: 12px;
  width: 200px;
  height: 80px;
  background: #b76e79; 
  padding-left: 20px;
  transform: rotate(-30deg) skew(25deg) translate(0, 0);
  transition: 0.5s;
  box-shadow: -20px 20px 10px rgba(0, 0, 0, 0.5);
  position: relative;
}

.social-box ul li a:before {
  content: '';
  position: absolute;
  top: 10px;
  left: -20px;
  height: 100%;
  width: 20px;
  background: #b1b1b1;
  transform: rotate(0deg) skewY(-45deg);
}

.social-box ul li a:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -10px;
  height: 20px;
  width: 100%;
  background: #b1b1b1;
  transform: rotate(0deg) skewX(-45deg);
}

.social-box ul li a:hover {
  transform: rotate(-30deg) skew(25deg) translate(20px, -15px);
  box-shadow: -50px 50px 50px rgba(0, 0, 0, 0.5);
}

.social-box ul li:hover .fa,
.social-box ul li:hover span {
  color: #fff;
}

/* Facebook */
.social-box ul li:hover:nth-child(1) a {
  background: #3b5998;
}
.social-box ul li:hover:nth-child(1) a:before {
  background: #365492;
}
.social-box ul li:hover:nth-child(1) a:after {
  background: #4a69ad;
}

/* Twitter */
.social-box ul li:hover:nth-child(2) a {
  background: #000000;
}
.social-box ul li:hover:nth-child(2) a:before {
  background: #000000;
}
.social-box ul li:hover:nth-child(2) a:after {
  background: #000000;
}

/* Google+ */
.social-box ul li:hover:nth-child(3) a {
  background: #dd4b39;
}
.social-box ul li:hover:nth-child(3) a:before {
  background: #b33a2b;
}
.social-box ul li:hover:nth-child(3) a:after {
  background: #e66a5a;
}

/* Instagram */
.social-box ul li:hover:nth-child(4) a {
  background: #e4405f;
}
.social-box ul li:hover:nth-child(4) a:before {
  background: #d81c3f;
}
.social-box ul li:hover:nth-child(4) a:after {
  background: #e46880;
}



