@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Climate+Crisis&family=Nunito&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fascinate+Inline&family=Nunito&display=swap");

* {
  margin: 0;
  box-sizing: border-box;
}

textarea {
  font-family: "Nunito", sans-serif;
  text-align: justify;
}

body {
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
  background-color: #e1e2e275;
}

textarea {
  width: 98%;
  height: 100px;
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 10px;
  outline: none;
  border: 1.5px solid #818181;
}

button {
  border: 1.5px dotted #818181 !important;
  outline: none !important;
  cursor: pointer !important;
  padding: 6px 20px !important;
  border-radius: 10px !important;
  background-color: #707070 !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  margin: 0 auto !important;
  margin-bottom: 10px !important;
  margin-top: 40px !important;
}

#ajouter_outil {
  margin-left: 60px !important;
  padding: 3px 10px !important;
}

#ajouter_langue {
  margin-left: 60px !important;
  padding: 3px 10px !important;
}

.nb {
  font-size: 12px;
  color: hsl(0, 89%, 74%);
  margin-bottom: 10px;
}

/* Nouvelle carte professionnelle avec QR code */
.section3 .qr-code {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 10px auto;
  width: 100%;
  max-width: 400px;
  position: relative;
}

/* Styles pour la carte professionnelle */
.section3 .qr-code .professional-card {
  width: 100%;
  aspect-ratio: 1.58 / 1; /* Ratio d'une carte bancaire/professionnelle */
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: all 0.3s ease;
  height: 170px;
  margin-bottom: 5px;
}

/* Éléments décoratifs de la carte */
.section3 .qr-code .card-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  top: -60px;
  right: -60px;
}

.section3 .qr-code .card-decoration:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -70px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 60%
  );
}

/* Logo en haut à droite de la carte */
.section3 .qr-code .card-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
}

.section3 .qr-code .card-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Rend le logo blanc */
  opacity: 0.9;
  transition: all 0.3s ease;
}

.section3 .qr-code .card-logo img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* Contenu central avec QR code */
.section3 .qr-code .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  height: 170px;
}

/* QR code centré avec fond blanc et logo au centre */
.section3 .qr-code .qr_code {
  display: block;
  background: white;
  padding: 15px;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 auto;
  height: 120px;
}

/* Suppression du logo au centre du QR code */

.section3 .qr-code .qr_code.active {
  display: block;
}

.section3 .qr-code .qr_code img {
  width: 110px;
  height: 110px;
  display: block;
  max-width: 110px;
  max-height: 100px;
}

/* Informations de l'utilisateur en bas de la carte */
.section3 .qr-code .card-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: white;
  margin-top: 5px;
  width: 100%;
}

.section3 .qr-code .card-info .card-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: right;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section3 .qr-code .card-info .card-profession {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  text-align: left;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Puce électronique simulée */
.section3 .qr-code .card-chip {
  position: absolute;
  width: 30px;
  height: 24px;
  background: linear-gradient(145deg, #d4af37, #f2d279);
  border-radius: 4px;
  top: 20px;
  left: 20px;
}

.section3 .qr-code .card-chip::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 12px;
  background: linear-gradient(to right, #d4af37, #f2d279, #d4af37);
  top: 6px;
  left: 5px;
  border-radius: 2px;
}

@media screen and (max-width: 500px) {
  .section3 .qr-code .professional-card {
    max-width: 320px;
  }
}

/* Boutons d'action */
.section3 .qr-code .card-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  width: 100%;
}

.section3 .qr-code .mon_qrcode {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  flex: 1;
  margin-right: 10px;
}

.section3 .qr-code .mon_qrcode:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.section3 .qr-code #open-scanner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(4, 186, 16, 0.8);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  flex: 1;
  margin-left: 10px;
}

.section3 .qr-code #open-scanner:hover {
  background-color: rgba(4, 186, 16, 1);
  transform: translateY(-2px);
}

.section3 .qr-code #open-scanner img {
  width: 18px;
  height: 18px;
  margin-left: 8px;
}

.section3 .qr-code .qr_code.active a {
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background-color: #0062ff;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 98, 255, 0.3);
}

.section3 .qr-code .qr_code.active a:hover {
  background-color: #0051d4;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 98, 255, 0.4);
}

/* Styles pour le scanner */
#qr-reader {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  border-radius: 15px;
  overflow: hidden;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#qr-reader {
  width: 400px;
  height: 300px;
  display: none;
}

/* section 2 et toute ces modification  */

.section2 .box3 .me {
  background-color: #ffffff;
  border-radius: 15px;
}
.section2 .box3 .me td a {
  color: black;
}
.section2 .box3 .tr {
  background-color: #797979;
}
.section2 .box3 .tr {
  color: #ffffff;
}

/* section 3 et toute ces modification  */

.section3 {
  margin-left: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* background: radial-gradient(circle, rgba(226,226,230,1) 0%, rgba(220,220,233,1) 35%, rgba(255,255,255,1) 100%); */

  background-position: center;
  background-attachment: fixed;
  position: relative;
  margin-top: 10px;
}

@media screen and (max-width: 1050px) {
  .section3 {
    width: 100%;
    padding-left: 0px;
    margin-left: 0;
  }
}

.fille {
  height: auto;
  width: 50%;
  margin-top: 20px;
  background-color: #ffffff;
  border: 1px solid rgba(179, 179, 179, 0.507);
  border-radius: 10px;
  box-shadow: 0 0 10px 2px #00000036;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1250px) {
  .fille {
    width: 80%;
  }
}
@media screen and (max-width: 550px) {
  .fille {
    width: 98%;
  }
}
.fille p {
  font-size: 16px;
  text-transform: capitalize;
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.fille .boxe {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 40px;
  overflow-y: hidden;
  margin: 20px 0;
  width: 100%;
}

.fille .boxe ul {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #b1b1b17b;
  margin-top: 20px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}
.fille .boxe ul li {
  list-style: none;
  width: 90%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}
.fille .boxe ul li .a {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin: 0 7px;
}
.fille .boxe ul .img {
  position: absolute;
  cursor: pointer;
  top: 10px;
  right: 20px;
  height: 20px;
  width: 20px;
}
.fille .boxe ul li .img3 {
  height: 25px;
  width: 25px;
  object-fit: cover;
  margin-left: 10px;
}
.fille .boxe ul li .img4 {
  height: 20px;
  width: 20px;
  object-fit: cover;
  margin-left: 10px;
}
.fille .boxe ul li .img2 {
  height: 15px;
  width: 15px;
  object-fit: cover;
}
.fille p img {
  height: 45px;
  width: 45px;
  transform: rotate(90deg);
}
.fille strong {
  font-size: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.fille strong img {
  height: 40px;
  width: 40px;
}
.fille form {
  border: 1px solid #b1b1b1;
  padding: 2px 7px;
  width: 200px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.fille form .box {
  display: flex;
  align-items: center;
}
.fille form #documentName {
  font-size: 14px;
  font-style: italic;
  color: #0004ff;
}

.fille form #tele {
  background-color: #e4144cb7;
  color: #ffffff;
  font-size: 12px;
  padding: 7px 15px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  margin-left: 10px;
}
.fille form label img {
  height: 50px;
  width: 50px;
  cursor: pointer;
}
.fille form #file {
  display: none;
}
.fille form #tele:hover {
  background-color: #f39c12;
}

@media screen and (max-width: 700px) {
  .fille form #documentName {
    font-size: 12px;
  }
  .fille .boxe ul {
    padding-top: 30px;
  }
  .fille .boxe ul li {
    font-size: 12px;
  }
}

.section3 .contactes {
  color: #ffffff;
  padding: 7px 20px;
  font-size: 16px;
  border-radius: 7px;
  background-color: #ff000062;
  border: none;
  z-index: 5;
  font-style: italic;
  margin-top: 20px;
}

.section3 .contact {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section3 .contact .contacte {
  color: #000000;
  font-size: 18px;
  border: none;
  z-index: 5;
  font-style: italic;
  background-color: #ffffff;
  box-shadow: 18px 18px 4px -11px rgba(0, 0, 0, 0.1);
  display: inline-block;
  height: 40px;
  width: 300px;
  text-align: left;
  cursor: pointer;
}
.section3 .contact .contacte span {
  background-color: #0004ff;
  padding: 7px 7px;
  margin-right: 30px;
}

.section3 .form_appel {
  width: 500px;
  position: absolute;
  top: 50px;
  z-index: 5;
  background-color: #ffffff;
  padding: 40px 10px;
  border-radius: 10px;
  box-shadow: 18px 18px 4px -11px rgba(0, 0, 0, 0.1); /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
  border: 1px solid rgba(133, 133, 133, 0.243);
  left: 260%;
  transform: translate(-50%);
  transition: all 0.4s ease-in-out;
}
.section3 .form_appel .div {
  width: 100%;
}

.section3 .form_appel img {
  height: 25px;
  width: 25px;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.cache {
  right: 0%;
}
.section3 .form_appel label {
  color: #0066ff;
  font-size: 14px;
  width: 80%;
}
.section3 .form_appel h1 {
  font-size: 25px;
  text-align: center;
}
.section3 .form_appel textarea {
  height: 300px;
  transition: all 0.4s;
  width: 80%;
  margin: 0 auto;
  display: block;
}
.section3 .form_appel textarea:hover {
  background-color: #0066ff09;
  box-shadow: 0 0 10px 2px #0066ff7c;
}
.section3 .form_appel textarea:focus {
  background-color: #0066ff09;
  box-shadow: 0 0 10px 2px #0066ff7c;
}
.section3 .form_appel .input1 {
  width: 90%;
  border-radius: 10px;
  margin: 10px auto;
  padding: 7px 15px;
  font-size: 14px;
  outline: none;
  border: 1px solid #00223392;
  transition: all 0.4s;
  display: block;
}
.section3 .form_appel .input1:hover {
  background-color: #0066ff09;
  box-shadow: 0 0 10px 2px #0066ff7c;
}
.section3 .form_appel .input1:focus {
  background-color: #0066ff09;
  box-shadow: 0 0 10px 2px #0066ff7c;
}
.section3 .form_appel .input {
  width: 100px;
  border-radius: 6px;
  margin: 10px auto;
  padding: 4px 30px;
  font-size: 13px;
  border: 1px solid #00223392;
  transition: all 0.4s;
  background-color: #008cffe5;
  text-align: center;
  color: #ffffff;
  display: block;
}
.section3 .form_appel input:hover {
  background-color: #002233;
  box-shadow: 0 0 10px 2px #0066ff7c;
}
.section3 .form_appel input:active {
  background-color: #002233;
  box-shadow: 0 0 10px 2px #0066ff7c;
}

@media screen and (max-width: 700px) {
  .section3 .form_appel {
    width: 330px;
    top: 50px;
    padding: 50px 10px;
  }
  .section3 .form_appel h1 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .section3 .form_appel .input1 {
    width: 95%;
    border-radius: 7px;
    margin: 10px auto;
    padding: 7px 15px;
    font-size: 12px;
  }
}

.section3 .card-body {
  width: 95%;
  margin: 0 auto;
  padding-bottom: 20px;
}

.section3 .card-body .mt-3 {
  width: 300px;
  margin: 0 auto;
  text-align: center;
}

.section3 .card-body #p {
  font-size: 11px;
  color: #00c3ff;
  text-align: center;
}

.section3 .card-body #notification-button-user {
  padding: 8px 20px;
  text-align: center;
  color: #ffffff;
  border-radius: 10px;
  border: 1px solid #c0c0c0;
  cursor: pointer;
  font-size: 12px;
  outline: none;
  transition: all 0.4s;
  margin: 5px auto;
}
.section3 .card-body #notification-button-user:hover {
  background-color: #919191;
  color: #000000;
  border: 1px solid #c0c0c0;
}

.section3 .card-body .btn-success {
  background-color: #21c401;
  color: #ffffff;
  border: 1px solid #c0c0c0;
  transition: all 0.4s;
}
.section3 .card-body .btn-success:hover {
  background-color: #202020;
  color: #ffffff;
  border: 1px solid #c0c0c0;
}

.section3 .card-body .btn-primary {
  background-color: #c01600;
  color: #ffffff;
  border: 1px solid #c0c0c0;
  transition: all 0.4s;
}

.section3 .container_box0 {
  width: 80%;
  padding: 10px;
  border: 2px solid #2c3e5026;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section3 .container_box0 h1 {
  width: 90%;
  font-size: 18px;
  text-align: center;
}
.section3 .container_box0 h1 span {
  color: red;
}
.section3 .container_box0 h1 strong {
  border-radius: 20px;
}

.section3 .container_box1 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.section3 .container_box1 .box1 {
  width: 800px;
  border: none;
  padding: 20px 40px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
}

.section3 .container_box1 .box1:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.section3 .container_box1 h2 {
  text-align: left;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(145deg, #f8f9fa, #edf0f3);
  text-align: left;
  font-size: 18px;
  padding: 16px 40px;
  margin-bottom: 25px;
  border-bottom: none;
  border-radius: 10px;
  color: #2c3e50;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}

.section3 .container_box1 h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0066ff, #3498db);
  border-radius: 3px;
}

.section3 .container_box1 h2 strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7f8c8d;
  font-size: 14px;
  font-weight: 500;
}

.section3 .container_box1 h2 img {
  height: 22px;
  width: 22px;
  margin-left: 8px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.section3 .container_box1 h2:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.section3 .container_box1 .buton,
.section3 .container_box1 .buttons {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  background: linear-gradient(145deg, #4d4d4d, #464646);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.section3 .container_box1 .buton:hover,
.section3 .container_box1 .buttons:hover {
  background: linear-gradient(145deg, #3498db, #0066ff);
  transform: translate(-50%, -3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.section3 .container_box1 .buton:active,
.section3 .container_box1 .buttons:active {
  transform: translate(-50%, 0);
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.2);
}

.section3 .container_box1 .buttons img,
.section3 .container_box1 .buton img {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.section3 .container_box1 .buttons:hover img,
.section3 .container_box1 .buton:hover img {
  transform: rotate(15deg);
}

.section3 .container_box1 .form_box,
.section3 .container_box1 .texte {
  width: 100%;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.section3 .container_box1 .form_box.active,
.section3 .container_box1 .texte.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.section3 .container_box1 .form_box form,
.section3 .container_box1 .texte form {
  width: 90%;
  padding: 30px;
  border: none;
  border-radius: 15px;
  position: relative;
  margin: 20px auto;
  background-color: #f8f9fa;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.section3 .container_box1 .form_box form:hover,
.section3 .container_box1 .texte form:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.section3 .container_box1 .form_box form img,
.section3 .container_box1 .texte form img {
  height: 25px;
  width: 25px;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  transition: all 0.4s;
  z-index: 3;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section3 .container_box1 .form_box form img:hover,
.section3 .container_box1 .texte form img:hover {
  transform: rotate(90deg) scale(1.1);
  background-color: rgba(255, 0, 0, 0.1);
}

.section3 .container_box1 .form_box form textarea,
.section3 .container_box1 .texte form textarea {
  height: 200px;
  width: 100%;
  font-size: 15px;
  border-radius: 12px;
  padding: 20px;
  color: #505050;
  font-family: "Nunito", sans-serif;
  margin-top: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  resize: none;
}

.section3 .container_box1 .form_box form textarea:focus,
.section3 .container_box1 .texte form textarea:focus {
  outline: none;
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
}

.section3 .container_box1 .form_box form textarea::placeholder,
.section3 .container_box1 .texte form textarea::placeholder {
  font-size: 15px;
  color: #aaa;
}

#caracteres-restants,
#caracteres-restantes {
  font-size: 13px;
  color: #95a5a6;
  margin-top: 8px;
  text-align: right;
  font-style: italic;
}

.section3 .container_box1 .form_box form #ajoute,
.section3 .container_box1 .texte form #ajoute {
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
  border: none;
  background: linear-gradient(145deg, #0066ff, #3498db);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.section3 .container_box1 .form_box form #ajoute:hover,
.section3 .container_box1 .texte form #ajoute:hover {
  background: linear-gradient(145deg, #3498db, #0066ff);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.15);
}

.section3 .container_box1 .form_box form #ajoute:active,
.section3 .container_box1 .texte form #ajoute:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.1);
}

.section3 .container_box1 .description {
  text-align: left;
  width: 100%;
  margin-top: 20px;
  font-size: 15px;
  margin-bottom: 100px;
  color: #505050;
  line-height: 1.7;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(248, 249, 250, 0.7);
  transition: all 0.3s ease;
}

.section3 .container_box1 .description:hover {
  background-color: rgba(248, 249, 250, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section3 .container_box1 .description .p {
  color: #95a5a6;
  font-size: 15px;
  font-style: italic;
}

.section3 .container_box1 .description img {
  height: 100px;
  width: 120px;
  object-fit: cover;
  max-width: 120px;
}

@media screen and (max-width: 1400px) {
  .section3 .container_box1 .box1 {
    width: 800px;
    margin-left: -20px;
  }
}

@media screen and (max-width: 1200px) {
  .section3 .container_box1 .box1 {
    width: 700px;
  }
  .section3 .container_box1 .box1 p {
    font-size: 15px;
  }
  .section3 .container_box1 h2 {
    font-size: 16px;
    padding: 14px 30px;
  }
  .section3 .container_box1 .description {
    font-size: 14px;
  }
}

@media screen and (max-width: 800px) {
  .section3 .container_box1 {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    padding: 20px 5px;
  }
  .section3 .container_box1 h2 {
    font-size: 16px;
    padding: 12px 20px;
  }
  .section3 .container_box1 h2::after {
    left: 20px;
    width: 40px;
  }
  .section3 .container_box1 .box1 {
    width: 98%;
    margin-left: 0px;
    padding: 20px;
  }
  .section3 .container_box1 .description {
    font-size: 14px;
    line-height: 1.6;
    padding: 15px;
    margin-bottom: 60px;
  }
  .section3 .container_box1 .form_box form,
  .section3 .container_box1 .texte form {
    width: 95%;
    padding: 20px;
  }
  .section3 .container_box1 .form_box form textarea,
  .section3 .container_box1 .texte form textarea {
    font-size: 14px;
    padding: 15px;
    height: 180px;
  }
  .section3 .container_box1 .buton,
  .section3 .container_box1 .buttons {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .section3 .container_box1 .box1 {
    width: 100%;
    padding: 15px;
  }
  .section3 .container_box1 h2 {
    padding: 10px 15px;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .section3 .container_box1 h2::after {
    left: 15px;
    width: 30px;
  }
  .section3 .container_box1 h2 strong {
    font-size: 12px;
  }
  .section3 .container_box1 h2 img {
    height: 18px;
    width: 18px;
  }
  .section3 .container_box1 .description {
    line-height: 1.6;
    padding: 12px;
    margin-bottom: 60px;
  }
  .section3 .container_box1 .form_box form,
  .section3 .container_box1 .texte form {
    width: 100%;
    padding: 15px;
  }
  .section3 .container_box1 .form_box form textarea,
  .section3 .container_box1 .texte form textarea {
    font-size: 13px;
    padding: 12px;
    height: 160px;
  }
  .section3 .container_box1 .form_box form #ajoute,
  .section3 .container_box1 .texte form #ajoute {
    font-size: 14px;
    padding: 10px 20px;
  }
  .section3 .container_box1 .buton,
  .section3 .container_box1 .buttons {
    padding: 8px 16px;
    font-size: 13px;
  }
  #caracteres-restants,
  #caracteres-restantes {
    font-size: 11px;
  }
}

.section3 .container_box2 {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.section3 .container_box2:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.section3 .container_box2 .box1 h1 {
  text-align: left;
  font-size: 18px;
  padding: 14px 40px;
  border: none;
  border-radius: 10px;
  color: #333;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  background: linear-gradient(145deg, #f6f6f6, #ebebeb);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.section3 .container_box2 .box1 h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color, #0066ff),
    var(--accent-color, #f39c12)
  );
  border-radius: 2px;
}

.section3 .container_box2 .box2 {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(133, 133, 133, 0.12);
  padding: 25px 20px;
  border-radius: 10px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.section3 .container_box2 .box2:hover {
  background-color: #f5f5f5;
}

.section3 .container_box2 .box2 h2 {
  color: #444;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.section3 .container_box2 .box2 .form {
  display: none;
}

.section3 .container_box2 .box2 .affiche_form {
  width: fit-content;
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
  border: none;
  background: linear-gradient(145deg, #5f5f5f, #444444);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.section3 .container_box2 .box2 .affiche_form img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.section3 .container_box2 .box2 .affiche_form:hover {
  background: linear-gradient(145deg, #444444, #333333);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.section3 .container_box2 .box2 .affiche_form:hover img {
  transform: rotate(15deg);
}

.section3 .container_box2 .box2 form {
  margin-top: 20px;
  width: 100%;
  border: none;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  display: block;
  background-color: #f9f9f9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: formFadeIn 0.4s forwards;
}

@keyframes formFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section3 .container_box2 .box2 form:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.section3 .container_box2 .box2 form img {
  height: 25px;
  width: 25px;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  transition: all 0.4s;
  z-index: 3;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section3 .container_box2 .box2 #imgs2 {
  right: 20px;
}

.section3 .container_box2 .box2 form img:hover {
  transform: rotate(90deg) scale(1.1);
  background-color: rgba(255, 0, 0, 0.1);
}

.section3 .container_box2 .box2 form .box_date {
  display: flex;
  justify-content: start;
  margin-bottom: 25px;
  flex-wrap: wrap;
  align-items: center;
}

.section3 .container_box2 .box2 form .boxmetier {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.section3 .container_box2 .box2 form .boxmetier .date {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  margin: 0 30px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.section3 .container_box2 .box2 form .boxmetier .date .mois {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.section3 .container_box2 .box2 form .boxmetier .date .annee {
  display: flex;
  align-items: center;
}

.section3 .container_box2 .box2 form .encours {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.section3 .container_box2 .box2 form .encours input {
  margin-left: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #444;
}

.section3 .container_box2 .box2 form .boxmetier .date select {
  padding: 10px 15px;
  height: 45px;
  width: 120px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.section3 .container_box2 .box2 form .boxmetier .date select:hover,
.section3 .container_box2 .box2 form .boxmetier .date select:focus {
  border-color: #555;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.section3 .container_box2 .box2 form .boxmetier .date select option {
  font-size: 15px;
  padding: 10px;
}

.section3 .container_box2 form #dat {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

.section3 .container_box2 .box2 form #Ajouter {
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
  border: none;
  background: linear-gradient(145deg, #5f5f5f, #444444);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.section3 .container_box2 .box2 form #Ajouter:hover {
  background: linear-gradient(145deg, #444444, #333333);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.section3 .container_box2 .box2 form #Ajouter:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section3 .container_box2 .box2 form #metier {
  height: 45px;
  width: 80%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 8px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.section3 .container_box2 .box2 form #metier:focus {
  outline: none;
  border-color: #5f5f5f;
  box-shadow: 0 0 0 3px rgba(95, 95, 95, 0.2);
}

.section3 .container_box2 .box3 {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(133, 133, 133, 0.12);
  padding: 25px 20px;
  width: 100%;
  border-radius: 10px;
  background-color: #f3f1f1;
  transition: all 0.3s ease;
}

.section3 .container_box2 .box3:hover {
  background-color: #f5f5f5;
}

.section3 .container_box2 .box3 .p {
  color: #888;
  font-size: 14px;
  font-style: italic;
}

.section3 .container_box2 .box3 .affiche_forms,
.section3 .container_box2 .box3 .affiche_formss {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  color: #ffffff;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  border-radius: 30px;
  background: linear-gradient(145deg, #5f5f5f, #444444);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.section3 .container_box2 .box3 .affiche_forms img,
.section3 .container_box2 .box3 .affiche_formss img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.section3 .container_box2 .box3 .affiche_forms:hover,
.section3 .container_box2 .box3 .affiche_formss:hover {
  background: linear-gradient(145deg, #444444, #333333);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.section3 .container_box2 .box3 .affiche_forms:hover img,
.section3 .container_box2 .box3 .affiche_formss:hover img {
  transform: rotate(15deg);
}

.section3 .container_box2 .box3 form {
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90%;
  display: none;
  border: none;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  background-color: #f9f9f9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: formFadeIn 0.4s forwards;
}

.section3 .container_box2 .box3 form:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.section3 .container_box2 .box3 form img {
  height: 25px;
  width: 25px;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  transition: all 0.4s;
  z-index: 3;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section3 .container_box2 .box3 form img:hover {
  transform: rotate(90deg) scale(1.1);
  background-color: rgba(255, 0, 0, 0.1);
}

.section3 .container_box2 .box3 form #Ajouter {
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: 20px;
  background: linear-gradient(145deg, #5f5f5f, #444444);
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.section3 .container_box2 .box3 form #Ajouter:hover {
  background: linear-gradient(145deg, #444444, #333333);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.section3 .container_box2 .box3 form #Ajouter:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section3 .container_box2 .box3 form div {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  width: 100%;
}

.section3 .container_box2 .box3 form label {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  font-weight: 500;
}

.section3 .container_box2 .box3 form select {
  font-size: 15px;
  padding: 10px 15px;
  border-radius: 8px;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.section3 .container_box2 .box3 form select:hover,
.section3 .container_box2 .box3 form select:focus {
  border-color: #555;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.section3 .container_box2 .box3 form select option {
  font-size: 15px;
  padding: 10px;
}

.section3 .container_box2 .box3 form #competence {
  height: 45px;
  width: 100%;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.section3 .container_box2 .box3 p {
  margin: 15px 0;
  font-size: 16px;
  color: #2e2e2e;
  line-height: 1.5;
}

.section3 .container_box2 .box3 p strong {
  margin-right: 10px;
  color: #333;
}

.section3 .container_box2 .box3 form #competence:hover,
.section3 .container_box2 .box3 form #competence:focus {
  outline: none;
  border-color: #5f5f5f;
  box-shadow: 0 0 0 3px rgba(95, 95, 95, 0.2);
}

.section3 .container_box2 .box3 h2 {
  color: #444;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.section3 .container_box2 .box3 .container_comp {
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}

.section3 .container_box2 .box3 .b2 p {
  color: #0062ff;
  font-size: 16px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 15px;
  background-color: rgba(253, 253, 253, 0.925);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.section3 .container_box2 .box3 .b2 p:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section3 .container_box2 .box3 .b2 p .cercl {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0062ff;
  margin-bottom: 10px;
}

.section3 .container_box2 .box3 .b2 p strong {
  color: #333;
  font-weight: 600;
}

.section3 .container_box2 .box3 .container_comp .comp {
  background-color: white;
  color: #444;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  font-size: 14px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  transition: all 0.3s ease;
}

.section3 .container_box2 .box3 .container_comp .comp:hover {
  background-color: #444;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section3 .container_box2 .box3 .container_comp p img {
  height: 15px;
  width: 15px;
  margin-left: 10px;
  transition: all 0.3s;
}

.section3 .container_box2 .box3 .container_comp p img:hover {
  transform: rotate(15deg) scale(1.1);
}

.section3 .container_box2 .box3 a:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 800px) {
  .section3 .container_box2 {
    width: 95%;
    padding: 25px 15px;
  }

  .section3 .container_box2 .box3 {
    width: 98%;
    padding: 15px;
  }

  .section3 .container_box2 .box3 form #competence {
    height: 40px;
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
  }

  .section3 .container_box2 .box3 form {
    width: 100%;
    display: none;
    border: none;
    border-radius: 10px;
    padding: 20px 15px;
  }

  .section3 .container_box2 .box2 .affiche_form,
  .section3 .container_box2 .box3 .affiche_forms,
  .section3 .container_box2 .box3 .affiche_formss {
    margin-left: auto;
    margin-right: 0;
    padding: 8px 15px;
  }

  .section3 .container_box2 .box2 form,
  .section3 .container_box2 .box3 form {
    padding: 20px 15px;
  }

  .section3 .container_box2 .box2 form #Ajouter,
  .section3 .container_box2 .box3 form #Ajouter {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .section3 .container_box2 .box1 h1 {
    font-size: 16px;
    padding: 12px 20px;
  }

  .section3 .container_box2 .box2 {
    padding: 15px 10px;
    width: 100%;
  }

  .section3 .container_box2 .box2 h2 {
    font-size: 16px;
  }

  .section3 .container_box2 .box2 .p {
    font-size: 13px;
  }

  .section3 .container_box2 .box2 p {
    font-size: 14px;
  }

  .section3 .container_box2 .box2 .affiche_form {
    width: fit-content;
    padding: 8px 15px;
    font-size: 13px;
  }

  .section3 .container_box2 .box2 form {
    padding: 15px 10px;
  }

  .section3 .container_box2 .box2 form textarea {
    font-size: 14px;
  }

  .section3 .container_box2 .box2 form .boxmetier .date {
    margin: 0 10px 15px 0;
    padding: 10px;
  }

  .section3 .container_box2 .box2 form .boxmetier .date select {
    height: 40px;
    width: 100px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .section3 .container_box2 .box2 form .boxmetier .date select option {
    font-size: 14px;
  }

  .section3 .container_box2 .box2 form #Ajouter {
    padding: 8px 15px;
    font-size: 14px;
  }

  .section3 .container_box2 .box2 form #metier {
    height: 40px;
    width: 100%;
    font-size: 14px;
  }

  .section3 .container_box2 .box2 .metier table tr span {
    font-size: 12px;
  }

  .section3 .container_box2 .box2 .metier table th {
    font-size: 12px;
  }

  .section3 .container_box2 .box2 .metier table th p {
    font-size: 12px;
  }

  .section3 .container_box2 .box2 .metier table #td {
    padding: 0 5px;
  }

  .section3 .container_box2 .box2 .metier table .date {
    font-size: 12px;
  }
}

@media screen and (max-width: 500px) {
  .section3 .container_box2 .box3 form #competence {
    height: 40px;
    width: 100%;
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 6px;
  }

  .section3 .container_box2 .box3 form {
    width: 100%;
    padding: 15px 10px;
  }

  .section3 .container_box2 .box3 form img {
    top: 10px;
    right: 10px;
  }

  .section3 .container_box2 .box3 .container_comp .comp {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
  }

  .section3 .container_box2 .box3 .affiche_forms,
  .section3 .container_box2 .box3 .affiche_formss {
    padding: 8px 15px;
    font-size: 13px;
  }

  .section3 .container_box2 .box3 form #Ajouter {
    padding: 8px 15px;
    font-size: 13px;
  }

  .section3 .container_box2 .box3 form label {
    font-size: 13px;
  }

  .section3 .container_box2 .box3 form select,
  .section3 .container_box2 .box3 form select option {
    font-size: 13px;
    padding: 8px 10px;
  }
}

.section3 .container_box3 {
  padding: 30px;
  background-color: #ffffff;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  width: 80%;
  position: relative;
  max-width: 1000px;
  transition: all 0.3s ease;
}

.section3 .container_box3:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.section3 .container_box3 .box4 {
  margin-bottom: 25px;
  width: 100%;
}

.section3 .container_box3 .box4 h1 {
  text-align: left;
  font-size: 18px;
  padding: 14px 40px;
  border: none;
  border-radius: 10px;
  color: #333;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  background: linear-gradient(145deg, #f6f6f6, #ebebeb);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.section3 .container_box3 .containne {
  display: none;
  width: 100%;
  animation: formFadeIn 0.4s forwards;
}

.section3 .container_box3 .containne.active {
  display: block;
}

.section3 .container_box3 .containne .formee {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 30px;
  border: none;
  border-radius: 15px;
  margin: 25px auto;
  flex-wrap: wrap;
  position: relative;
  background-color: #f9f9f9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.section3 .container_box3 .containne .formee:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.section3 .container_box3 .containne .formee img {
  position: absolute;
  top: 15px;
  right: 20px;
  height: 25px;
  width: 25px;
  cursor: pointer;
  transition: all 0.4s;
  z-index: 3;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section3 .container_box3 .containne .formee img:hover {
  transform: rotate(90deg) scale(1.1);
  background-color: rgba(255, 0, 0, 0.1);
}

.section3 .container_box3 .containne form .container_box {
  margin-right: 40px;
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.section3 .container_box3 .containne form .container_box:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section3 .container_box3 .containne form .container_box .date {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section3 .container_box3 .containne form .container_box .date select {
  padding: 10px 15px;
  height: 45px;
  width: 120px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.section3 .container_box3 .containne form .container_box .date select:hover,
.section3 .container_box3 .containne form .container_box .date select:focus {
  border-color: #555;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.section3 .container_box3 .containne form .container_box .date select option {
  font-size: 15px;
  padding: 10px;
}

.section3 .container_box3 .containne form .box1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.section3 .container_box3 .containne form .box1 .date .mois {
  margin-right: 15px;
}

.section3 .container_box3 .containne form .box1 label {
  text-align: left;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  font-weight: 500;
}

.section3 .container_box3 .containne form .box1 input {
  font-size: 15px;
  padding: 10px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
  width: 100%;
}

.section3 .container_box3 .containne form .box1 input:focus {
  outline: none;
  border-color: #5f5f5f;
  box-shadow: 0 0 0 3px rgba(95, 95, 95, 0.2);
  background-color: #ffffff;
}

.section3 .container_box3 .containne form .box1 input:hover {
  border-color: #5f5f5f;
  background-color: #ffffff;
}

.section3 .container_box3 .containne form .box1 .encours {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 15px;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.section3 .container_box3 .containne form .box1 .encours span {
  font-size: 14px;
  color: #555;
}

.section3 .container_box3 .containne form .box1 .encours input {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  cursor: pointer;
  accent-color: #444;
  box-shadow: none;
  margin-bottom: 0;
}

.section3 .container_box3 .containne form .box1 #ajouter {
  color: #ffffff;
  padding: 6px 25px;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
  background: linear-gradient(145deg, #5f5f5f, #444444);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.section3 .container_box3 .containne form .box1 #ajouter:hover {
  background: linear-gradient(145deg, #444444, #333333);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.section3 .container_box3 .containne form .box1 #ajouter:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section3 .container_box3 .fa-formation .Ajouters {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  color: #ffffff;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
  border: none;
  background: linear-gradient(145deg, #5f5f5f, #444444);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.section3 .container_box3 .fa-formation .Ajouters img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.section3 .container_box3 .fa-formation .Ajouters:hover {
  background: linear-gradient(145deg, #444444, #333333);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.section3 .container_box3 .fa-formation .Ajouters:hover img {
  transform: rotate(15deg);
}

.section3 .container_box3 .formations-list .edit-btn {
  background-color: #ffffff !important;
  border: none !important;
  margin-top: 0 !important;
}

/* Styles pour les tableaux */
.section3 .container_box3 .box5 {
  display: flex;
  align-items: left;
  justify-content: left;
  flex-direction: column;
  margin: 40px 0;
  width: 100%;
}

.section3 .container_box3 .box5 .p {
  color: #888;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 15px;
}

.section3 .container_box3 .box5 table {
  border-collapse: collapse;
  transition: all 0.3s ease;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.section3 .container_box3 .box5 table:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section3 .container_box3 .box5 table th {
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  color: #444;
  text-transform: capitalize;
  transition: all 0.3s ease;
  background-color: #f5f5f5;
  font-weight: 600;
}

.section3 .container_box3 .box5 table th:hover {
  background-color: #f0f0f0;
}

.section3 .container_box3 .box5 table td {
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 14px;
  padding: 8px 15px;
  transition: all 0.3s ease;
}

.section3 .container_box3 .box5 table tr:hover td {
  background-color: rgba(19, 155, 246, 0.05);
}

.section3 .container_box3 .box5 table .pt {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #5c8aff;
  font-style: italic;
}

@media screen and (max-width: 1100px) {
  .section3 .container_box3 {
    padding: 25px;
    width: 95%;
  }

  .section3 .container_box3 .box5 table .pt {
    font-size: 12px;
  }
}

@media screen and (max-width: 800px) {
  .section3 .container_box3 {
    padding: 20px;
    width: 95%;
  }

  .section3 .container_box3 .box4 h1 {
    font-size: 16px;
    padding: 12px 20px;
  }

  .section3 .container_box3 .containne .formee {
    width: 98%;
    padding: 20px 15px;
  }

  .section3 .container_box3 .containne form .container_box {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    padding: 15px;
  }

  .section3 .container_box3 .containne form .container_box .date {
    flex-wrap: wrap;
  }

  .section3 .container_box3 .containne form .container_box .date select {
    padding: 8px 15px;
    height: 40px;
    width: 100px;
    font-size: 14px;
  }

  .section3 .container_box3 .fa-formation .Ajouters {
    margin-left: auto;
    margin-right: 0;
    padding: 8px 15px;
    font-size: 14px;
  }

  .section3 .container_box3 .containne form .box1 input {
    font-size: 14px;
    padding: 8px 15px;
  }

  .section3 .container_box3 .containne form .box1 #ajouter {
    padding: 10px 20px;
    font-size: 14px;
  }

  .section3 .container_box3 .box5 table th {
    font-size: 13px;
    padding: 10px;
  }

  .section3 .container_box3 .box5 table td {
    font-size: 12px;
    padding: 8px;
  }
}

@media screen and (max-width: 600px) {
  .section3 .container_box3 {
    padding: 15px;
    width: 98%;
  }

  .section3 .container_box3 .box4 h1 {
    font-size: 15px;
    padding: 10px 15px;
  }

  .section3 .container_box3 .containne .formee {
    width: 100%;
    padding: 15px 10px;
  }

  .section3 .container_box3 .containne form .container_box {
    padding: 10px;
  }

  .section3 .container_box3 .containne form .container_box .date select {
    padding: 8px 10px;
    height: 38px;
    width: 90px;
    font-size: 13px;
  }

  .section3 .container_box3 .containne form .box1 label {
    font-size: 13px;
  }

  .section3 .container_box3 .containne form .box1 input {
    font-size: 13px;
    padding: 8px 10px;
  }

  .section3 .container_box3 .containne form .box1 #ajouter {
    padding: 8px 15px;
    font-size: 13px;
    width: fit-content;
  }

  .section3 .container_box3 .fa-formation .Ajouters {
    padding: 7px 12px;
    font-size: 13px;
  }

  .section3 .container_box3 .fa-formation .Ajouters img {
    width: 20px;
    height: 20px;
  }

  .section3 .container_box3 .box5 {
    overflow-x: auto;
  }

  .section3 .container_box3 .box5 table {
    min-width: 500px;
  }
}

.section3 .container_box4 {
  border: 1px solid rgba(165, 165, 165, 0.337);
  width: 700px;
  padding: 30px;
  margin-top: 50px;
  margin-left: -250px;
  padding: 20px;
  background-color: #ffffff;
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color=#000000)"; /*IE 8*/
  -moz-box-shadow: 18px 18px 4px -11px rgba(0, 0, 0, 0.1); /*FF 3.5+*/
  -webkit-box-shadow: 18px 18px 4px -11px rgba(0, 0, 0, 0.1); /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
  box-shadow: 18px 18px 4px -11px rgba(0, 0, 0, 0.1); /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color=#000000); /*IE 5.5-7*/
  -ms-backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  -moz-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.section3 .container_box4 .box1 {
  display: flex;
  align-items: normal;
  margin: 40px 0;
  overflow-x: auto;
}
.section3 .container_box4 .box1 .div {
  display: flex;
  flex-direction: column;
}
.section3 .container_box4 .box1 table {
  border-collapse: collapse;
  transition: all 0.3s ease-out;
  width: 100%;
}
.section3 .container_box4 .box1 table:hover {
  background-color: #139bf60e;
}
.section3 .container_box4 .box1 table th {
  width: 250px;
  max-width: 250px;
  min-width: 180px;
  border: 1px solid rgba(0, 0, 0, 0.337);
  /* background: linear-gradient(73deg,  #000000 0%,  #7e7e7e 100%); */
  background-color: #000000;
  color: #ffffff;
  padding: 10px 10px;
  transition: all 0.3s ease-out;
  font-size: 17px;
}
.section3 .container_box4 .box1 table th:hover {
  background-color: #002233;
}
.section3 .container_box4 .box1 table td {
  border: 1px solid rgba(0, 0, 0, 0.337);
  width: 250px;
  max-width: 250px;
  min-width: 180px;
  height: 80px;
  padding: 5px 20px;
  text-align: left;
  word-wrap: break-word;
  font-size: 16px;
  position: relative;
}

.section3 .container_box4 .box1 table td img {
  height: 20px;
  width: 20px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
}

.section3 .container_box4 .box2 {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.section3 .container_box4 .box2 .btn {
  background-color: #ffffff;
  color: #000000;
  padding: 5px 7px;
  border-radius: 5px;
  font-size: 13px;
  transition: all 0.3s ease-out;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  margin: 20px 10px;
  img {
    width: 40px;
    margin-right: 5px;
  }
}
.section3 .container_box4 .box2 .btn:hover {
  background-color: #f39c12;
}
.section3 .container_box4 .box3 {
  margin-top: 20px;
  display: none;
}
.section3 .container_box4 .box3 form {
  width: 100%;
  display: flex;
  align-items: center;
  border: 2px solid #00223376;
  padding: 10px;
  border-radius: 10px;
  flex-wrap: wrap;
  position: relative;
}

.section3 .container_box4 .box3 form img {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
}

.section3 .container_box4 .box3 form .input {
  width: 400px;
  height: 40px;
  font-size: 14px;
  padding: 0 10px;
  border-radius: 7px;
  outline: none;
  border: 2px solid #00223356;
}
.section3 .container_box4 .box3 form #ajouteer {
  color: #ffffff;
  padding: 5px 7px;
  border-radius: 5px;
  font-size: 13px;
  transition: all 0.3s ease-out;
  cursor: pointer;
  border: none;
  display: inline-block;
  width: 100px;
  text-transform: capitalize;
}
.section3 .container_box4 .box3 #ajouteer:hover {
  background-color: #f39c12;
}

@media screen and (max-width: 1400px) {
  .section3 .container_box4 {
    width: 700px;
    margin-left: -50px;
    padding: 20px;
  }
}

@media screen and (max-width: 800px) {
  .section3 .container_box4 {
    width: 90%;
    margin-left: -50px;
    padding: 20px;
  }
}
@media screen and (max-width: 600px) {
  .section3 .container_box4 {
    width: 98%;
    margin-left: 0px;
    padding: 20px;
  }
  .section3 .container_box4 .box1 {
    display: flex;
    align-items: normal;
    margin: 40px 0;
    flex-direction: column;
    overflow-x: auto;
  }

  .section3 .container_box4 .box1 table th {
    width: 250px;
    max-width: 250px;
    min-width: 180px;
    border: 1px solid rgba(0, 0, 0, 0.337);
    /* background: linear-gradient(73deg,  #000000 0%,  #7e7e7e 100%); */
    background-color: #000000;
    color: #ffffff;
    padding: 10px 10px;
    transition: all 0.3s ease-out;
    font-size: 14px;
  }
  .section3 .container_box4 .box1 table th:hover {
    background-color: #002233;
  }
  .section3 .container_box4 .box1 table td {
    border: 1px solid rgba(0, 0, 0, 0.337);
    width: 250px;
    max-width: 250px;
    min-width: 180px;
    height: 80px;
    padding: 5px 30px;
    text-align: left;
    word-wrap: break-word;
    font-size: 12px;
    position: relative;
  }
}

.section3 .container_box5 {
  border: 1px solid rgba(165, 165, 165, 0.337);
  width: 80%;
  padding: 30px;
  margin-top: 50px;
  background-color: #ffffff;
  box-shadow: 0 0 5px 1px #dddddd;
  border-radius: 7px;
  max-width: 1000px;
  position: relative;
}
.section3 .container_box5 .box1 h1 {
  text-align: left;
  font-size: 16px;
  padding: 10px 40px;
  border-bottom: 1px solid rgba(133, 133, 133, 0.258);
  border-radius: 5px;
  color: #000000;
  text-transform: uppercase;
  box-shadow: 0 0 5px 1px #dddddd;
  background-color: #ebebebc7;
}
.section3 .container_box5 .box2 {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 20px;
  flex-wrap: wrap;
}

.section3 .container_box5 .box2 .p {
  color: #9b9b9b;
  font-size: 16px;
  background-color: none !important;
  margin: 20px;
}
.section3 .container_box5 .box2 .outil button {
  display: flex;
  align-items: center;
  -webkit-transition: all 0.3s ease-out; /* Pour les anciens navigateurs */
  -moz-transition: all 0.3s ease-out; /* Pour Firefox */
  transition: all 0.3s ease-out; /* Pour les navigateurs modernes */
  margin-left: 40px;
}

.section3 .container_box5 .box2 .outil button img {
  width: 30px;
  margin-right: 10px;
}
.section3 .container_box5 .box2 .outil button:hover {
  background-color: #000000;
  color: #ffffff;
}
/* Styles communs pour les sections outils et langues */
.tools-section,
.languages-section {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.tools-section h1,
.languages-section h1 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.8rem;
}

.tools-list,
.languages-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-item,
.language-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 5px 15px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-item:hover,
.language-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tool-info,
.language-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tool-name,
.language-name {
  font-size: 1rem;
  color: #2c3e50;
  font-weight: 500;
}

.tool-level,
.language-level {
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Couleurs des niveaux */
.debutant {
  background: #e9ecef;
  color: #495057;
}

.intermediaire {
  background: #cff4fc;
  color: #055160;
}

.professionel {
  background: #d1e7dd;
  color: #0f5132;
}

.avencer {
  background: #cfe2ff;
  color: #084298;
}

.tool-actions,
.language-actions {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.tool-actions:hover,
.language-actions:hover {
  opacity: 1;
}

.delete-tool img,
.delete-language img {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Style du formulaire d'ajout */
.add-form {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.tcp {
  margin-bottom: 1.2rem;
}

.tcp label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 500;
}

.tcp input[type="text"],
.tcp select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.tcp input[type="text"]:focus,
.tcp select:focus {
  border-color: #4caf50;
  outline: none;
}

#ajout {
  background: #4caf50;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

#ajout:hover {
  background: #43a047;
}

/* Responsive design */
@media (max-width: 768px) {
  .tools-list,
  .languages-list {
    grid-template-columns: 1fr;
  }

  .tool-item,
  .language-item {
    padding: 0.8rem 1rem;
  }
}

.section3 .container_box5 .box3 {
  margin-top: 20px;
  display: none;
}
.section3 .container_box5 .box3 form {
  padding: 20px;
  position: relative;
  width: 450px;
  border: 2px solid #002233;
  border-radius: 10px;
}

.section3 .container_box5 .box3 form img {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  cursor: pointer;
}
.section3 .container_box5 .box3 form .tcp {
  margin: 10px 0;
}
.section3 .container_box5 .box3 form .tcp label {
  display: block;
}
.section3 .container_box5 .box3 form .tcp input {
  display: block;
  width: 400px;
  height: 40px;
  border-radius: 10px;
  font-size: 17px;
  padding: 0 10px;
}
.section3 .container_box5 .box3 form .tcp select {
  display: block;
  width: 400px;
  height: 40px;
  border-radius: 10px;
  font-size: 17px;
  padding: 0 10px;
}
.section3 .container_box5 .box3 form .tcp #ajout {
  background-color: #b1b1b1;
  padding: 5px 7px;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease-out;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}
.section3 .container_box5 .box3 form .tcp #ajout:hover {
  background-color: #f39c12;
}

@media screen and (max-width: 800px) {
  .section3 .container_box5 {
    border: 1px solid rgba(165, 165, 165, 0.337);
    width: 98%;
    padding: 20px 10px;
  }
  .section3 .container_box5 .box1 h1 {
    text-align: left;
    font-size: 16px;
  }
  .section3 .container_box5 .box2 {
    margin: 30px 15px;
    width: 100%;
  }

  .section3 .container_box5 .box2 .p {
    color: #9b9b9b;
    font-size: 14px;
    background-color: none !important;
    margin: 20px;
  }
  .section3 .container_box5 .box2 .outil button {
    padding: 5px 7px;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease-out;
    margin-top: 20px;
    cursor: pointer;
    border: none;
  }
  .section3 .container_box5 .box2 .outil button img {
    width: 30px;
  }
  .section3 .container_box5 .box2 .outil button:hover {
    background-color: #f39c12;
  }
  .section3 .container_box5 .box2 table {
    border-collapse: collapse;
    width: 100%;
  }

  .section3 .container_box5 .box2 table td {
    height: 50px;
    width: 200px;
    padding: 5px 10px;
    font-weight: 600;
    font-size: 12px;
  }

  .section3 .container_box5 .box2 table td img {
    height: 20px;
    width: 20px;
    transition: all 0.4s ease;
  }
  .section3 .container_box5 .box2 table td img:hover {
    transform: scale(1.1);
    transform: rotate(90deg);
  }
  .section3 .container_box5 .box2 table .niveau {
    font-style: italic;
    font-weight: 400;
    color: #0066ff;
  }
  .section3 .container_box5 .box3 {
    margin-top: 20px;
    display: none;
  }
  .section3 .container_box5 .box3 form {
    padding: 20px;
    border: 1px solid #0004ff54;
    width: 100%;
    border-radius: 10px;
  }
  .section3 .container_box5 .box3 form .tcp {
    margin: 10px 0;
  }
  .section3 .container_box5 .box3 form .tcp label {
    display: block;
  }
  .section3 .container_box5 .box3 form .tcp input {
    display: block;
    width: 90%;
    height: 30px;
    border-radius: 10px;
    font-size: 12px;
    padding: 0 10px;
    border: 2px solid #00000093;
  }
  .section3 .container_box5 .box3 form .tcp select {
    display: block;
    width: 80%;
    height: 30px;
    border-radius: 10px;
    font-size: 15px;
    padding: 0 10px;
  }
  .section3 .container_box5 .box3 form .tcp #ajout {
    color: #ffffff;
    padding: 5px 7px;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease-out;
    margin-top: 20px;
    cursor: pointer;
    border: none;
  }
  .section3 .container_box5 .box3 form .tcp #ajout:hover {
    background-color: #f39c12;
  }
}

.section3 .container_box6 {
  width: 80%;
  max-width: 700px;
  min-width: 300px;

  padding: 30px;
  background-color: #ffffff;
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color=#000000)"; /*IE 8*/
  -moz-box-shadow: 18px 18px 4px -11px rgba(0, 0, 0, 0.1); /*FF 3.5+*/
  -webkit-box-shadow: 18px 18px 4px -11px rgba(0, 0, 0, 0.1); /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
  box-shadow: 18px 18px 4px -11px rgba(0, 0, 0, 0.1); /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color=#000000); /*IE 5.5-7*/
  -ms-backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -moz-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 7px;
  transition: all 0.3s ease-in-out;
  margin-top: 40px;
}

#img {
  height: 25px;
  width: 25px;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 10px;
  right: 10px;
}

.section3 .container_box6 .box1 h1 {
  padding: 10px;
  border-bottom: 1px solid rgba(165, 165, 165, 0.337);
  width: 100%;
  text-transform: uppercase;
}

.box_assistance {
  position: fixed;
  top: 80%;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 25;
}

.box_assistance #contacte {
  display: flex;
  align-items: center;
  color: #ffffff;
  background-color: #ffffff;
  text-decoration: none;
  margin-bottom: 5px;
  padding: 6px 10px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  z-index: 19;
  transition: all 0.3s ease-in-out;
}

.box_assistance #contacte img {
  height: 30px;
  width: 30px;
  object-fit: cover;
}

.box_assistance #contacte:hover {
  transform: scale(1.1);
  background-color: #000000;
}

.box_assistance .mail {
  display: flex;
  align-items: center;
  color: #ffffff;
  background-color: #ff0000;
  text-decoration: none;
  margin-bottom: 5px;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.box_assistance .mail img {
  height: 25px;
  width: 25px;
  object-fit: cover;
}

.box_assistance .mail:hover {
  transform: scale(1.1);
  background-color: #000000;
}

.box_assistance .whatsapp {
  display: flex;
  align-items: center;
  color: #ffffff;
  background-color: #00a003;
  text-decoration: none;
  margin-bottom: 5px;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 14px;
}

.box_assistance .whatsapp img {
  height: 25px;
  width: 25px;
  object-fit: cover;
}

.box_assistance .whatsapp:hover {
  transform: scale(1.1);
  background-color: #000000;
}

.section3 .container_box6 .box1 {
  display: block; /* Changement de flex à block pour une meilleure compatibilité */
  text-align: center; /* Centrer le contenu au lieu d'utiliser flex */
}

.section3 .container_box6 .box1 a {
  display: inline-block; /* Utiliser inline-block pour les liens */
}

.section3 .container_box6 .box1 a img {
  margin-right: 5px;
}

.section3 .container_box6 .box1 p {
  font-size: 18px;
  margin: 0; /* Ajout d'une marge nulle pour éviter les espaces indésirables */
}
.section3 .container_box6 .box2 {
  margin-top: 20px;
}
.section3 .container_box6 .box2 form {
  position: relative;
  width: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section3 .container_box6 .box2 textarea {
  width: 90%;
  padding: 20px;
  font-size: 18px;
  border-radius: 10px;
  height: 200px;
  outline: none;
  border: 1px solid rgba(165, 165, 165, 0.551);
  transition: all 0.5s ease-in-out;
}
.section3 .container_box6 .box2 textarea:hover {
  background-color: #71b9e91b;
}

.section3 .container_box6 .box2 form button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  color: #ffffff;
  padding: 5px 7px;
  border-radius: 5px;
  font-size: 15px;
  transition: all 0.3s ease-out;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}
.section3 .container_box6 .box2 form button:hover {
  background-color: #f39c12;
}

@media screen and (max-width: 800px) {
  .section3 .container_box6 {
    width: 95%;
    margin-top: 50px;
    padding: 30px 10px;
  }

  .section3 .container_box6 .box1 h1 {
    padding: 10px;
    border-bottom: 1px solid rgba(165, 165, 165, 0.337);
    width: 100%;
    font-size: 16px;
  }
  .section3 .container_box6 .box2 {
    margin-top: 20px;
  }
  .section3 .container_box6 .box2 form {
    position: relative;
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section3 .container_box6 .box2 textarea {
    width: 90%;
    padding: 20px;
    font-size: 12px;
    border-radius: 10px;
    height: 200px;
    outline: none;
    border: 1px solid rgba(165, 165, 165, 0.551);
    transition: all 0.5s ease-in-out;
  }

  .box_assistance #contacte {
    margin-bottom: 5px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
  }

  .box_assistance #contacte img {
    height: 20px;
    width: 20px;
    /* object-fit: cover; */
  }

  .box_assistance .mail {
    margin-bottom: 5px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 14px;
  }

  .box_assistance .mail img {
    height: 20px;
    width: 20px;
    /* object-fit: cover; */
  }

  .box_assistance .whatsapp {
    margin-bottom: 5px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 14px;
  }

  .box_assistance .whatsapp img {
    height: 20px;
    width: 20px;
  }
}

.section3 .container_box7 {
  border: 1px solid rgba(165, 165, 165, 0.337);
  width: 80%;
  padding: 30px;
  margin-top: 50px;
  background-color: #ffffff;
  box-shadow: 0 0 5px 1px #dddddd;
  border-radius: 7px;
  max-width: 1000px;
}
.section3 .container_box7 .box1 {
  padding: 4px 0;
  border-bottom: 1px solid rgba(165, 165, 165, 0.337);
}
.section3 .container_box7 .ajout {
  background-color: #ebebebc7;
  color: #4d4d4d;
  padding: 3px 15px;
  border-radius: 5px;
  font-size: 15px;
  margin-top: 20px;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  -webkit-transition: all 0.3s ease-out; /* Pour les anciens navigateurs */
  -moz-transition: all 0.3s ease-out; /* Pour Firefox */
  transition: all 0.3s ease-out; /* Pour les navigateurs modernes */
}

.section3 .container_box7 .ajout img {
  width: 30px;
  margin-right: 10px;
}
.section3 .container_box7 .ajout:hover {
  background-color: #000000;
  color: #ffffff;
}
.section3 .container_box7 .box1 h1 {
  text-align: left;
  font-size: 16px;
  padding: 10px 40px;
  border-bottom: 1px solid rgba(133, 133, 133, 0.258);
  border-radius: 5px;
  color: #000000;
  text-transform: uppercase;
  box-shadow: 0 0 5px 1px #dddddd;
  background-color: #ebebebc7;
}

.section3 .container_box7 .form_projet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  display: none;
  margin: 20px;
}
.section3 .container_box7 .form_projet form {
  display: block; /* Changement de flex à block pour une meilleure compatibilité */
  padding: 20px 40px;
  border: 2px solid #002233;
  border-radius: 7px;
  width: 80%;
  position: relative;
}

.section3 .container_box7 .form_projet form .im {
  position: absolute;
  width: 20px;
  top: 10px;
  right: 20px;
  cursor: pointer;
}
.section3 .container_box7 .form_projet form #ajouter {
  color: #ffffff;
  padding: 5px 7px;
  border-radius: 5px;
  font-size: 15px;
  transition: all 0.3s ease-out;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}
.section3 .container_box7 .form_projet form #ajouter:hover {
  background-color: #f39c12;
}
.section3 .container_box7 .form_projet form .box {
  margin: 10px 0;
}
.section3 .container_box7 .form_projet form .box label {
  display: block;
  font-size: 16px;
}
.section3 .container_box7 .form_projet form .box input {
  width: 70%;
  height: 30px;
  font-size: 17px;
  padding: 0 10px;
  border-radius: 7px;
}
.section3 .container_box7 .form_projet form .box p {
  font-size: 16px;
  font-weight: 600;
}

.section3 .container_box7 .form_projet form .box .imageView label img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.section3 .container_box7 .form_projet form .box .imageView {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.section3 .container_box7 .form_projet form .box .imageView #images {
  display: none;
}
.section3 .container_box7 .form_projet form .box .imageView img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.section3 .container_box7 .box2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.section3 .container_box7 .box2 .p {
  color: #9b9b9b;
  font-size: 18px;
  background-color: none !important;
  margin: 20px;
}
.section3 .container_box7 .info_projet {
  padding: 30px 10px;
  border: 1px solid #dddddd;
  box-shadow: 0 0 5px 1px #dddddd;
  border-radius: 5px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  width: 350px;
}
.section3 .container_box7 .info_projet .supp {
  position: absolute;
  top: 10px;
  right: 15px;
  height: 20px;
  width: 20px;
}
.section3 .container_box7 .info_projet h2 {
  font-size: 15px;
  color: #000000;
  border-bottom: 1px solid rgba(165, 165, 165, 0.337);
  padding-bottom: 7px;
  margin-bottom: 10px;
}

.section3 .container_box7 .info_projet p {
  font-size: 13px;
  width: 100%;
}
.section3 .container_box7 .info_projet a {
  color: #3451c6;
  padding: 2px 4px;
  border-radius: 5px;
  display: inline;
  font-size: 12px;
  text-decoration: none;
  width: 100%;
}
.section3 .container_box7 .info_projet img {
  height: 150px;
  width: 160px;
  object-fit: cover;
  border-radius: 7px;
  margin-top: 10px;
  border: 1px solid #7575755f;
}

@media screen and (max-width: 1200px) {
  .section3 .container_box7 .form_projet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    display: none;
    margin: 20px 0;
  }

  .section3 .container_box7 .form_projet form {
    display: flex;
    align-items: left;
    justify-content: center;
    padding: 20px 40px;
    border: 1px solid #2c3e5035;
    border-radius: 7px;
    flex-direction: column;
    width: 100%;
  }
  .section3 .container_box7 .form_projet form #ajouters {
    padding: 5px 7px;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease-out;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    background-color: #2293cc;
    color: #535353;
  }
  .section3 .container_box7 .form_projet form .box {
    margin: 10px 0;
  }
  .section3 .container_box7 .form_projet form .box label {
    display: block;
    font-size: 16px;
  }
  .section3 .container_box7 .form_projet form .box input {
    width: 80%;
    height: 30px;
    font-size: 17px;
    padding: 0 10px;
    border-radius: 7px;
  }
  .section3 .container_box7 .form_projet form .box p {
    font-size: 16px;
    font-weight: 600;
  }

  .section3 .container_box7 .form_projet form .box .imageView label img {
    width: 80px;
    height: 80px;
    object-fit: cover;
  }
  .section3 .container_box7 .form_projet form .box .imageView {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .section3 .container_box7 .form_projet form .box .imageView #images {
    display: none;
  }
  .section3 .container_box7 .form_projet form .box .imageView img {
    width: 80px;
    height: 80px;
    object-fit: cover;
  }
}
@media screen and (max-width: 700px) {
  .section3 .container_box7 {
    width: 98%;
    padding: 30px 1px;
  }

  .section3 .container_box7 .box1 h1 {
    font-size: 16px;
  }

  .section3 .container_box7 .form_projet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    display: none;
    margin: 20px 0;
  }
  .section3 .container_box7 .box2 {
    padding: 10px 2px;
  }
  .section3 .container_box7 .form_projet form {
    display: flex;
    align-items: left;
    justify-content: center;
    padding: 20px 10px;
    border: 1px solid #2c3e5035;
    border-radius: 7px;
    flex-direction: column;
    width: 100%;
  }

  .section3 .container_box7 .form_projet form #ajouters {
    background-color: #2293cc;
    color: #535353;
    padding: 5px 7px;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease-out;
    margin-top: 20px;
    cursor: pointer;
    border: none;
  }
  .section3 .container_box7 .form_projet form .box {
    margin: 10px 0;
  }
  .section3 .container_box7 .form_projet form .box label {
    display: block;
    font-size: 12px;
  }
  .section3 .container_box7 .form_projet form .box input {
    width: 90%;
    height: 30px;
    font-size: 12px;
    padding: 0 10px;
    border-radius: 7px;
    border: 2px solid #00000093;
    outline: none;
  }
  .section3 .container_box7 .form_projet form .box p {
    font-size: 12px;
    font-weight: 600;
  }

  .section3 .container_box7 .form_projet form .box .imageView label img {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }
  .section3 .container_box7 .form_projet form .box .imageView {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .section3 .container_box7 .form_projet form .box .imageView #images {
    display: none;
  }
  .section3 .container_box7 .form_projet form .box .imageView img {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }

  .section3 .container_box7 .info_projet h2 {
    font-size: 14px;
    color: #000000;
    border-bottom: 1px solid rgba(165, 165, 165, 0.337);
    padding-bottom: 7px;
    margin-bottom: 10px;
  }

  .section3 .container_box7 .info_projet p {
    font-size: 12px;
    width: 100%;
  }
  .section3 .container_box7 .info_projet a {
    color: #3451c6;
    padding: 2px 4px;
    border-radius: 5px;
    display: inline;
    font-size: 11px;
    text-decoration: none;
    width: 100%;
  }
}

.section3 .container_box8 {
  border: 1px solid rgba(165, 165, 165, 0.337);
  width: 80%;
  padding: 30px;
  margin-top: 50px;
  background-color: #ffffff;
  max-width: 1000px;
}
.section3 .container_box8 .box1 h1 {
  text-align: left;
  font-size: 16px;
  padding: 10px 40px;
  border-bottom: 1px solid rgba(133, 133, 133, 0.258);
  border-radius: 5px;
  color: #000000;
  text-transform: uppercase;
  box-shadow: 0 0 5px 1px #dddddd;
  background-color: #ebebebc7;
}

.section3 .container_box8 .box2 .p {
  color: #9b9b9b;
  font-size: 18px;
  background-color: none !important;
  margin: 20px;
}
.section3 .container_box8 .box2 button {
  background-color: #ebebebc7;
  color: #4d4d4d;
  padding: 3px 15px;
  border-radius: 5px;
  font-size: 15px;
  margin-top: 20px;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  -webkit-transition: all 0.3s ease-out; /* Pour les anciens navigateurs */
  -moz-transition: all 0.3s ease-out; /* Pour Firefox */
  transition: all 0.3s ease-out; /* Pour les navigateurs modernes */
}

.section3 .container_box8 .box2 button img {
  width: 30px;
  cursor: pointer;
  margin-right: 10px;
}
.section3 .container_box8 .box2 button:hover {
  background-color: #000000;
  color: #ffffff;
}

.section3 .container_box8 .box2 form {
  padding: 20px 30px;
  display: none;
  border: 2px solid #0022335c;
  border-radius: 10px;
  margin-top: 20px;
  position: relative;
}

.section3 .container_box8 .box2 form img {
  position: absolute;
  width: 20px;
  top: 10px;
  right: 20px;
  cursor: pointer;
}
.section3 .container_box8 .box2 form #interet {
  width: 50%;
  padding: 2px 10px;
  outline: none;
  font-size: 16px;
  border-radius: 7px;
  border: 2px solid rgba(0, 0, 0, 0.258);
  transition: all 0.4s;
  height: 40px;
}
.section3 .container_box8 .box2 form #interet:hover {
  box-shadow: 0 0 7px 4px #0004ff4f;
  border: 2px solid #0004ff54;
}

.section3 .container_box8 form #ajouters {
  background-color: #2293cc;
  color: #535353;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 15px;
  transition: all 0.3s ease-out;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
}
.section3 .container_box8 .box2 form #ajouters:hover {
  background-color: #f39c12;
}

.section3 .container_box8 .box2 ul li {
  font-size: 18px;
  font-style: italic;
  text-transform: capitalize;
  margin: 5px 30px;
}

.section3 .container_box8 .box2 ul {
  margin: 20px 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.section3 .container_box8 .box2 ul li img {
  height: 18px;
  width: 18px;
  margin-left: 40px;
}
@media screen and (max-width: 700px) {
  .section3 .container_box8 {
    border: 1px solid rgba(165, 165, 165, 0.337);
    width: 98%;
    padding: 30px 10px;
  }
  .section3 .container_box8 .box1 h1 {
    padding: 10px;
    border-bottom: 1px solid rgba(165, 165, 165, 0.337);
    width: 100%;
    font-size: 16px;
  }
  .section3 .container_box8 .box2 {
    width: 100%;
  }
  .section3 .container_box8 .box2 .p {
    color: #9b9b9b;
    font-size: 15px;
    background-color: none !important;
    margin: 20px;
  }
  .section3 .container_box8 .box2 button {
    color: #ffffff;
    padding: 5px 7px;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease-out;
    cursor: pointer;
    border: none;
  }
  .section3 .container_box8 .box2 button:hover {
    background-color: #f39c12;
  }

  .section3 .container_box8 .box2 form {
    padding: 20px 10px;
    display: none;
    width: 95%;
    border: 2px solid #0022335c;
    border-radius: 10px;
    margin-top: 20px;
  }
  .section3 .container_box8 .box2 form #interet {
    width: 100%;
    padding: 2px 10px;
    outline: none;
    font-size: 14px;
    border-radius: 7px;
    border: 2px solid rgba(0, 0, 0, 0.258);
    transition: all 0.4s;
    height: 40px;
    outline: none;
  }
  .section3 .container_box8 .box2 form #interet:hover {
    box-shadow: 0 0 7px 4px #0004ff4f;
    border: 2px solid #0004ff54;
  }

  .section3 .container_box8 .box2 form #ajouter {
    background-color: #002233;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease-out;
  }
  .section3 .container_box8 .box2 form #ajouter:hover {
    background-color: #f39c12;
  }

  .section3 .container_box8 .box2 ul li {
    font-size: 12px;
    font-style: italic;
    text-transform: capitalize;
  }

  .section3 .container_box8 .box2 ul {
    margin: 20px 10px;
    width: 100%;
  }

  .section3 .container_box8 .box2 ul li img {
    height: 18px;
    width: 18px;
    margin-left: 40px;
  }
}

.section3 .container_box10 {
  border: 1px solid rgba(165, 165, 165, 0.337);
  width: 98%;
  padding: 30px 5px;
  margin-top: 50px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 1200px;
}

.section3 .container_box10 .slider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.section3 .container_box10 .slider .carousel {
  width: 470px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(247, 247, 247, 0.499);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(105, 104, 104, 0.411);
  box-shadow: 7px 6px 10px -5px #00000093;
  transition: all 0.5s ease-in-out;
  position: relative;
  margin: 10px 10px;
  background-color: #ffffff;
  padding: 5px 10px;
}

.section3 .container_box10 .slider .carousel .info-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 15px;
  width: 100%;
}

.section3 .container_box10 .slider .carousel:hover {
  transform: scale(1.05);
}

.section3 .container_box10 .slider .carousel .message {
  font-size: 14px;
  width: 350px;
  text-align: center;
  padding: 20px 30px;
  border: 1px solid #ffffff;
  border: 1px solid #2c3e502d;
  box-shadow: 8px 6px 7px 0px #2c3e5080;
}

.section3 .container_box10 .slider .carousel img {
  height: 80px;
  width: 80px;
  max-width: 80px;
  min-width: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #2c3e50;
  margin-right: 20px;
}

.section3 .container_box10 .slider .carousel .p {
  /* background-color: #0a062da4; */
  width: 100%;
  font-size: 18px;
  border-bottom-right-radius: 15px;
  margin-bottom: 5px;
}

.section3 .container_box10 .slider .carousel .p strong {
  text-transform: uppercase;
  font-size: 16px;
}

.section3 .container_box10 .slider .carousel .poste {
  font-size: 13px;
  margin-bottom: 10px;
}

.section3 .container_box10 .slider .carousel #nom {
  font-weight: 400;
  text-align: center;
  overflow: hidden;
  font-size: 13px;
  margin-top: 4px;
  max-height: 20px;
  width: 100%;
  color: #3451c6;
  position: absolute;
  bottom: 35px;
  width: 100%;
  text-align: center;
  left: 0;
}

.section3 .container_box10 .slider .carousel p span {
  color: #f39c12;
  font-size: 13px;
  margin-right: 5px;
}

.section3 .container_box10 .slider .carousel .box_vendu {
  display: flex;
  width: 100%;
}

.section3 .container_box10 .slider .carousel .vendu {
  display: flex !important;
  font-size: 15px;
  width: 100%;
  margin-bottom: 20px;
}

.section3 .container_box10 .slider .carousel .vendu p {
  font-size: 12px;
  margin-bottom: 5px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section3 .container_box10 .slider .carousel .vendu .ville {
  font-size: 12px;
}

.section3 .container_box10 .slider .carousel .vendu span {
  padding: 5px 8px;
  margin-right: 6px;
  background-color: #0a062d;
  border-radius: 10px;
  margin-bottom: 4px;
}

.section3 .container_box10 .slider .carousel a {
  background-color: #0a062d;
  width: 100%;
  padding: 4px 10px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  display: block;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 3px;
  left: 0%;
}

.section3 .container_box10 .slider .carousel a :nth-child(1) {
  margin-right: 7px;
}

.section3 .container_box10 .slider .carousel a:hover {
  background-color: #2c3e50;
}

.section3 .container_box10 .produit_vedete .box2 {
  width: 70%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.section3 .container_box10 .produit_vedete .box2 span {
  height: 30px;
  width: 40px;
  background-color: #0a062d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  transition: all 0.3s ease-in-out;
}

.section3 .container_box10 .produit_vedete .box2 span:hover {
  transform: scale(1.1);
  background-color: #f39c12;
}

.section3 .container_box10 .produit_vedete .box2 span {
  color: white;
  font-size: 25px;
}

@media screen and (max-width: 1320px) {
}

@media screen and (max-width: 1220px) {
  .section3 .container_box10 .produit_vedete h1 {
    font-size: 25px;
  }

  .section3 .container_box10 .produit_vedete .box1 {
    width: 80%;
    margin-bottom: 50px;
  }

  .section3 .container_box10 .produit_vedete .box1 h1 {
    font-size: 16px;
  }

  .section3 .container_box10 .produit_vedete .box1 .affiche {
    height: 300px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 650px) {
  .section3 .container_box10 {
    width: 98%;
    padding: 20px 5px;
  }

  .section3 .container_box10 .slider .carousel {
    width: 99%;
    height: 200px;
    margin: 10px 5px;
    padding: 5px 5px;
  }

  .section3 .container_box10 .slider .carousel .message {
    font-size: 12px;
    width: 300px;
    text-align: center;
    padding: 10px 20px;
  }

  .section3 .container_box10 .slider .carousel img {
    height: 60px;
    width: 60px;
    max-width: 60px;
    min-width: 60px;
    margin-right: 10px;
  }

  .section3 .container_box10 .slider .carousel .p {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .section3 .container_box10 .slider .carousel .p strong {
    font-size: 12px;
  }

  .section3 .container_box10 .slider .carousel .poste {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .section3 .container_box10 .slider .carousel #nom {
    font-size: 9px;
    bottom: 35px;
  }

  .section3 .container_box10 .slider .carousel p span {
    font-size: 11px;
  }

  .section3 .container_box10 .slider .carousel .vendu {
    font-size: 10px;
  }

  .section3 .container_box10 .slider .carousel .vendu p {
    font-size: 9px;
    margin-left: 10px;
  }

  .section3 .container_box10 .slider .carousel .vendu .ville {
    font-size: 9px;
  }

  .section3 .container_box10 .slider .carousel a {
    padding: 3px 10px;
    text-decoration: none;
    font-size: 12px;
  }

  .section3 .container_box10 .produit_vedete {
    padding: 40px 5px;
  }
}

@media screen and (max-width: 500px) {
  .section3 .container_box10 .slider .carousel {
    flex-direction: column;
  }
  .section3 .container_box10 .slider .carousel .p strong {
    font-size: 11px;
  }

  .section3 .container_box10 .slider .carousel .poste {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .section3 .container_box10 .slider .carousel #nom {
    font-size: 9px;
    bottom: 35px;
  }

  .section3 .container_box10 .slider .carousel p span {
    font-size: 11px;
  }

  .section3 .container_box10 .slider .carousel .vendu {
    font-size: 10px;
  }

  .section3 .container_box10 .slider .carousel .vendu p {
    font-size: 8px;
  }

  .section3 .container_box10 .slider .carousel .vendu .ville {
    font-size: 8px;
  }

  .section3 .container_box10 .slider .carousel a {
    padding: 3px 10px;
    text-decoration: none;
    font-size: 12px;
  }

  .section3 .container_box10 .produit_vedete {
    padding: 40px 5px;
  }
}

@media screen and (max-width: 650px) {
  #container_box10 {
    width: 98%;
    padding: 20px 5px;
  }
  .section3 .container_box10 h2 {
    font-size: 16px;
  }
}
/* Styles pour la liste des formations */
.formations-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.formation-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.formation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.formation-content {
  padding: 20px;
}

.formation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.formation-period {
  background-color: #f8f9fa;
  padding: 6px 12px;
  border-radius: 10px;
}

.formation-period .date {
  color: #6c757d;
  font-size: 12px;
  font-weight: 500;
}

.formation-actions {
  display: flex;
  gap: 10px;
}

.formation-actions button,
.formation-actions a {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.formation-actions button:hover,
.formation-actions a:hover {
  transform: scale(1.1);
}

.formation-actions img {
  width: 25px;
  height: 25px;
}

.formation-actions .delete-btn img {
  width: 20px;
  height: 20px;
}

.formation-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.formation-main-info {
  flex: 1;
}

.formation-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 8px 0;
}

.formation-school {
  font-size: 15px;
  color: #6c757d;
  margin: 0;
}

.formation-level {
  margin-left: 20px;
}

.level-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #e9ecef;
  color: #495057;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}

/* Styles pour le formulaire de modification */

/* Styles responsifs */
@media screen and (max-width: 768px) {
  .formation-card {
    margin: 0 10px;
  }

  .formation-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .formation-actions {
    align-self: flex-end;
  }

  .formation-details {
    flex-direction: column;
    gap: 10px;
  }

  .formation-level {
    margin-left: 0;
  }

  .form-row {
    flex-direction: column;
  }

  .date-group,
  .input-group {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .formation-period {
    width: 100%;
    text-align: center;
  }

  .formation-title {
    font-size: 16px;
  }

  .formation-school {
    font-size: 14px;
  }

  .level-badge {
    width: 100%;
    text-align: center;
  }
}

.edit-form {
  width: 100%;
  display: none;
}

.edit-form .formation-edit-form {
  width: 95%;
  max-width: 600px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #ced4da;
  padding: 20px;
  position: relative;
}

.edit-form .formation-edit-form .imgFormee {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.edit-form .formation-edit-form .imgFormee:hover {
  transform: scale(1.1);
}

.edit-form .formation-edit-form .box1 {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-bottom: 20px;
}

.edit-form .formation-edit-form .box1 select {
  padding: 8px 15px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 14px;
}

.edit-form .formation-edit-form .box1 .encours {
  display: flex;
  align-items: center;
  justify-content: start;
}

.edit-form .formation-edit-form .box1 .encours span {
  font-size: 15px;
  font-style: italic;
}

.edit-form .formation-edit-form .box1 .encours input {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.edit-form .formation-edit-form .box1 #dates {
  display: flex;
}

.edit-form .formation-edit-form .box1 #dates .mois {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 30px;
}

.edit-form .formation-edit-form .box1 #dates .annee {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 30px;
}

.edit-form .formation-edit-form .box1 input {
  padding: 8px 15px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 6px;
}

@media screen and (max-width: 568px) {
  .edit-form .formation-edit-form .box1 select {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
  }

  .edit-form .formation-edit-form .box1 input {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
  }

  .edit-form .formation-edit-form .box1 label {
    font-size: 12px;
  }

  .edit-form .formation-edit-form .box1 #dates .mois {
    padding-right: 10px;
  }

  .edit-form .formation-edit-form .box1 #dates .annee {
    padding-left: 10px;
  }

  .section3 .container_box3 {
    padding: 5px;
    width: 95%;
  }
}

/* Styles pour la section d'expérience professionnelle */

.experiences-list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-modif {
  display: none;
}

.experience-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  max-width: 700px;
}

.experience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 7px;
  flex-wrap: wrap;
}

.experience-title h3 {
  color: #2c3e50;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  max-width: 500px;
}

.experience-actions {
  opacity: 0.7;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  width: 90px;
  padding: 6px 10px;
  background-color: #ffffff;
  border-radius: 10px;
  justify-content: space-around;
}

.experience-actions:hover {
  opacity: 1;
}

.delete-btn img {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0 10px;
}

.img2-btn {
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.4s ease-in-out;
}

.img2-btn:hover {
  transform: scale(1.2);
}

.experience-period {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  background: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.period-start {
  display: flex;
  align-items: center;
}
.period-end {
  display: flex;
  align-items: center;
}

.period-separator {
  color: #999;
  margin: 0 0.5rem;
}

.experience-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section3 .container_box2 {
    width: 98%;
    padding: 20px 5px;
  }

  .experience-card {
    padding: 10px;
  }

  .boxmetier .date {
    flex-direction: column;
  }
  .experience-title h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .section3 .container_box2 {
    width: 98%;
    padding: 20px 5px;
  }

  .experience-card {
    padding: 10px;
  }

  .boxmetier .date {
    flex-direction: column;
  }
  .experience-title h3 {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .container_box2 .box1 h1 {
    font-size: 1.5rem;
  }

  .container_box2 .box2 h2 {
    font-size: 1.2rem;
  }

  .experience-title h3 {
    font-size: 1.1rem;
  }
}

/* Nouveau style pour la section des notifications */
.notifications-control {
  position: relative;
  width: 100%;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notifications-bubble {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f5f8ff);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 15px 10px;
  max-width: 650px;
  border: 1px solid rgba(0, 123, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.notifications-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.notifications-bubble:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
  opacity: 0.7;
}

.notifications-icon {
  flex: 0 0 60px;
  height: 60px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 25px;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

.notifications-icon i {
  font-size: 26px;
  color: white;
}

.notifications-content {
  flex: 1;
}

.notifications-content h3 {
  font-size: 18px;
  color: #333;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.notifications-content p {
  font-size: 14px;
  color: #666;
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.notification-button {
  background: linear-gradient(135deg, #f45d42, #eb4325);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.notification-button i {
  margin-right: 8px;
  font-size: 16px;
}

.notification-button:hover {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

.notification-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(37, 99, 235, 0.2);
}

.notification-button.enabled {
  background: linear-gradient(135deg, #34a853, #15803d);
  cursor: default;
}

.notification-button.enabled:hover {
  background: linear-gradient(135deg, #34a853, #15803d);
  transform: none;
  box-shadow: 0 4px 10px rgba(21, 128, 61, 0.2);
}

.notification-status {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  min-height: 20px;
  position: relative;
}

/* Styles pour les messages d'état */
.notification-warning,
.notification-error {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-top: 10px;
  transition: opacity 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.notification-warning {
  background-color: #fff8e1;
  color: #f57c00;
  border: 1px solid rgba(245, 124, 0, 0.2);
}

.notification-error {
  background-color: #ffebee;
  color: #e53935;
  border: 1px solid rgba(229, 57, 53, 0.2);
}

/* Styles pour l'animation de chargement */
.notification-button.loading {
  background: linear-gradient(135deg, #b0bec5, #78909c);
  cursor: wait;
  position: relative;
}

.notification-button.loading:hover {
  transform: none;
  box-shadow: 0 4px 10px rgba(120, 144, 156, 0.2);
}

/* Animation de succès */
.success-animation {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-color: #4caf50;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInOut 2s ease-in-out;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.success-animation i {
  font-size: 20px;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
  }
  20% {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
  }
  30% {
    transform: translateY(-50%) scale(1);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .notifications-bubble {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .notifications-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .notification-button {
    margin: 0 auto;
  }
}

.section3 .qr-code img {
  max-width: 140px;
  max-height: 140px;
}

/* Améliorations supplémentaires pour la section "À propos de moi" */

/* Styles pour les labels des formulaires */
.section3 .container_box1 .form_box form label,
.section3 .container_box1 .texte form label {
  display: block;
  color: #2c3e50;
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 500;
  position: relative;
  padding-left: 15px;
}

.section3 .container_box1 .form_box form label::before,
.section3 .container_box1 .texte form label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 15px;
  background: linear-gradient(to bottom, #0066ff, #3498db);
  border-radius: 3px;
}

/* Amélioration du titre */
.section3 .container_box1 h2 span {
  position: relative;
  z-index: 1;
}

.section3 .container_box1 h2 span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(0, 102, 255, 0.2), transparent);
  z-index: -1;
}

/* Améliorations des boutons */
.section3 .container_box1 .buton,
.section3 .container_box1 .buttons {
  overflow: hidden;
}

.section3 .container_box1 .buton::before,
.section3 .container_box1 .buttons::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
  z-index: 0;
}

.section3 .container_box1 .buton:hover::before,
.section3 .container_box1 .buttons:hover::before {
  left: 100%;
}

/* Amélioration de la description vide */
.section3 .container_box1 .description .p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: #95a5a6;
  padding: 20px;
  text-align: center;
  border: 1px dashed rgba(0, 102, 255, 0.2);
  border-radius: 8px;
}

.section3 .container_box1 .description .p::before {
  content: "\f05a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #3498db;
  font-size: 18px;
}

/* Animation pour le focus des textarea */
.section3 .container_box1 .form_box form textarea:focus,
.section3 .container_box1 .texte form textarea:focus {
  background-color: #fff;
  transform: translateY(-2px);
}

/* Amélioration du compteur de caractères */
#caracteres-restants,
#caracteres-restantes {
  position: relative;
  padding-right: 22px;
}

#caracteres-restants::after,
#caracteres-restantes::after {
  content: "\f021";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #95a5a6;
  font-size: 14px;
}

/* Amélioration de l'animation des formulaires */
@keyframes formSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section3 .container_box1 .form_box.active,
.section3 .container_box1 .texte.active {
  animation: formSlideIn 0.4s ease-out forwards;
}

/* Effet de surbrillance pour les boutons de fermeture */
.section3 .container_box1 .form_box form img:hover,
.section3 .container_box1 .texte form img:hover {
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

/* Amélioration responsive */
@media screen and (max-width: 500px) {
  .section3 .container_box1 .form_box form label,
  .section3 .container_box1 .texte form label {
    font-size: 13px;
    padding-left: 12px;
  }

  .section3 .container_box1 .form_box form label::before,
  .section3 .container_box1 .texte form label::before {
    height: 12px;
    width: 4px;
  }

  #caracteres-restants::after,
  #caracteres-restantes::after {
    font-size: 12px;
  }
}

/* Effet de focus pour les formulaires */
.section3 .container_box1 .form_box form.focused,
.section3 .container_box1 .texte form.focused {
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.15);
}

.section3 .container_box1 .form_box form textarea:focus,
.section3 .container_box1 .texte form textarea:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
  background-color: #fff;
}

/* Styles améliorés pour les formulaires */
.error-message {
  background-color: #ffebee;
  color: #e53935;
  border-left: 3px solid #e53935;
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Animation pour les boutons */
.add-experience-btn,
.affiche_forms,
.affiche_formss {
  position: relative;
  overflow: hidden;
}

.add-experience-btn::after,
.affiche_forms::after,
.affiche_formss::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.add-experience-btn:hover::after,
.affiche_forms:hover::after,
.affiche_formss:hover::after {
  left: 100%;
}

/* Styles pour les formulaires actifs */
.form.active,
.forms.active,
.formss.active {
  animation: formSlideIn 0.5s ease-out forwards;
}

@keyframes formSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Effet de focus pour les inputs et selects */
.boxmetier input:focus,
.boxmetier select:focus,
.boxmetier textarea:focus {
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
  border-color: var(--primary-color, #0066ff);
  background-color: #fff;
}

/* Amélioration des boutons de fermeture */
.imgs1:hover,
.imgs2:hover,
.imgs22:hover,
.imgFormee:hover {
  transform: rotate(90deg) scale(1.1);
  background-color: rgba(231, 76, 60, 0.1);
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

/* Styles pour les badges de niveau */
.level-badge {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border-left: 3px solid var(--primary-color, #0066ff);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.level-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Amélioration des compteurs de caractères */
#char-count,
#caractere,
#caracteres-restants,
#caracteres-restantes {
  font-size: 0.8rem;
  color: #95a5a6;
  text-align: right;
  margin-top: 5px;
  transition: color 0.3s ease;
}

/* Amélioration de l'apparence des inputs désactivés */
input:disabled,
select:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

/* Amélioration des messages vides */
.p {
  color: #95a5a6;
  font-style: italic;
  background-color: rgba(248, 249, 250, 0.7);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #95a5a6;
  text-align: center;
}

/* Effet de survol pour les cartes d'expérience et de formation */
.experience-card:hover,
.formation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Animation pour les formulaires */
.form,
.forms,
.formss,
.form-modif,
.edit-form {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Amélioration des boutons d'action */
.experience-actions img,
.formation-actions img {
  transition: all 0.3s ease;
}

.experience-actions img:hover,
.formation-actions img:hover {
  transform: scale(1.2);
}

/* Styles pour la notification en plein écran */
.fullscreen-notification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none; /* Sera affiché via JavaScript */
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fullscreen-notification.visible {
  opacity: 1;
  display: flex;
}

.fullscreen-notification .notification-content {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.5s ease;
  animation: pulse 2s infinite;
}

.fullscreen-notification.visible .notification-content {
  transform: scale(1);
}

.fullscreen-notification .notification-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #f0f8ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullscreen-notification .notification-icon i {
  font-size: 40px;
  color: #4d7bf3;
}

.fullscreen-notification h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.fullscreen-notification p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #666;
  line-height: 1.5;
}

.fullscreen-notification .notification-button {
  background-color: #4d7bf3;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.fullscreen-notification .notification-button i {
  margin-right: 8px;
}

.fullscreen-notification .notification-button:hover {
  background-color: #3a68e0;
  transform: translateY(-2px);
}

.fullscreen-notification .notification-button:active {
  transform: translateY(0);
}

.fullscreen-notification .close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.fullscreen-notification .close-button:hover {
  color: #333;
}

#notification-status {
  margin-top: 10px;
  min-height: 24px;
}

.notification-info,
.notification-success,
.notification-warning,
.notification-error {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 10px;
  transition: opacity 0.3s;
}

.notification-info {
  background-color: #e6f7ff;
  color: #0070f3;
  border: 1px solid #91d5ff;
}

.notification-success {
  background-color: #f6ffed;
  color: #52c41a;
  border: 1px solid #b7eb8f;
}

.notification-warning {
  background-color: #fffbe6;
  color: #faad14;
  border: 1px solid #ffe58f;
}

.notification-error {
  background-color: #fff2f0;
  color: #ff4d4f;
  border: 1px solid #ffccc7;
}

/* Animation de pulsation pour attirer l'attention */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 123, 243, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(77, 123, 243, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(77, 123, 243, 0);
  }
}

/* Style lorsque le bouton est en cours de chargement */
.fullscreen-notification .notification-button.loading {
  background-color: #8ca6f3;
  cursor: wait;
}

/* Style lorsque les notifications sont activées */
.fullscreen-notification .notification-button.enabled {
  background-color: #52c41a;
}

/* Styles pour l'en-tête "À propos de moi" redessinée */
.section3 .container_box1 .about-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 25px;
  position: relative;
  background: none;
  box-shadow: none;
  overflow: hidden;
  border-radius: 12px;
  background-image: linear-gradient(135deg, #f5f7fa 0%, #eef1f5 100%);
}

.section3 .container_box1 .about-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(77, 123, 243, 0.05),
    rgba(93, 59, 232, 0.05)
  );
  z-index: 0;
  border-radius: 12px;
}

.section3 .container_box1 .about-title {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  z-index: 1;
  position: relative;
}

.section3 .container_box1 .title-icon {
  width: 40px;
  height: 40px;
  background-image: linear-gradient(135deg, #6a7dfe 0%, #4776e6 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 4px 15px rgba(71, 118, 230, 0.3);
  transform-origin: center;
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
  0% {
    box-shadow: 0 0 0 0 rgba(71, 118, 230, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(71, 118, 230, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(71, 118, 230, 0);
  }
}

.section3 .container_box1 .title-icon i {
  font-size: 18px;
}

.section3 .container_box1 .about-title span {
  color: #2c3e50;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #4776e6, #6a7dfe);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.section3 .container_box1 .about-stats {
  display: flex;
  padding: 15px 25px;
  background: linear-gradient(135deg, #4776e6 0%, #6a7dfe 100%);
  border-radius: 0 12px 12px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: -4px 0 15px rgba(71, 118, 230, 0.2);
}

.section3 .container_box1 .about-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../image/pattern.svg") repeat;
  opacity: 0.1;
  z-index: -1;
  animation: move-pattern 30s linear infinite;
}

@keyframes move-pattern {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 500px 0;
  }
}

.section3 .container_box1 .stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  position: relative;
  transition: all 0.3s ease;
}

.section3 .container_box1 .stats-icon {
  margin-bottom: 3px;
  font-size: 16px;
  opacity: 0.9;
}

.section3 .container_box1 .stats-count {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  margin: 3px 0;
}

.section3 .container_box1 .stats-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Animation pour le compteur */
@keyframes count-up {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section3 .container_box1 .stats-count.animated {
  animation: count-up 1s forwards;
}

/* Effet au survol */
.section3 .container_box1 .about-header:hover .title-icon {
  transform: rotate(360deg);
  transition: transform 0.8s ease;
}

.section3 .container_box1 .stats-item:hover {
  transform: translateY(-3px);
}

/* Adaptations pour le mobile */
@media screen and (max-width: 600px) {
  .section3 .container_box1 .about-header {
    flex-direction: column;
    border-radius: 12px;
  }

  .section3 .container_box1 .about-title {
    width: 100%;
    justify-content: center;
    padding: 15px;
  }

  .section3 .container_box1 .about-stats {
    width: 100%;
    justify-content: center;
    border-radius: 0 0 12px 12px;
    padding: 12px;
  }
}

/* Styles communs pour toutes les en-têtes h1 et h2 */
.section3 h1,
.section3 .container_box1 h1,
.section3 .container_box2 h1,
.section3 .container_box3 h1,
.section3 .container_box4 h1,
.section3 .container_box5 h1,
.section3 .container_box7 h1,
.section3 .container_box8 h1,
.section3 .container_box10 h1 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;

  padding: 15px 25px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f7f9fc, #eef1f5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section3 h1::before,
.section3 .container_box1 h1::before,
.section3 .container_box2 h1::before,
.section3 .container_box3 h1::before,
.section3 .container_box4 h1::before,
.section3 .container_box5 h1::before,
.section3 .container_box7 h1::before,
.section3 .container_box8 h1::before,
.section3 .container_box10 h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;

  border-radius: 5px 0 0 5px;
}

.section3 h1::after,
.section3 .container_box1 h1::after,
.section3 .container_box2 h1::after,
.section3 .container_box3 h1::after,
.section3 .container_box4 h1::after,
.section3 .container_box5 h1::after,
.section3 .container_box7 h1::after,
.section3 .container_box8 h1::after,
.section3 .container_box10 h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25px;
  width: 50px;
  height: 3px;

  transition: width 0.3s ease;
}

.section3 h1:hover::after,
.section3 .container_box1 h1:hover::after,
.section3 .container_box2 h1:hover::after,
.section3 .container_box3 h1:hover::after,
.section3 .container_box4 h1:hover::after,
.section3 .container_box5 h1:hover::after,
.section3 .container_box7 h1:hover::after,
.section3 .container_box8 h1:hover::after,
.section3 .container_box10 h1:hover::after {
  width: 100px;
}

.section3 h1:hover,
.section3 .container_box1 h1:hover,
.section3 .container_box2 h1:hover,
.section3 .container_box3 h1:hover,
.section3 .container_box4 h1:hover,
.section3 .container_box5 h1:hover,
.section3 .container_box7 h1:hover,
.section3 .container_box8 h1:hover,
.section3 .container_box10 h1:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Styles pour les en-têtes h2 */
.section3 h2,
.section3 .container_box1 h2,
.section3 .container_box2 h2,
.section3 .container_box3 h2,
.section3 .container_box4 h2,
.section3 .container_box5 h2,
.section3 .container_box7 h2,
.section3 .container_box8 h2,
.section3 .container_box10 h2 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: #34495e;
  margin-bottom: 20px;
  padding: 12px 20px;
  border-radius: 8px;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section3 h2::before,
.section3 .container_box1 h2::before,
.section3 .container_box2 h2::before,
.section3 .container_box3 h2::before,
.section3 .container_box4 h2::before,
.section3 .container_box5 h2::before,
.section3 .container_box7 h2::before,
.section3 .container_box8 h2::before,
.section3 .container_box10 h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;

  opacity: 0.7;
  border-radius: 3px 0 0 3px;
}

.section3 h2::after,
.section3 .container_box1 h2::after,
.section3 .container_box2 h2::after,
.section3 .container_box3 h2::after,
.section3 .container_box4 h2::after,
.section3 .container_box5 h2::after,
.section3 .container_box7 h2::after,
.section3 .container_box8 h2::after,
.section3 .container_box10 h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 40px;
  height: 2px;
  opacity: 0.7;
  transition: width 0.3s ease;
}

.section3 h2:hover::after,
.section3 .container_box1 h2:hover::after,
.section3 .container_box2 h2:hover::after,
.section3 .container_box3 h2:hover::after,
.section3 .container_box4 h2:hover::after,
.section3 .container_box5 h2:hover::after,
.section3 .container_box7 h2:hover::after,
.section3 .container_box8 h2:hover::after,
.section3 .container_box10 h2:hover::after {
  width: 80px;
}

.section3 h2:hover,
.section3 .container_box1 h2:hover,
.section3 .container_box2 h2:hover,
.section3 .container_box3 h2:hover,
.section3 .container_box4 h2:hover,
.section3 .container_box5 h2:hover,
.section3 .container_box7 h2:hover,
.section3 .container_box8 h2:hover,
.section3 .container_box10 h2:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Classe pour ajouter une icône aux en-têtes */
.header-with-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-bottom: 20px !important;
}

.header-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4776e6, #8e54e9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(71, 118, 230, 0.2);
  position: relative;
  overflow: hidden;
}

.header-icon-wrapper i {
  color: white;
  font-size: 18px;
  z-index: 1;
}

.header-icon-wrapper::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.6s;
}

.header-with-icon:hover .header-icon-wrapper::after {
  opacity: 1;
  animation: rotateGradient 2s infinite linear;
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Adaptations pour mobile */
@media screen and (max-width: 600px) {
  .section3 h1,
  .section3 .container_box1 h1,
  .section3 .container_box2 h1,
  .section3 .container_box3 h1,
  .section3 .container_box4 h1,
  .section3 .container_box5 h1,
  .section3 .container_box7 h1,
  .section3 .container_box8 h1,
  .section3 .container_box10 h1 {
    font-size: 20px;
    padding: 12px 20px;
  }

  .section3 h2,
  .section3 .container_box1 h2,
  .section3 .container_box2 h2,
  .section3 .container_box3 h2,
  .section3 .container_box4 h2,
  .section3 .container_box5 h2,
  .section3 .container_box7 h2,
  .section3 .container_box8 h2,
  .section3 .container_box10 h2 {
    font-size: 18px;
    padding: 10px 15px;
  }

  .header-icon-wrapper {
    width: 30px;
    height: 30px;
  }

  .header-icon-wrapper i {
    font-size: 16px;
  }
}

/* Correction du problème de visibilité du texte dans les en-têtes */
.section3 h1,
.section3 .container_box1 h1,
.section3 .container_box2 h1,
.section3 .container_box3 h1,
.section3 .container_box4 h1,
.section3 .container_box5 h1,
.section3 .container_box7 h1,
.section3 .container_box8 h1,
.section3 .container_box10 h1 {
  color: #1a1a1a;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.section3 h1 span,
.section3 .container_box1 h1 span,
.section3 .container_box2 h1 span,
.section3 .container_box3 h1 span,
.section3 .container_box4 h1 span,
.section3 .container_box5 h1 span,
.section3 .container_box7 h1 span,
.section3 .container_box8 h1 span,
.section3 .container_box10 h1 span {
  color: #1a1a1a;
  font-weight: 700;
}

.section3 h2,
.section3 .container_box1 h2,
.section3 .container_box2 h2,
.section3 .container_box3 h2,
.section3 .container_box4 h2,
.section3 .container_box5 h2,
.section3 .container_box7 h2,
.section3 .container_box8 h2,
.section3 .container_box10 h2 {
  color: #1a1a1a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.section3 h2 span,
.section3 .container_box1 h2 span,
.section3 .container_box2 h2 span,
.section3 .container_box3 h2 span,
.section3 .container_box4 h2 span,
.section3 .container_box5 h2 span,
.section3 .container_box7 h2 span,
.section3 .container_box8 h2 span,
.section3 .container_box10 h2 span {
  color: #1a1a1a;
  font-weight: 600;
}

/* Amélioration du contraste pour les icônes */
.header-icon-wrapper {
  background: linear-gradient(135deg, #3867d6, #8e54e9);
  box-shadow: 0 3px 10px rgba(56, 103, 214, 0.3);
}

.header-icon-wrapper i {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Amélioration du contraste pour les en-têtes avec icônes */
.header-with-icon {
  gap: 15px;
}

/* Correction pour les en-têtes dans les tables */
table th.header-with-icon {
  color: #1a1a1a;
  font-weight: 600;
}

table th.header-with-icon span {
  color: #1a1a1a;
  font-weight: 600;
}

/* Correction pour les en-têtes dans les skills-header */
.skills-header h1.header-with-icon {
  color: #1a1a1a;
  font-weight: 700;
}

.skills-header h1.header-with-icon span {
  color: #1a1a1a;
  font-weight: 700;
}

/* Amélioration du contraste et de la lisibilité des en-têtes */
.section3 h1,
.section3 .container_box1 h1,
.section3 .container_box2 h1,
.section3 .container_box3 h1,
.section3 .container_box4 h1,
.section3 .container_box5 h1,
.section3 .container_box7 h1,
.section3 .container_box8 h1,
.section3 .container_box10 h1 {
  background: linear-gradient(135deg, #ffffff, #f0f2f5);
  color: #1a1a1a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.section3 h2,
.section3 .container_box1 h2,
.section3 .container_box2 h2,
.section3 .container_box3 h2,
.section3 .container_box4 h2,
.section3 .container_box5 h2,
.section3 .container_box7 h2,
.section3 .container_box8 h2,
.section3 .container_box10 h2 {
  background: linear-gradient(135deg, #ffffff, #f5f7fa);
  color: #1a1a1a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

/* Correction pour les skills-header qui a une structure spéciale */
.skills-header {
  background: linear-gradient(135deg, #ffffff, #f0f2f5) !important;
}

.skills-header h1 {
  background: transparent !important;
  color: #1a1a1a !important;
}

/* Correction pour les tables */
table th.header-with-icon {
  background: linear-gradient(135deg, #ffffff, #f0f2f5);
  padding: 10px 15px;
  border-radius: 8px;
}

/* Amélioration des icônes pour un meilleur contraste */
.header-icon-wrapper {
  background: linear-gradient(135deg, #3867d6, #8e54e9);
  box-shadow: 0 3px 8px rgba(56, 103, 214, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
