.icon-box-transparent {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9fafb, #dce3ea);
    border: 2px solid #f77f00;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 48, 73, 0.12);
    position: relative;
}

.icon-box-transparent:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 48, 73, 0.18);
}

.icon-colored {
    font-size: 2rem;
    line-height: 1;
    color: #003049;
    transition: color 0.4s ease;
}

.icon-box-transparent:hover .icon-colored {
    color: #f77f00;
}

.icon-item {
    width: 100px;
    text-align: center;
}


.icon-wrapper3 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9fafb, #dce3ea);
  border: 2px solid #f77f00;
  background-clip: padding-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.icon-wrapper3:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 48, 73, 0.25);
  border: 2px solid #003049;
}

/* لضبط الأيقونة بالمنتصف تماما */
.icon-centered {
  font-size: 2.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #003049;
  transition: color 0.4s ease;
}

.icon-wrapper3:hover .icon-centered {
  color: #f77f00;
}