body {
      margin: 0;
      font-family: 'Ubuntu Mono', monospace;
      background-color: #0d1117;
      color: #c9d1d9;
    }

    header {
      background-color: #161b22;
      padding: 15px 30px;
      border-radius: 20px;
      max-width: 1100px;
      margin: 20px auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: #30363d 1px solid;
      position: sticky;
      top: 10px;
      z-index: 1000;
    }

    .container {
      max-width: 900px;
      margin: auto;
      padding: 60px 20px;
    }

    h1, h2 {
      color: #58a6ff;
      text-align: center;
      margin-bottom: 20px;
      text-shadow: 0 0 12px rgba(88, 166, 255, 0.15);
    }

    p {
      line-height: 1.6;
      text-align: center;
      font-size: larger;
    }

    .core-values {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .value-card {
      background-color: #161b22;
      border-radius: 20px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 0 0px rgba(88, 166, 255, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 18px rgba(88, 166, 255, 0.2);
    }

    .value-card::before {
      content: '';
      position: absolute;
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      border-radius: 20px;
      background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(88, 166, 255, 0.1), transparent 60%);
      opacity: 0;
      transition: opacity 0.2s ease;
      z-index: 0;
    }

    .value-card:hover::before {
      opacity: 1;
    }

    .value-card h3 {
      color: #58a6ff;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .value-card p {
      font-size: 0.95rem;
      position: relative;
      z-index: 1;
    }
.value-card {
  background-color: #161b22;
  border-radius: 20px;
  padding: 30px 20px;
  color: #c9d1d9;
  font-family: 'Ubuntu Mono', monospace;
  text-align: center;
  box-shadow: 0 0 0px rgba(88, 166, 255, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;

}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.values-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  margin-top: 40px;
  padding: 0 20px;
}

.value-card {
  flex: 1 1 280px;
  max-width: 320px;
}
@media (max-width: 768px) {
  .values-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-card {
    width: 100%;
    max-width: 360px;
  }
}

/* Value-specific glow hover effects */
.value-card.innovation:hover {
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}
.value-card.reliability:hover {
  box-shadow: 0 0 25px rgba(88, 166, 255, 0.4);
}
.value-card.growth:hover {
  box-shadow: 0 0 25px rgba(72, 255, 144, 0.3);
}

/* Icon float animation */
.value-card:hover .icon {
  transform: translateY(-5px) scale(1.1);
}

/* Slide-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }

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

.capu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #161b22;
      border: 1px solid #30363d;
      border-radius: 20px;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      box-shadow: 0 0 12px rgba(88, 166, 255, 0.1);
      animation: slideUp 1s ease;
      cursor: default;
      z-index: 1000;
    }

    .capu img {
      height: 32px;
      margin-right: 10px;
    }

    .capu span {
      font-size: 0.9rem;
      color: #c9d1d9;
    }

    @keyframes slideUp {
      from { transform: translateY(100%); opacity: 0; }
      to   { transform: translateY(0); opacity: 1; }
    }