.icons-section {
  max-width: 1100px;
  margin: 60px auto;
  text-align: center;
  direction: rtl;
}

.icons-section-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 45px;
  text-align: center;
  color: #1b5e20; /* سبز تیره شکیل */
  letter-spacing: -0.5px;
}

.icon-title {
  margin-top: 12px;
  font-size: 17px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .icons-section-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}


.icons-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
  margin-bottom: 35px;
}

.icon-box {
  width: 140px;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  row-gap: 5px;
  cursor: pointer;
  transition: 0.3s;
}

/* Circle */
.icon-circle {
  border: 3px solid transparent;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: 0.35s;
}

/* Green overlay */
.icon-circle::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 128, 0, 0.35);
  transform: translateY(100%);
  transition: 0.4s ease;
}

/* Image */
.icon-circle img {
  width: 90px;
  transition: 0.45s ease;
  z-index: 2;
}

/* Desc inside circle */
.icon-desc {
  z-index: 3;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  opacity: 0;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  text-align: center;
  transform: translateY(-50%);
  transition: 0.45s ease;
  padding: 0 5px;
}

/* Hover Effects */
.icon-box:hover .icon-circle {
  border: 3px solid #00b347;
}

.icon-box:hover .icon-circle::after {
  transform: translateY(0);
}

/* Rotate + Blur */
.icon-box:hover .icon-circle img {
  transform: rotate(-260deg) scale(0.9);
  filter: blur(2px);
  opacity: 0.3;
}

/* Reveal text */
.icon-box:hover .icon-desc {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .icons-row {
    flex-wrap: wrap;
    gap: 25px;
  }
  .icon-box {
    width: 120px;
  }
}

.icon-box,
.icons-row,
.icons-section {
  position: relative;
  z-index: 0;
}

.icon-desc {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 0 4px rgba(0,0,0,0.55);
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.30));
  padding: 6px 8px;
  border-radius: 6px;
}

.icon-box:hover .icon-circle {
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

