/* ===================== RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ===================== POLICE ===================== */
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    transition: background 0.3s, color 0.3s;
  }
  
  /* ===================== MODE SOMBRE ===================== */
  body.dark-mode {
    background-color: #202231;
    color: #f0f0f0;
  }
  
  /* ===================== HEADER (NAVBAR) ===================== */
  /* On NE TOUCHE PAS à la navbar comme demandé */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1d1f2a;
    color: #fff;
    padding: 0.75rem 2rem;
}
/* Style du menu pour mobile */
.header__nav {
  display: flex;
}
  
  .header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
  }
  
  .header__logo i {
    font-size: 1.2rem;
    color: #38c172;
  }
  
  .header__nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.header__nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.header__nav a:hover {
    color: #ccc;
}

/* Bouton menu burger */
.menu-toggle {
    display: none; /* Caché par défaut sur desktop */
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}
  
  .header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .lang-toggle button {
    background: none;
    color: #fff;
    border: none;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    font-weight: 500;
  }
  
  .lang-toggle button.active {
    background: #333;
    border-radius: 4px;
  }
  
  .darkmode-toggle i {
    font-size: 1.2rem;
    cursor: pointer;
  }
  
  .social-icons a {
    color: #fff;
    margin-right: 0.5rem;
    transition: color 0.3s;
    font-size: 1rem;
  }
  
  .social-icons a:hover {
    color: #ccc;
  }
  
  .cta-button {
    background-color: #38c172;
    border: none;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
  }
  
  .cta-button:hover {
    background-color: #2f9c5f;
  }
  
  /* ===================== HERO (Accueil) ===================== */
  .hero {
    padding: 3rem 2rem;
    background-color: #fff; 
    /* Pour se rapprocher du design épuré de la maquette */
  }
  
  .hero__content {
    display: flex;
    /* Limite la largeur totale du bloc pour le centrer sur la page */
    max-width: 1200px;
    margin: 0 auto; 
    /* Espace horizontal entre les blocs */
    gap: 2rem;
    /* Les aligne en haut */
    align-items: flex-start;
    /* Variation possible :
       - space-between : le 1er bloc à gauche, le dernier à droite 
       - space-around / space-evenly : pour des espaces uniformes 
       - center : pour qu’ils restent groupés au centre 
    */
    justify-content: center; 
  }
  
  .hero__presentation {
    /* Donne 2 parts d’espace à la présentation */
    flex: 2;
  }
  
  .hero__profile,
  .hero__technologies {
    /* Donne 1 part d’espace à chacune de ces 2 sections */
    flex: 1;
  }
  
  /* -------- Présentation à gauche -------- */
  /* === Section principale === */
.hero__presentation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

/* === Titre et sous-titre === */
.hero__presentation h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1d1f2a;
}

.hero__presentation h2 {
    font-size: 1.1rem;
    color: #38c172; /* Accent couleur */
    margin-bottom: 1rem;
}

/* === Paragraphe === */
.hero__presentation p {
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: #555;
}

/* === Section des tags de compétences === */
.hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 1rem;
}

.hero__tags span {
    font-size: 13.4px;
    font-weight: 600;
    color: #38c172;
    padding: 6px 8px;
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
}

.hero__tags span:hover {
    background: rgba(56, 193, 114, 0.2);
}

/* === Liste des soft skills === */
.hero__skills ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    list-style: none;
    font-size: 14px;
    color: #333;
}

.hero__skills li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero__skills li::before {
    content: "•";
    font-size: 16px;
    color: #555;
}

  
  /* -------- Profil et photo à droite -------- */
  .hero__profile {
    background-color: #fdfdfd;
    
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem; /* un peu d'espace en bas pour aérer */
  }
  
  .profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }
  
  .hero__profile button {
    background-color: #38c172;
    border: none;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
  }
  
  .hero__profile button:hover {
    background-color: #2f9c5f;
  }

  
  .hero__location {
    margin-top: 0.5rem;
    color: #777;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  
/* === Conteneur des technologies === */
.hero__technologies {
    display: flex;
    flex-direction: column;
    gap: 6px; /* Plus d’espace entre les éléments */
   
    background-color: #ffffff;
   
    
    max-width: 280px;
  }
  .hero__technologies ul {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 15px;
  list-style: none;
  padding: 0;
  width: fit-content;
}
.typewriter-cursor::after {
  content: "|";
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.8s infinite;
  color: #38c172;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

  
  /* Style des badges */
  .hero__technologies li {
    display: flex;
    align-items: center;
    justify-content: center; /* Centrer le contenu */
    background-color: #f9fafc; /* Fond doux */
    border-radius: 4px; /* Arrondi élégant */
    padding: 8px 68px;
    font-size: 14px;
    font-weight: 500;
    color: #333; /* Texte noir normal */
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.04);
  }
  
/* Effet de disparition lors du swap */
.hero__technologies li:first-child {
  animation: fadeOutUp 0.5s ease-in-out forwards;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
  
  /* Effet au survol */
  .hero__technologies li:hover {
    background-color: #f0f4f8;
    transform: translateY(-2px);
  }
  
  /* Petite pastille verte */
  .hero__technologies li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #4caf50;
    margin-right: 12px;
  }
  
  /* Icônes avec espace ajusté */
  .hero__technologies li i {
    font-size: 18px;
    color: #333; /* Noir normal */
    margin-right: 12px; /* Plus d’espace entre icône et texte */
  }
  
  
  
  
  
  /* Adaptation pour que .hero__profile et .hero__technologies soient 
     côte-à-côte en colonne droite : on force la grille en 2 rangées à droite. */
  .hero__content > .hero__profile {
    grid-column: 2;
  }
  .hero__content > .hero__technologies {
    grid-column: 2;
    margin-top: 1.5rem;
  }
  
  /* ===================== SECTION PROJETS ===================== */
  .projects {
    
    padding: 4rem 2rem;
    background: #f5f7fa; 
    /* Couleur de fond clair, comme sur la maquette */
  }
  body.dark-mode .projects {
    background-color: #2b2f40;
  }
  
  .projects h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #1d1f2a;
    font-weight: 600;
  }
  body.dark-mode .projects h2 {
    color: #38c172;
  }
  
  /* On peut afficher une "carousel" horizontale si besoin :
     tu peux ajuster la largeur, etc. */
     .projects__carousel {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* S'adapte aux écrans */
      gap: 16px;
      justify-content: center;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding-bottom: 1rem; 
  }
  
  /* Carte projet */
  .project-card {
      margin: 5px;
      padding: 5px;
      width: 100%;
      max-width: 380px;
      height: auto;
      background: #fff;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      flex-shrink: 0;
      transition: transform 0.3s;
      overflow: hidden;
  }
  
  .project-card img {
      width: 100%;
      object-fit: cover;
      height: 200px;
  }
  
  .project-card__content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .project-card__content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #1d1f2a;
  }
  
  .project-date {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
  }
  
  .project-tags,
  .project-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
  }
  
  .project-tags span,
  .project-hashtags span {
    background: #f0f0f0;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    color: #333;
  }
  /* Style du lien GitHub */
.github-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  background: #f1f1f1;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.github-link i {
  font-size: 1.2rem;
}

.github-link:hover {
  background: #e1e1e1;
  transform: translateY(-2px);
}

  
  /* Bouton ajusté */
  .project-card__btn {
    align-self: flex-start;
    background: #38c172;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s ease-in-out;
  }
  .project-card__btn:hover {
    background: #2f9c5f;
  }
  /* Indicateur "En cours..." */
.project-status {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e67e22;
  background: rgba(230, 126, 34, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}
  
  /* ===================== SECTION PROFILE (CV) ===================== */
  .profile {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .profile h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #1d1f2a;
  }
  body.dark-mode .profile h2 {
    color: #38c172;
  }
  
  .cv-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .cv-left {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 0.5rem;
  }
  body.dark-mode .cv-left {
    background-color: #2f3243;
  }
  
  .cv-left h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .cv-left p {
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .info-block {
    margin-bottom: 1.5rem;
  }
  
  .info-block h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    border-bottom: 2px solid #38c172;
    display: inline-block;
    margin-right: 0.5rem;
    padding-bottom: 0.2rem;
  }
  
  .cv-right {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .experience, .education {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
  }
  body.dark-mode .experience,
  body.dark-mode .education {
    background-color: #2f3243;
  }
  
  .experience h3, .education h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .exp-item, .edu-item {
    margin-bottom: 1.2rem;
  }
  
  .exp-item h4, .edu-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
  }
  
  .exp-item .date, .edu-item .date {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.4rem;
  }
  
  .exp-item p, .edu-item p {
    line-height: 1.4;
    font-size: 0.95rem;
  }
  /* --- Bloc Relevé de notes --- */
.transcript {
  margin-top: 2rem;
}
.transcript h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #38c172;
  display: inline-block;
  padding-bottom: 0.2rem;
}
#toggle-transcript {
  background: #38c172;
  color: #fff;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: background 0.3s;
}
#toggle-transcript:hover {
  background: #2f9c5f;
}
.transcript-details {
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.transcript-details.collapsed {
  max-height: 0;
  padding: 0 0;
}
.transcript-details.expanded {
  max-height: 3000px; /* une valeur suffisamment haute pour contenir le tableau */
  padding: 1rem 0;
}

/* Style du tableau du relevé de notes */
.transcript-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.transcript-table thead th {
  background-color: #38c172;
  color: #fff;
  padding: 0.5rem;
}
.transcript-table tbody td {
  border-bottom: 1px solid #ddd;
  padding: 0.5rem;
}
.transcript-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
  
  /* ===================== SECTION CONTACT ===================== */
  .contact {
    padding: 4rem 2rem;
    background: #fff;
  }
  body.dark-mode .contact {
    background-color: #1f2130;
  }
  
  .contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #1d1f2a;
  }
  body.dark-mode .contact h2 {
    color: #38c172;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact label {
    font-weight: 600;
    margin-bottom: 0.2rem;
  }
  
  .contact input,
  .contact textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
  }
  
  .contact button {
    background: #1d1f2a;
    color: #fff;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
  }
  .contact button:hover {
    background: #333;
  }
  
  /* ===================== FOOTER ===================== */
  footer {
    background: #1d1f2a;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
  }
  


  @media screen and (max-width: 768px) {
    .header__nav ul {
        display: none; /* Masquer le menu normal */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #1d1f2a;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 100;
    }

    .header__nav ul.show {
        display: flex; /* Afficher lorsqu'on clique sur le menu */
    }

    .menu-toggle {
        display: block; /* Afficher le burger menu */
    }
}
  /* ===================== MEDIA QUERIES ===================== */
/* En dessous de 768px, on passe en mode colonne */
@media screen and (max-width: 768px) {
  .projects__carousel {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .project-card {
      width: 100%; /* Ajustement pour éviter les marges trop grandes */
      max-width: 100%;
  }
}

  /* ===================== RESPONSIVE ===================== */
  @media screen and (max-width: 768px) {
    .hero__content {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      gap: 2rem;
    }
    .hero__technologies li {
      
      padding: 10px 75px;  /* Augmente le padding */
      font-size: 16px;     /* Augmente la taille de la police */
    }
    .hero__presentation {
      
        text-align: center;
    }

    .hero__technologies {
      margin-top: -100px;
        max-width: 100% !important;
    }
    .hero__profile {
      padding: 2rem;       /* Augmente le padding pour une meilleure présence */
    }
    .profile-pic {
      width: 200px;        /* Image plus grande */
      height: 200px;
    }
  
    /* Pour le conteneur CV */
    .cv-container {
      margin: 0 auto;
      width: 100%;
      padding: 0 0rem;  /* Un léger padding horizontal */
      gap: 1rem;
    }
    .cv-left,
    .cv-right {
      margin: 0;
      width: 100%;
      box-sizing: border-box;
    }
    
    /* Pour le formulaire de contact */
    .contact form {
      margin: 0 auto;
      width: 100%;
      padding: 0 1rem; /* Un léger padding pour éviter que le contenu ne touche les bords */
      gap: 0.5rem;
    }
    
  }
  

  /* Couleurs spécifiques pour chaque technologie */
.hero__technologies li[data-tech="java"] i { color: #E76F00; }    /* Java */
.hero__technologies li[data-tech="python"] i { color: #3776AB; }  /* Python */
.hero__technologies li[data-tech="react"] i { color: #61DAFB; }   /* ReactJS */
.hero__technologies li[data-tech="postgresql"] i { color: #336791; } /* PostgreSQL */
.hero__technologies li[data-tech="azure"] i { color: #0089D6; }    /* Azure */
.hero__technologies li[data-tech="tensorflow"] i { color: #FF6F00; } /* TensorFlow */
.hero__technologies li[data-tech="powerbi"] i { color: #F2C811; }  /* Power BI */

/* 🔥 ANIMATIONS GÉNÉRALES 🔥 */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ✨ ENTRÉE HERO */
.hero__presentation h1, 
.hero__presentation h2, 
.hero__presentation p {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero__presentation h1.visible, 
.hero__presentation h2.visible, 
.hero__presentation p.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 🎯 ANIMATION DES COMPÉTENCES */
.hero__skills li {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.hero__skills li.visible {
  opacity: 1;
  transform: scale(1);
}

/* 🎭 MENU BURGER */
.menu-toggle {
  transition: transform 0.3s ease-in-out;
}


/* 🎨 TRANSITIONS SUR MENU */
.header__nav a {
  transition: color 0.3s ease-in-out;
}
.header__nav a:hover {
  color: #38c172;
}

/* 🚀 DARK MODE SMOOTH */
.dark-mode-transition {
  transition: background 0.8s ease, color 0.8s ease;
}

/* 🔥 ANIMATION SUR LES PROJETS */
.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* 💡 EFFET SUR LE BOUTON PORTFOLIO */
.cta-button {
  transition: background 0.3s ease, transform 0.2s ease;
}
.cta-button:hover {
  background: #2f9c5f;
  transform: scale(1.05);
}

/* Ajout d'un style de timeline pour la section Expérience */
.experience.timeline {
  position: relative;
  padding-left: 40px; /* espace pour la barre verticale */
  border-left: 2px solid #38c172; /* barre verticale */
}

.experience.timeline .exp-item {
  position: relative;
  margin-bottom: 2rem; /* espace entre les items */
  padding-left: 20px; /* décalage pour laisser place aux cercles */
}

/* Ajout d'un cercle pour chaque exp-item */
.experience.timeline .exp-item::before {
  content: "";
  position: absolute;
  left: -31px; /* positionné par rapport à la barre */
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: #38c172;
  border: 3px solid #fff; /* effet de bordure pour mieux marquer le cercle */
  border-radius: 50%;
  z-index: 1;
}

/* Timeline pour la section Études */
.education.timeline {
  position: relative;
  padding-left: 40px; /* espace pour la barre verticale */
  border-left: 2px solid #38c172; /* barre verticale de couleur accent */
}

.education.timeline .edu-item {
  position: relative;
  margin-bottom: 2rem; /* espace entre chaque item */
  padding-left: 20px;  /* décalage pour laisser de la place au cercle */
}

.education.timeline .edu-item::before {
  content: "";
  position: absolute;
  left: -31px; /* positionné par rapport à la barre */
  top: 5px;    /* ajustez cette valeur selon votre besoin */
  width: 16px;
  height: 16px;
  background-color: #38c172;
  border: 3px solid #fff; /* bordure pour mettre en valeur le cercle */
  border-radius: 50%;
  z-index: 1;
}
/* ===================== CERTIFICATIONS ===================== */
.certifications {
  padding: 4rem 2rem;
  background: #f5f7fa;
}

body.dark-mode .certifications {
  background: #2b2f40;
}

.certifications h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #1d1f2a;
  font-weight: 600;
}

body.dark-mode .certifications h2 {
  color: #38c172;
}

.certifications__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.certification-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 380px;
  width: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.certification-image {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}

.certification-content {
  padding: 1.2rem;
}

.certification-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1d1f2a;
}

.certification-content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.4;
}

.certification-date {
  font-size: 0.85rem;
  color: #777;
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
  .certifications__container {
    flex-direction: column;
    align-items: center;
  }
}
