/* Profile container */
.profile-container {
  /* max-width: 800px; */
  margin: 90px 20px;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* Profile section */
.profile-section {
  display: flex;
  flex-wrap: wrap;
}

/* Profile picture */
.profile-picture {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 30px;
}

.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Profile info */
.profile-info {
  flex: 1 1 300px;
}

.profile-info h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.profile-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline;
}

.profile-info li {
  margin-bottom: 5px;
}

.profile-info li strong {
  font-weight: bold;
  margin-right: 5px;
}

.edit-btn {
  padding: 10px 20px;
  background-color: #4CAF50;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 200px;
}

.edit-btn:hover {
  background-color: #3e8e41;
}
.seperater {
  background-color: #2E8B57;
  height: 3px;
}
/* Educational Section */
/* Education Section */
#education-section {
  margin: 10px 20px;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

#education-section h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}

#education-section ul {
  margin-top: 10px;
  list-style-type: none;
  padding: 0;
}

#education-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

#education-section .edit-btn {
  display: block;
  margin-top: 20px;
  padding: 8px 12px;
  background-color: #4CAF50;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

#education-section .edit-btn:hover {
  background-color: #2E8B57;
}













