.tools-page h1 {
  color: #38bdf8;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 10px;
}

.tools-sub {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 30px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}


.tool-card {
  background: #0f172a;
  padding: 20px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.tool-card h2 {
  color: #22c55e;
}
.tool-card:hover {
  transform: translateY(-6px);
  background: #38bdf8;
  color: #020617;
}
.tool-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

