/* Social Media Icons */
.bs-social-links default{
  display: flex;
  justify-content: flex-start; /* Changed from center to flex-start */
  align-items: center;
  gap: 15px; /* Reduced gap */
  padding: 0px 0;
  padding-left: 0px; /* Add some left padding if needed */
}

.link-items{
  display: flex;
  justify-content: flex-start; /* Changed from center to flex-start */
  align-items: center;
  gap: 15px; /* Reduced gap between buttons */
  flex-wrap: wrap;
}

.link-items .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px; /* Reduced from 60px */
  height: 45px; /* Reduced from 60px */
  border-radius: 50%;
  border: 4px solid #ffff;
  background-color: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;

}

.link-items .item:hover {
  background-color: #ffff;
  transform: scale(1.05);
}

.link-items .item i {
  font-size: 18px; /* Reduced from 24px */
  color: #ffff;
  transition: color 0.3s ease;
  width: 18px; /* Reduced from 24px */
  height: 18px; /* Reduced from 24px */
  display: flex;
  justify-content: center;
  align-items: center;
}

.link-items .item:hover i {
  color: #54514b;
}

.circular.social {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  font-size: 18px !important; /* Reduced font size */
  width: auto !important;
  height: auto !important;
}

/* Responsive design */
@media (max-width: 768px) {
  .link-items {
    gap: 12px; /* Even smaller gap on mobile */
  }
  
  .link-items .item {
    width: 40px; /* Smaller on mobile */
    height: 40px;
  }
  
  .link-items .item i {
    font-size: 16px;
  }
}
