  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
  }

.profile-img {
  max-width: 400px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.bio {
  color: #555;
}
.text-center{
    text-align: center;
}
  .container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
  }
.BTN{
  background-color: cadetblue;
  color: #fff;
  border-radius: 5px;
}
  .lang-switch {
    text-align: center;
    margin: 10px 0;
  }

  .py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .lang-switch button {
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
  }

  h1 {
    text-align: center;
    color: #333;
  }

  .tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 2px solid #ddd;
    margin-top: 20px;
  }

  .tab-button {
    padding: 12px 20px;
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .tab-button:hover,
  .tab-button.active {
    border-bottom: 3px solid #007bff;
    color: #007bff;
    font-weight: bold;
  }

  .tab-content {
    display: none;
    padding: 25px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin-top: 10px;
    border-radius: 8px;
  }

  .tab-content.active {
    display: block;
  }

  ul {
    padding-right: 20px;
    line-height: 2;
  }

  .en, .fa {
    display: none;
  }

  .lang-fa .fa, .lang-en .en {
    display: block;
  }

  .lang-fa {
    direction: rtl;
    text-align: right;
  }

  .lang-en {
    direction: ltr;
    text-align: left;
  }
