/* Animated Call Icon - Pulsing Effect */
@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Add pulsing animation to the call icon */
.header-link-1 .icon i {
  animation: pulse-icon 2s ease-in-out infinite;
  display: inline-block;
}
