/* إصلاح توسيط نص "تعرف على المزيد" في الأزرار */

/* إعادة تعيين موضع النص في الزر */
.optech-icon-btn span {
    position: relative !important;
    transform: translateX(0) !important;
    text-align: center !important;
    width: 100% !important;
    display: inline-block !important;
}

/* التأكد من أن الزر يعرض المحتوى في المنتصف */
.optech-icon-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* إخفاء الأيقونات في حالة الراحة لتوسيط النص */
.optech-icon-btn .icon-show,
.optech-icon-btn .icon-hide {
    display: none !important;
}

/* إظهار الأيقونات عند التمرير */
.optech-icon-btn:hover .icon-show {
    display: inline !important;
    opacity: 1 !important;
    margin-right: 8px !important;
}

.optech-icon-btn:hover .icon-hide {
    display: none !important;
}

/* للغة العربية - RTL */
[dir="rtl"] .optech-icon-btn span {
    text-align: center !important;
}

[dir="rtl"] .optech-icon-btn:hover .icon-show {
    margin-right: 0 !important;
    margin-left: 8px !important;
}

/* تحسين للأزرار في قسم الخدمات */
.service-btn-left span {
    transform: translateX(0) !important;
    text-align: center !important;
}