.circle-image {
    width: 150px;       /* Adjust as needed */
    height: 150px;      /* Keep the same as width for a perfect circle */
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover;  /* Ensures the image covers the area without distortion */
    overflow: hidden;   /* Hides any overflow outside the circular area */
  }