/* Popup Overlay */
#aboutMeModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* Popup Content Box */
.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Wrapper for Image and Text */
.about-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Text Section */
.modal-text {
  flex: 1;
  min-width: 200px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.modal-text p {
  margin-bottom: 10px;
}

.modal-text strong {
  color: #000;
}

/* Image Section */
.modal-image {
  flex-shrink: 0;
}

.modal-image img {
  max-width: 150px;
  border-radius: 10px;
  object-fit: cover;
  height: auto;
}

/* Paragraph spacing */
.modal-content p {
  margin-bottom: 10px;
  line-height: 1.4;
}
#aboutMeData{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 50px;
}   

