  /* Style pour le losange */
  .diamond {
    width: 25px;
    height: 25px;
    background-color: #33333300;
    /* Couleur de fond */
    transform: rotate(45deg);
    /* Rotation de 45 degrés pour créer un losange */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 5px;
  }

  .bio {
    color: #2c3e50;
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 80px;
    position: relative;
    text-align: center;
  }

  .circular-progress {
    width: 100px;
    height: 100px;
    background-color: transparent;
    border-radius: 50%;
    position: relative;
  }

  .circular-progress-bar {
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    /* Background color of the circle */
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }

  .percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    /* Adjust font size as needed */
  }

  .skill {

    color: #2c3e50;
    font-size: 50px;
    line-height: 50px;
    position: relative;
    text-align: center;

  }

  .animation-li::nth-child(1) {
    transition-delay: 100ms;
  }

  .animation-li::nth-child(2) {
    transition-delay: 400ms;
  }

  .animation-li::nth-child(3) {
    transition-delay: 800ms;
  }

  .photo {
    width: 200px;
    height: 200px;
    position: relative;
    transform: rotate(45deg);
    /* Rotate the container */
  }

  .img {
    width: 158px;
    height: 158px;
    border-radius: 50%;
    overflow: hidden;

  }

  .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Maintain aspect ratio while covering the diamond */

  }

  .media {
    width: 100%;
    height: auto;
    transform: rotate(-45deg);
  }

  .biography ul {
    padding: 25px 20px 30px;
  }

  .hidden {
    opacity: 0;
    transition: all 1s;
    filter: drop-shadow(50px);
    transform: translateX(-100%);
  }

  .show {
    opacity: 1;
    filter: drop-shadow(0px);
    transform: translateX(0);
  }

  /* Style pour l'icône GitHub */
  .github-icon {
    width: 25px;
    height: 25px;
    fill: #fff;
    /* Couleur de l'icône (blanc) */
  }
  .background-container {
    background-image: url('../images/background.jpg');
    background-size: cover;
    /* Adjust the background image size */
    background-position: center;
    z-index: -1;
    }

    .background-container::before {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

  .skill-title {
    width: 65%;
    font-size: 14px;

  }

  .skill-progress {
    position: relative;
  }

  .progress {

    margin-bottom: 40px;
    background-color: #3a4149;
    border-radius: 3px;
    box-shadow: 0 0 1px rgba(0, 0, 0, .6);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .6);
    width: 100%;
  }

  .progress .progress-bar.six-sec-ease-in-out {
    -webkit-transition: width 4s ease-in-out;
    -moz-transition: width 4s ease-in-out;
    -o-transition: width 4s ease-in-out;
    transition: width 4s ease-in-out;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    background-image: linear-gradient(to bottom, #3b8269 0, #68c3a3 100%);

  }

  .progress span {
    position: absolute;
    top: -18%;
    right: -3%;

    transform: translate(-50%, -50%);
    color: white;
    /* Text color */
    position: absolute;

    font-weight: bold;
  }

  .bg {
    padding-top: 120px;
    padding-bottom: 75px;
  }

  /* Style pour le lien GitHub */
  .github-link,
  .linkedin-link {
    text-decoration: none;
    color: white;
    transform: rotate(-45deg);

  }

  .skill-bar {
    width: 100%;
    height: 6px;
    background: #0dc9f3;
    display: block;
    position: relative;

  }


  .skill-bar span {
    position: absolute;
    border-top: 5px solid #0dc9f3;
    top: -30px;
    padding: 0;
    font-size: 18px;
    padding: 3px 0;
    font-weight: 500;
  }

  .skill-bar {
    position: relative;
  }



  /*rgb(181, 255, 44);*/
  .circle {
    display: flex;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(rgb(202, 255, 79) var(--progress), gray 0deg);
    font-size: 0;
    z-index: 1;
  }

  .circle::after {
    content: attr(data-progress) '%';
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin: 10px;
    border-radius: 50%;
    background: #333333;
    font-size: 1rem;
    text-align: center;
  }

  /* Style the tab */
  .tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
  }

  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
  }

  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ddd;
  }

  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #ccc;
  }

  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
  }