
.contact-info {
  background: radial-gradient(circle at 20% 20%, rgba(0, 198, 255, 0.15), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 120, 255, 0.15), transparent 50%),
              linear-gradient(135deg, #b7b9c0, #0b2c4d 60%, #02111f);
  position: relative;
  overflow: hidden;
}


.info-card {
  background: #111;
  padding: 40px 25px;
  border-radius: 20px;
  color: #fff;
  height: 100%;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #fff;
  color: #0b2c4d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
}

.info-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .info-card {
    padding: 30px 20px;
  }

  .info-card p {
    font-size: 13px;
  }
}