
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 20px;
}

header {
  background-color: #2c3e50;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}

main {
  margin-top: 30px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9em;
  color: #666;
}

/* ———————————————— */
/* Premium Tool Card Styles */
/* ———————————————— */

.tool-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.tool-icon {
  font-size: 2rem;
  color: #3C68FF;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon {
  transform: scale(1.15);
}

.tool-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #333;
  margin: 0.5rem 0;
  position: relative;
}

.tool-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #3C68FF;
  transition: all 0.3s ease;
}

.tool-card:hover .tool-title::after {
  left: 25%;
  width: 50%;
}

.tool-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #555;
}


