    .header-section {
      background: linear-gradient(to right, #6c757d, #343a40);
      color: white;
      text-align: center;
      padding: 50px 20px;
    }
    .form-section {
      margin: 20px 0;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
    }
   .service-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  height: 220px;
}

    .avatar {
      border-radius: 50%;
      width: 80px;
      height: 80px;
    }
	 .header-section {
    position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adds a dark overlay for better text visibility */
  z-index: 1;
}

.header-section .container {
  position: relative;
  z-index: 2; /* Ensures text and buttons appear above the overlay */
}
 
.header-section img {
  max-width: 100%; /* Ensures the image never exceeds its container width */
  border: 2px solid #ddd; /* Optional border around the image */
}
