/* .skills-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.skill h1 {
  font-size: 22px;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
  color: #111111;
  text-align: center;
}

.skill span {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
} */

:root {
      --primary: #3498db;
      --text-dark: #111827;
      --text-light: #4B5563;
      --bg-light: #F9FAFB;
      --white: #ffffff;
      --border: #E5E7EB;
    }

    .skills-display-container {
      /*max-width: 500px;*/
      width: 100%;
      background: var(--white);
      padding: 5rem;
      margin: 2rem auto;
      border-radius: 12px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      min-height: 180px; /* Maintains height consistency during transitions */
    }

    .skill-content { display: none; }

    .skill-content.active-content {
      display: block;
      animation: fadeIn 0.3s ease;
      text-align: center;
    }

    .skill-content h1 {
      font-size: 2rem;
      margin-top: 0;
      margin-bottom: 1rem;
      color: #000000;
      letter-spacing: 0.05em;
    }

    .skill-content span {
      font-size: 1.2rem;
      line-height: 1.6;
      color: var(--text-light);
      display: block;
    }



    /* select menu */
    .skills-menu {
      display: flex;
      gap: 0.5rem;
      background: var(--white);
      padding: 0.5rem;
      margin-bottom: 4rem;
      border-radius: 30px;
      border: 1px solid var(--border);
      box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .menu-tab {
      background: none;
      border: none;
      padding: 0.75rem 1.25rem;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--text-light);
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .menu-tab:hover {
      color: var(--text-dark);
      background-color: var(--bg-light);
    }

    .menu-tab.active-tab {
      background-color: var(--primary);
      color: var(--white);
    }

    /* Floating Instructional Tip Box */
    .info-tip {
      margin-top: 1.5rem;
      background: #3498db;
      color: var(--white);
      padding: 0.75rem 1.25rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      opacity: 1;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .info-tip.fade-out {
      opacity: 0;
      transform: translateY(5px);
      pointer-events: none;
    }

    .info-tip-icon {
      color: var(--primary);
      font-weight: bold;
    }

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












/*
.badges-section {
  display: flex;
  flex-direction: row; 
  justify-content: center;
  gap: 40px;
  padding: 40px 10%;
}

.badge {
  display: flex;
  flex-direction: column; 
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.badge img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
}

.badge-text-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-text-container h3 {
  margin: 0;
  font-size: 18px;
  color: #111;
}

.badge-text-container p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.4;
} */

.badges-section {
  display: flex;
  flex-direction: row; 
  justify-content: center;
  gap: 40px;
  padding: 40px 10%;
  max-width: 1400px;
  margin: 0 auto;
}

.badge {
  display: flex;
  flex-direction: column; 
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.badge img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
}

.badge-text-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-text-container h3 {
  margin: 0;
  font-size: 18px;
  color: #111;
}

.badge-text-container p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.4;
}

/* mobile */
@media (max-width: 768px) {
  .badges-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    padding: 30px 5%;
  }
}

@media (max-width: 400px) {
  .badges-section {
    grid-template-columns: 1fr;
  }
}