  body {
    background-color: #0B0B0F;
    color: #E3EAF2;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
  }

  .hero {
    background: linear-gradient(to right, #14161C, #1D1F29);
    padding: 100px 20px 80px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }

  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #00E6C3;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1.2rem;
    color: #A0A8B5;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-custom {
    background: #00E6C3;
    color: #0B0B0F;
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-custom:hover {
    background: #00C9B0;
    transform: scale(1.05);
    box-shadow: 0 0 12px #00e6c377;
  }

  .tool-card {
    background: #1A1C23;
    border: 1px solid #00E6C311;
    border-radius: 12px;
    padding: 24px;
    color: #E3EAF2;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
  }

  .tool-card h5 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #00E6C3;
  }

  .tool-card p {
    color: #00E6C3;
    font-size: 0.95rem;
    flex-grow: 1;
  }

  .tool-card .btn-small {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #00E6C3;
    color: #0B0B0F;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: auto;
  }

  .tool-card .btn-small:hover {
    background: #00C9B0;
  }
.tool-card:hover {
  transform: translateY(-6px);
  border-color: #00E6C3; /* Highlight border */
  box-shadow: 0 0 15px #00E6C377, 0 0 25px #00E6C355; /* Glow effect */
}

  footer {
    background: #121318;
    padding: 20px;
    color: #888;
    text-align: center;
    font-size: 0.9rem;
  }

  footer a {
    color: #00E6C3;
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: underline;
  }