/* Contact Links Styling */
.contact-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.contact-link:hover {
  color: #149ddd;
  text-decoration: none;
  transform: translateY(-1px);
}

.contact-link:focus {
  outline: none;
  color: #149ddd;
}

/* Underline animation on hover */
.contact-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #149ddd;
  transition: width 0.3s ease;
}

.contact-link:hover::after {
  width: 100%;
}

/* Special styling for resume section contact links */
.resume-item .contact-link {
  font-weight: 500;
}

/* Contact section specific styling */
.info-item .contact-link {
  font-size: 16px;
  font-weight: 500;
}

.info-item .contact-link:hover {
  color: #149ddd;
  text-shadow: 0 0 5px rgba(20, 157, 221, 0.3);
}