/* باکس‌های آیکون */
.icon-square {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

/* رنگ‌بندی‌ها */
.bg-green-light { background-color: #e8f8f5; }
.text-green { color: #2ecc71; }
.bg-blue-light { background-color: #eef7ff; }
.text-blue { color: #0d6efd; }

/* انیمیشن تپش */
@keyframes green-pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
.pulse-green-animation {
    animation: green-pulse 2s infinite;
}

/* افکت‌ها */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #2ecc71 !important;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.lh-lg { line-height: 2 !important; }
.z-1 { z-index: 1; }
.border-success { border-color: #2ecc71 !important; }

/* گردی گوشه‌ها (اگر بوت‌استرپ کلاس rounded-4 ندارد) */
.rounded-4 {
    border-radius: 1rem !important;
}