@charset "UTF-8";
/* ✅ Modern Service Card */
.service-card {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
.service-thumb {
  width: 100%;
  height: 250px;          /* fixed height for consistent layout */
  object-fit: contain;    /* ✅ ensures full image is visible */
  background-color: #fff; /* ✅ white background instead of grey/black bars */
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  display: block;
}

.service-card:hover .service-thumb {
  transform: scale(1.03);
}
.service-card h4 a {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.service-card h4 a:hover {
  color: #007bff;
}
.category-links {
  margin-top:40px;
  text-align:center;
}
.category-links a {
  display:inline-block;
  margin:4px;
  padding:6px 14px;
  background:#f7f7f7;
  border-radius:20px;
  font-size:14px;
  color:#333;
  text-decoration:none;
  border:1px solid #ddd;
  transition:all .2s;
}
.category-links a:hover {
  background:#007bff;
  color:#fff;
  border-color:#007bff;
}