.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

/* Footer Responsiveness: Center on Mobile, Right-Align on Desktop */

/* 1. Force the title to center and remove manual right alignment */

@media (max-width: 991.98px) {
  .contact-position, .contact-position span {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
    padding-top: 15px;
  }
}

/* 2. Reverse the flex direction to center the icon and text */

@media (max-width: 991.98px) {
  .footer-contact-item {
    justify-content: center !important;
  }
}

/* Optional: If you want the icon on the left of the text on mobile        for better readability, add this: */

@media (max-width: 991.98px) {
  .footer-contact-item {
    flex-direction: row-reverse;
    gap: 10px;
  }
}

