/* Card Style */
.contact-card {
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.85);
}

/* Icon Circle */
.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007bff, #00c8ff);
  padding: 12px;
  margin: 0 auto;
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.25);
}

.icon-wrapper i {
  filter: brightness(0) invert(1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Button */
.contact-card a.btn {
  transition: 0.3s ease;
}

.contact-card a.btn:hover {
  background: #007bff;
  color: #fff;
}/*# sourceMappingURL=contact-summary.css.map */