.profile-card {
  position: relative;
  background: #d9dee4; /* light gray */
  padding: 60px 30px 40px;
  border-radius: 6px;
  text-align: center;
  max-width: 800px;
  margin: 10% auto;
}

.profile-image {
  position: absolute;
  top: -50px; /* pushes image outside */
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  overflow: hidden;
  border: 4px solid #fff; /* white border around the circle */
  background: #fff;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 80px 0 15px; /* spacing below floating image */
}

.profile-text {
  font-size: 1rem;
  color: #222;
  line-height: 1.5;
  margin-bottom: 25px;
}

.profile-btn {
  background: #003c7a;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.profile-btn:hover {
  background: #0050a5;
}
