/* Make images square instead of circular */
.circle-image img {
  width: 100px;
  height: 100px;
  border-radius: 0; /* Removes circular shape */
  object-fit: cover;
}

/* Optional: Adjust box styling to match square design */
.circle-box {
  border-radius: 0; /* Removes any rounded corners */
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff; /* Optional background */
  margin: 10px;
}

/* Optional: Adjust container layout */
.circle-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
