/* Graphic Design Page Box Styles for All Services Subpages */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin-bottom: 180px !important;
}

.cardpr {
  background-color: #121212 !important;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(161, 160, 160, 0.1);
  padding: 16px;
  border-bottom: 2px solid #f07a1f;
  width: 200px;
  height: 270px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cardpr:hover {
  transform: translateY(-10px);
}

.icon-circle {
  background-color: #f07a1f;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #fff;
  font-size: 32px;
  transition: background-color 0.3s ease;
}

.icon-circle:hover {
  background-color: #ed8331;
}

.cardpr h3 {
  font-size: 20px;
  margin: 15px 0;
  color: #ffffff;
  font-weight: bold;
}

.cardpr p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .cards-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
}
/* End Graphic Design Box Styles */
