/* Styles for the popup container */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
  border-radius: 15px;
}

/* Styles for the popup content */
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  width: 500px;
  height: 700px;
  overflow: auto;
  background-color: #fff;
  overflow: hidden;
}

.popup-content-row {
  display: flex;
  justify-content: start;
  gap: 30px;
  padding: 20px;
  background-color: var(--background-color);
  height: 290px;
  position: relative;
}

.profile-picture {
  width: 450px;
  height: 250px;
  border-radius: 25px;
  border: 2px solid var(--primary-color-transparent);
}

.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10%;
  border: 2px solid var(--primary-color);
}

.profile-name {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 0px;
}

.profile-name-sub {
  font-size: 15px;
  font-weight: semi-bold;
  margin-bottom: 10px;
  text-align: center;
  color: var(--primary-color);
}

.profile-description {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.profile-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 20px;
  max-height: 350px;
  overflow-y: auto;
}
.posts-heading {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background-color: #cd8d2b;
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-item {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 4px;
  border: none;
  color: black;
}

.closeButton {
  position: absolute;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 20px;
  bottom: 0;
  right: 0;
}

.closeButton:hover {
  background-color: #b37419;
}
.post-item {
  background-color: rgb(239, 236, 236);
  border-radius: 10px;
}
.popup-text {
  background-color: rgb(239, 236, 236);
}

.project_description {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 20px;
  max-height: 350px;
  overflow-y: auto;
}
.project_description h5 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 376px) {
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
    border-radius: 15px;
  }

  /* Styles for the popup content */
  .popup-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    width: 350px;
    height: 560px;
    overflow: auto;
    background-color: #fff;
    overflow: hidden;
  }

  .popup-content-row {
    display: flex;
    justify-content: start;
    gap: 30px;
    padding: 15px;
    background-color: var(--background-color);
    height: 240px;
    position: relative;
  }

  .profile-picture {
    width: 320px;
    height: 200px;
    border-radius: 25px;
    border: 2px solid var(--primary-color-transparent);
  }

  .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    border: 2px solid var(--primary-color);
  }

  .profile-name {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0px;
  }

  .profile-name-sub {
    font-size: 15px;
    font-weight: semi-bold;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
  }

  .profile-description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .profile-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .posts-heading {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #cd8d2b;
  }

  .post-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .post-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    border: none;
    color: black;
  }

  .closeButton {
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px;
    bottom: 0;
    right: 0;
  }

  .closeButton:hover {
    background-color: #b37419;
  }
  .post-item {
    background-color: rgb(239, 236, 236);
    border-radius: 10px;
  }
  .popup-text {
    background-color: rgb(239, 236, 236);
  }

  .project_description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .project_description h5 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 376px) and (max-width: 415px) {
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
    border-radius: 15px;
  }

  /* Styles for the popup content */
  .popup-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    width: 350px;
    height: 670px;
    overflow: auto;
    background-color: #fff;
    overflow: hidden;
  }

  .popup-content-row {
    display: flex;
    justify-content: start;
    gap: 30px;
    padding: 15px;
    background-color: var(--background-color);
    height: 240px;
    position: relative;
  }

  .profile-picture {
    width: 320px;
    height: 200px;
    border-radius: 25px;
    border: 2px solid var(--primary-color-transparent);
  }

  .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    border: 2px solid var(--primary-color);
  }

  .profile-name {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0px;
  }

  .profile-name-sub {
    font-size: 15px;
    font-weight: semi-bold;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
  }

  .profile-description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .profile-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .posts-heading {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #cd8d2b;
  }

  .post-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .post-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    border: none;
    color: black;
  }

  .closeButton {
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px;
    bottom: 0;
    right: 0;
  }

  .closeButton:hover {
    background-color: #b37419;
  }
  .post-item {
    background-color: rgb(239, 236, 236);
    border-radius: 10px;
  }
  .popup-text {
    background-color: rgb(239, 236, 236);
  }

  .project_description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .project_description h5 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) {
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
    border-radius: 15px;
  }

  /* Styles for the popup content */
  .popup-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    width: 500px;
    height: 700px;
    overflow: auto;
    background-color: #fff;
    overflow: hidden;
  }

  .popup-content-row {
    display: flex;
    justify-content: start;
    gap: 30px;
    padding: 20px;
    background-color: var(--background-color);
    height: 290px;
    position: relative;
  }

  .profile-picture {
    width: 450px;
    height: 250px;
    border-radius: 25px;
    border: 2px solid var(--primary-color-transparent);
  }

  .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    border: 2px solid var(--primary-color);
  }

  .profile-name {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0px;
  }

  .profile-name-sub {
    font-size: 15px;
    font-weight: semi-bold;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
  }

  .profile-description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .profile-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .posts-heading {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #cd8d2b;
  }

  .post-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .post-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    border: none;
    color: black;
  }

  .closeButton {
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px;
    bottom: 0;
    right: 0;
  }

  .closeButton:hover {
    background-color: #b37419;
  }
  .post-item {
    background-color: rgb(239, 236, 236);
    border-radius: 10px;
  }
  .popup-text {
    background-color: rgb(239, 236, 236);
  }

  .project_description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .project_description h5 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) {
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
    border-radius: 15px;
  }

  /* Styles for the popup content */
  .popup-content {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    width: 500px;
    height: 700px;
    overflow: auto;
    background-color: #fff;
    overflow: hidden;
  }

  .popup-content-row {
    display: flex;
    justify-content: start;
    gap: 30px;
    padding: 20px;
    background-color: var(--background-color);
    height: 290px;
    position: relative;
  }

  .profile-picture {
    width: 450px;
    height: 250px;
    border-radius: 25px;
    border: 2px solid var(--primary-color-transparent);
  }

  .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    border: 2px solid var(--primary-color);
  }

  .profile-name {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0px;
  }

  .profile-name-sub {
    font-size: 15px;
    font-weight: semi-bold;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
  }

  .profile-description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .profile-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .posts-heading {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #cd8d2b;
  }

  .post-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .post-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    border: none;
    color: black;
  }

  .closeButton {
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px;
    bottom: 0;
    right: 0;
  }

  .closeButton:hover {
    background-color: #b37419;
  }
  .post-item {
    background-color: rgb(239, 236, 236);
    border-radius: 10px;
  }
  .popup-text {
    background-color: rgb(239, 236, 236);
  }

  .project_description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .project_description h5 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) {
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
    border-radius: 15px;
  }

  /* Styles for the popup content */
  .popup-content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    width: 500px;
    height: 700px;
    overflow: auto;
    background-color: #fff;
    overflow: hidden;
  }

  .popup-content-row {
    display: flex;
    justify-content: start;
    gap: 30px;
    padding: 20px;
    background-color: var(--background-color);
    height: 290px;
    position: relative;
  }

  .profile-picture {
    width: 450px;
    height: 250px;
    border-radius: 25px;
    border: 2px solid var(--primary-color-transparent);
  }

  .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    border: 2px solid var(--primary-color);
  }

  .profile-name {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0px;
  }

  .profile-name-sub {
    font-size: 15px;
    font-weight: semi-bold;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
  }

  .profile-description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .profile-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .posts-heading {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #cd8d2b;
  }

  .post-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .post-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    border: none;
    color: black;
  }

  .closeButton {
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px;
    bottom: 0;
    right: 0;
  }

  .closeButton:hover {
    background-color: #b37419;
  }
  .post-item {
    background-color: rgb(239, 236, 236);
    border-radius: 10px;
  }
  .popup-text {
    background-color: rgb(239, 236, 236);
  }

  .project_description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .project_description h5 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
@media screen and (device-width: 540px) and (device-height: 720px) {
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
    border-radius: 15px;
  }

  /* Styles for the popup content */
  .popup-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    width: 500px;
    height: 630px;
    overflow: auto;
    background-color: #fff;
    overflow: hidden;
  }

  .popup-content-row {
    display: flex;
    justify-content: start;
    gap: 30px;
    padding: 20px;
    background-color: var(--background-color);
    height: 290px;
    position: relative;
  }

  .profile-picture {
    width: 450px;
    height: 250px;
    border-radius: 25px;
    border: 2px solid var(--primary-color-transparent);
  }

  .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    border: 2px solid var(--primary-color);
  }

  .profile-name {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0px;
  }

  .profile-name-sub {
    font-size: 15px;
    font-weight: semi-bold;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
  }

  .profile-description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .profile-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .posts-heading {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #cd8d2b;
  }

  .post-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .post-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    border: none;
    color: black;
  }

  .closeButton {
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px;
    bottom: 0;
    right: 0;
  }

  .closeButton:hover {
    background-color: #b37419;
  }
  .post-item {
    background-color: rgb(239, 236, 236);
    border-radius: 10px;
  }
  .popup-text {
    background-color: rgb(239, 236, 236);
  }

  .project_description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .project_description h5 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
@media screen and (device-width: 280px) and (device-height: 653px) {
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
    border-radius: 15px;
  }

  /* Styles for the popup content */
  .popup-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    width: 275px;
    height: 560px;
    overflow: auto;
    background-color: #fff;
    overflow: hidden;
  }

  .popup-content-row {
    display: flex;
    justify-content: start;
    gap: 30px;
    padding: 15px;
    background-color: var(--background-color);
    height: 210px;
    position: relative;
  }

  .profile-picture {
    width: 250px;
    height: 180px;
    border-radius: 25px;
    border: 2px solid var(--primary-color-transparent);
  }

  .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    border: 2px solid var(--primary-color);
  }

  .profile-name {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0px;
  }

  .profile-name-sub {
    font-size: 15px;
    font-weight: semi-bold;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
  }

  .profile-description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .profile-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 310px;
    overflow-y: auto;
  }
  .posts-heading {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #cd8d2b;
  }

  .post-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .post-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    border: none;
    color: black;
  }

  .closeButton {
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px;
    bottom: 0;
    right: 0;
  }

  .closeButton:hover {
    background-color: #b37419;
  }
  .post-item {
    background-color: rgb(239, 236, 236);
    border-radius: 10px;
  }
  .popup-text {
    background-color: rgb(239, 236, 236);
  }

  .project_description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .project_description h5 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
@media screen and (device-width: 1024px) and (device-height: 600px) {
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
    border-radius: 15px;
  }

  /* Styles for the popup content */
  .popup-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    width: 490px;
    height: 450px;
    overflow: auto;
    background-color: #fff;
    overflow: hidden;
  }

  .popup-content-row {
    display: flex;
    justify-content: start;
    gap: 30px;
    padding: 20px;
    background-color: var(--background-color);
    height: 225px;
    position: relative;
  }

  .profile-picture {
    width: 450px;
    height: 200px;
    border-radius: 25px;
    border: 2px solid var(--primary-color-transparent);
  }

  .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    border: 2px solid var(--primary-color);
  }

  .profile-name {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0px;
  }

  .profile-name-sub {
    font-size: 15px;
    font-weight: semi-bold;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
  }

  .profile-description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .profile-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .posts-heading {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #cd8d2b;
  }

  .post-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .post-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    border: none;
    color: black;
  }

  .closeButton {
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px;
    bottom: 0;
    right: 0;
  }

  .closeButton:hover {
    background-color: #b37419;
  }
  .post-item {
    background-color: rgb(239, 236, 236);
    border-radius: 10px;
  }
  .popup-text {
    background-color: rgb(239, 236, 236);
  }

  .project_description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .project_description h5 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
@media screen and (device-width: 1280px) and (device-height: 800px) {
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
    border-radius: 15px;
  }

  /* Styles for the popup content */
  .popup-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    width: 500px;
    height: 700px;
    overflow: auto;
    background-color: #fff;
    overflow: hidden;
  }

  .popup-content-row {
    display: flex;
    justify-content: start;
    gap: 30px;
    padding: 20px;
    background-color: var(--background-color);
    height: 290px;
    position: relative;
  }

  .profile-picture {
    width: 450px;
    height: 250px;
    border-radius: 25px;
    border: 2px solid var(--primary-color-transparent);
  }

  .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    border: 2px solid var(--primary-color);
  }

  .profile-name {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0px;
  }

  .profile-name-sub {
    font-size: 15px;
    font-weight: semi-bold;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
  }

  .profile-description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .profile-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .posts-heading {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #cd8d2b;
  }

  .post-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .post-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    border: none;
    color: black;
  }

  .closeButton {
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px;
    bottom: 0;
    right: 0;
  }

  .closeButton:hover {
    background-color: #b37419;
  }
  .post-item {
    background-color: rgb(239, 236, 236);
    border-radius: 10px;
  }
  .popup-text {
    background-color: rgb(239, 236, 236);
  }

  .project_description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .project_description h5 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
