/* 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: 1px dashed #ffff;
  background-color: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;

}

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

.bs-main-menu .main-menu.nav-active-st1 .page-links>.item.nav-active, .bs-button {
  border: 1px dashed #fff !important;
}
.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: #ffffff;
}

.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;
}