/* Category Grid */
.solutions .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.solutions .category-card {
  background: white;
  border-radius: 0.5rem;
  /* border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); */
  /* transition: box-shadow 0.2s; */
  overflow: hidden;
  padding: 20px;
}
.solutions .page-subtitle {
  /* margin-bottom: 35px; */
  margin-bottom: 14px;
}
.solutions .othersolution-div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.solutions .othersolution-div a {
  width: 283px;
  height: 185px;
  align-self: end;
}
/* .solutions .category-card:hover {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
} */

.solutions .category-header {
  padding: 5px 0px;
  border-bottom: 1px solid black;
}

.solutions .category-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.solutions .category-count {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.solutions .category-items {
  padding: 10px 0px;
}

.solutions .category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.15s;
}

.solutions .category-item:last-child {
  margin-bottom: 0;
}

.solutions .category-item:hover {
  /* background-color: #f9fafb; */
}

.solutions .item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.solutions .card-title {
  /* padding-left: 20px;
    padding-top: 20px; */
  background: linear-gradient(to right, #a3bdff, #e9e9e9);
  border-radius: 0px;
  max-height: 315px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.solutions .category-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.solutions .item-icon {
  color: #9ca3af;
  font-size: 1rem;
  transition: color 0.15s;
}

.solutions .category-item:hover .item-icon {
  color: #6b7280;
}

.solutions .item-name {
  color: #374151;
  transition: color 0.15s;
}

.solutions .category-item:hover .item-name {
  color: #eb3622;
}

.solutions .item-count {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.solutions .page-title {
  font-size: 30px;
  color: white;
}

.solutons .page-subtitle {
  color: #666;
}

.solutions .gradient-text {
  background: linear-gradient(90deg, #FE4E44 0%, #9F0900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
  .solutions .category-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .solutions .container {
    padding: 0 0.75rem;
  }
}

@media (max-width: 480px) {
  .solutions .category-header {
    padding: 1rem;
  }

  .solutions .category-items {
    padding: 0.75rem 1rem 1rem;
  }

  .solutions .page-title {
    font-size: 1.25rem;
  }
}
