.iihas-fcb-bar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.iihas-fcb-item {
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 0 8px 8px 0;
  font-size: 20px;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.iihas-fcb-item i {
  font-size: 22px;
  line-height: 1;
}

.iihas-fcb-item.whatsapp   { background-color: #25D366; }
.iihas-fcb-item.facebook   { background-color: #1877F2; }
.iihas-fcb-item.instagram  { background-color: #E1306C; }
.iihas-fcb-item.x          { background-color: #000000; }
.iihas-fcb-item.youtube    { background-color: #FF0000; }
.iihas-fcb-item.linkedin   { background-color: #0077B5; }
.iihas-fcb-item.call       { background-color: #28A745; }
.iihas-fcb-item.contact    { background-color: #6C757D; }
.iihas-fcb-item.apply      { background-color: #17A2B8; }

.iihas-fcb-item:hover {
  transform: translateX(5px);
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.hidden-link {
  display: none;
}

.iihas-fcb-toggle {
  background: #444;
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s ease;
}

.iihas-fcb-toggle:hover {
  background: #666;
}

@media (max-width: 768px) {
  .iihas-fcb-bar {
    top: 40%;
  }
  .iihas-fcb-item,
  .iihas-fcb-toggle {
    padding: 10px;
    font-size: 18px;
    width: 44px;
    height: 44px;
  }
  .iihas-fcb-item i {
    font-size: 20px;
  }
}
