.follow-label {
  color: white;
  font-weight: bold;
  font-size: 1.1em;
}

.follow_link {
  padding: 0;
  margin: 0;
  list-style: none;
}

.follow_link li {
  display: inline-block;
  margin: 0 10px;
}

.follow_link i {
  color: inherit; /* varsayılan olarak markaların rengi */
  font-size: 20px;
  background-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.follow_link a:hover i {
  transform: scale(1.2);
  background-color: #eee;
}

/* Marka Renkleri */
.follow_link .fa-facebook-f { color: #3b5998; }
.follow_link .fa-x-twitter { color: #1da1f2; }
.follow_link .fa-instagram { color: #e1306c; }
.follow_link .fa-linkedin { color: #0077b5; }

.logo-rounded {
  border-radius: 12px;         /* köşeleri yumuşatır, istersen 50% ile tam oval/daire olabilir */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);  /* bombe hissi veren gölge */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* İsteğe bağlı hover efekti */
.logo-rounded:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
