/* 🌐 Make each tool card smaller and uniform */
.tool-card {
  width: 180px;               /* Smaller fixed width */
  height: 150px;              /* Slightly shorter height */
  border-radius: 10px;        /* Rounded corners for nicer look */
  transition: transform 0.2s, box-shadow 0.2s;
  background-color: #ffffff;     /* Ensure consistent background */
}

/* 🖱️ Hover effect */
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.598);
}

/* 🖼️ Make the icon smaller and nicely spaced */
.tool-card img {
  width: 50px;                /* smaller icon */
  height: 50px;
  object-fit: contain;
  margin-bottom: 0px;
}

/* 🏷️ Smaller font for the card title */
.tool-card .card-title {
  font-size: 1rem;         /* default Bootstrap h5 ≈ 1.25rem */
  font-weight: 600;
  margin-bottom: 5px;
}

/* 📄 Smaller font for the description text */
.tool-card .card-text {
  font-size: 0.83rem;         /* default ≈ 1rem */
  color: #666666;
  line-height: 1.3;
}

/* 🧱 Keep spacing consistent inside the card body */
.tool-card .card-body {
  padding: 0.75rem 0.5rem;    /* smaller padding inside the card */
}

/* Remove link underline and keep consistent color */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

h3 {
  margin-bottom: 1rem;
}

