#service {
  margin-top: 40px;
}

.service-box {
    display: flex;
  background-color: #fff;
  padding: 2.5rem 1.3rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: auto;
  transition: transform 0.3s ease;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box:hover .ico-circle {
  background-color: var(--primary-color);
  box-shadow: 0 0 0 10px var(--accent-color);
  color: #fff;
}

.service-box .service-ico {
  margin-bottom: 1rem;
  color: #1e1e1e;
}

.service-box .ico-circle {
  font-size: 4rem;
  transition: all 0.5s ease;
}

.s-title {
  margin: 0.5rem 0;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
}

.service-box .s-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  padding: 0.4rem 0;
}

.service-box .s-description {
  color: var(--text-gray);
}

/* رنگ اختصاصی برای هر سرویس */
.service-pictures .ico-circle {
  color: #e91e63;
}

.service-pm .ico-circle {
  color: #3f51b5;
}

.service-monitoring .ico-circle {
  color: #009688;
}

/* واکنش‌گرایی برای موبایل */
@media (max-width: 768px) {
  .service-box .ico-circle {
    font-size: 3rem;
  }
  
  .ico-circle {
  background-color: #f0f0f0;
  border-radius: 50%;
  padding: 1rem;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.service-box {
  height: auto;
}

  .service-box .s-title {
    font-size: 1.2rem;
    
  }
}
