.services-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.services-title {
  text-align: center;
  font-size: 2em;
  color: #333;
  margin-bottom: 40px;
  font-family: "Bebas", sans-serif;
}

.service-category {
  margin-bottom: 60px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease;
}

.service-category:hover {
  transform: translateY(-5px);
}

.category-title {
  color: #2c3e50;
  font-size: 1.6em;
  margin-bottom: 15px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 8px;
}

.category-description {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: #e9ecef;
  transform: scale(1.02);
}

.service-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
}

.service-item h4 {
  color: #2c3e50;
  margin: 8px 0;
  font-size: 1.1em;
}

.sub-services {
  margin-top: 15px;
  width: 100%;
}

.sub-service {
  background: #fff;
  padding: 8px;
  margin: 4px 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .services-container {
    padding: 10px;
  }

  .service-items {
    grid-template-columns: 1fr;
  }

  .service-category {
    padding: 20px;
  }
}
/* show more and show less - styling && animation */
.hidden {
  display: none;
}

.show-more-btn {
  background-color: #232323;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.show-more-btn:hover {
  background-color: #444;
}

.service-items {
  transition: all 0.3s ease-in-out;
}
