* {
  
    font-family: 'Cairo', sans-serif;
}
    
    .hero-section {
    width: 100%;
   
    display: flex;
    align-items: center;
    justify-content: center;
  
}

.container {
    width: 100%;
 
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* --- تصميم جانب النصوص --- */
.content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1e1e1e;

}

.main-title .highlight {
    color: #fec901; /* اللون الأصفر المميز للشعار */
}

.description {
    font-size: 1.1rem;
    color: #707070;

}

/* حاوية الكروت الثلاثة */
.features-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.4rem;
    color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: #4a4a4a;
}

.feature-text strong {
    color: #1e1e1e;
    font-weight: 700;
}

/* --- تصميم جانب الصورة (الموك أب) --- */
.image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* الدائرة الصفراء التجميلية خلف اللابتوب */
.yellow-circle-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: #fec901;
    border-radius: 50%;
    top: 10%;
    left: -10%;
    z-index: 1;
    opacity: 0.9;
}

/* --- الشاشات المتجاوبة (Responsive) --- */
@media (max-width: 992px) {
    .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    
    .features-container {
        justify-content: center;
              
    }
    .feature-card {

            margin: 1px;
        width: 20px;
        float: right;
        min-width: 40%;
}
    
    .main-title {
              font-size: 26px;
    }
    
    .yellow-circle-bg {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        width: 200px;
        height: 200px;
    }
}
.form-title-container {
    text-align: center;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e1e1e;
}

/* الخط الأصفر الصغير أسفل العنوان */
.yellow-underline {
    width: 40px;
    height: 4px;
    background-color: #fec901; /* نفس درجة اللون الأصفر المستخدمة سابقاً */
    border-radius: 2px;
}

/* حاوية البطاقة بالكامل لضبط التوسيط والهوامش */
.success-card-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0px 20px;
}

/* جسم البطاقة الرئيسي */
.success-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 40px;
 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* --- تصميم قسم الأيقونة --- */
.success-icon-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* أيقونة المغلف الرئيسي */
.envelope-main {
    font-size: 5rem;
    color: #fec901; /* اللون الأصفر للموقع */
}

/* شارة علامة الصح بالأسفل */
.check-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background-color: #1e1e1e;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 3px solid #ffffff;
}

/* النجوم الصغيرة التزيينية حول الأيقونة */
.dot {
    position: absolute;
    color: #fec901;
    font-size: 14px;
}
.dot-1 { top: 10px; right: 0; }
.dot-2 { bottom: 20px; right: -15px; color: #1e1e1e; }

/* --- تصميم قسم النصوص والزر --- */
.success-content-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    text-align: right;
}

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e1e1e;
}

.success-desc {
    font-size: 1rem;
    color: #707070;
    line-height: normal;
}

/* زر العودة للصفحة الرئيسية */
.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fec901;
    color: #1e1e1e;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.back-home-btn:hover {
    background-color: #e5b500;
    transform: translateY(-2px);
}

/* --- التجاوب مع الشاشات الصغيرة (Mobile) --- */
@media (max-width: 768px) {
    .success-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }

    .success-content-side {
        align-items: center;
        text-align: center;
    }
    
    
}


/* تصميم الفوتر الرئيسي */
.main-footer {
    background-color: #111111; /* الخلفية الداكنة */
    color: #ffffff;
    padding: 60px 20px;

        border-radius: 20px;

}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* إعدادات الأعمدة الافتراضية */
.footer-col {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* عمود الشعار والتعريف */
.about-col {
    flex: 1.5; /* ليعطيه مساحة أكبر قليلاً */
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #fec901; /* اللون الأصفر المميز */
}

.footer-logo .logo-light {
    color: #ffffff;
    font-weight: 400;
    font-size: 1.5rem;
}

.footer-about-text {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: normal;
}

/* أيقونات التواصل الاجتماعي الدائرية */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #fec901;
    color: #111111;
    border-color: #fec901;
}

/* عناوين القوائم في الأعمدة */
.col-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 5px;
}

/* تصميم القوائم والروابط */
.footer-links-list, .contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;margin: 0px;
    padding: 0px;
}

.footer-links-list a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: #fec901;
}

/* بيانات التواصل والاتصال */
.contact-info-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.contact-text {
    color: #b0b0b0;
    font-size: 0.95rem;
    direction: ltr; /* لعرض الأرقام والإيميلات بشكل صحيح */
}

.contact-icon {
    color: #fec901;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* زر الواتساب الأصفر */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fec901;
    color: #111111;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #e5b500;
}
/* حاوية قسم التابات بالكامل */
.tabs-section {
    width: 100%;
    padding: 0px 10px;
    background-color: #ffffff;

    justify-content: center;

}

.tabs-container {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 900px;
}

/* التصميم الافتراضي للبطاقة (غير المحددة) */
.tab-card {
    flex: 1;
    background-color: #ffffff;
    border: 2px solid #eef0f3;
    border-radius: 16px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* الدائرة العلوية للخيارات (مؤشر التحديد) */
.selection-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 24px;
    height: 24px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    transition: all 0.3s ease;
}


.rtl .selection-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    left :auto;
    width: 24px;
    height: 24px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.selection-indicator .check-icon {
    font-size: 24px;
    color: #fec901;
    display: none; /* مخفي افتراضياً */
}

/* تصميم الأيقونات داخل الكروت */
.tab-icon {
    font-size: 3.5rem;
    color: #1e1e1e;
    margin-bottom: 20px;
}

/* في حالة أيقونة الصاروخ نغير اللون ليطابق لمسة التصوير الأصفر والأزرق الخفيف إذا رغبت */
.tab-icon .fa-rocket {
    color: #1e1e1e; 
}

.tab-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 12px;
    line-height: normal;
}

.tab-description {
    font-size: 0.95rem;
    color: #888888;
    line-height: normal;
}

/* ---------------------------------
   حالة التحديد النشطة (Active State) 
--------------------------------- */
.tab-card.active {
    border-color: #fec901; /* الحواف تصبح صفراء */
    box-shadow: 0 10px 25px rgba(254, 201, 1, 0.08);
}

.tab-card.active .selection-indicator {
    border-color: transparent;
    background-color: transparent;
}

.tab-card.active .selection-indicator .check-icon {
    display: block; /* تظهر علامة الصح الممتلئة باللون الأصفر */
}

/* تأثير تمرير الماوس للبطاقة غير المحددة */
.tab-card:not(.active):hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
}

/* التجاوب مع شاشات الموبايل الصغير */
@media (max-width: 680px) {
    .tabs-container {
        flex-direction: column;
    }
}

/* --- دعم الشاشات الصغيرة والتجاوب --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .social-icons, .contact-info-list li {
        justify-content: center;
    }
    
    .whatsapp-btn {
        width: 100%;
        max-width: 280px;
        margin: 10px auto 0 auto;
    }
}/* --- إعدادات بوكس الفورم السفلي --- */
.form-content-box {
    width: 100%;
    margin: 30px auto 0 auto; /* مسافة بين الكروت والفورم */

    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 35px;

}

/* لوحة الفورم الافتراضية (مخفية) */
.form-panel {
    display: none; 
    animation: fadeIn 0.4s ease-in-out; /* حركة دخول ناعمة للفورم */
}

/* اللوحة النشطة (تظهر عند النقر) */
.form-panel.active {
    display: block;
}



.panel-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 25px;
    border-left: 4px solid #fec901; /* خط أصفر جانبي تجميلي */
    padding-left: 10px;
}

.rtl .panel-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 25px;
    border-right: 4px solid #fec901; /* خط أصفر جانبي تجميلي */
       border-left: 0px solid #fec901; /* خط أصفر جانبي تجميلي */
    padding-right: 10px;
     padding-left: 0px;
}


/* تنسيق حقول الإدخال */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4a4a4a;
}

.form-group input, .form-group textarea {

    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    background-color: #fafafa;
    outline: none;
    transition: all 0.3s ease;
 
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #fec901;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(254, 201, 1, 0.15);
}

/* زر الإرسال داخل الفورم */
.submit-btn {
    background-color: #1e1e1e;
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #fec901;
    color: #1e1e1e;
}

/* تأثير التلاشي عند ظهور الفورم */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-wrapper {
    display: flex;
    max-width: 1150px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eef0f3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    overflow: hidden;
}

/* الجانب الأيمن (Sidebar) */
.steps-sidebar {
    width: 320px;
    background-color: #fafafa;
    padding: 40px 25px;
    border-left: 1px solid #eef0f3;
    display: flex;
    flex-direction: column;

}

.sidebar-step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.sidebar-step.active {
    opacity: 1;
}

.step-num {
    width: 36px;
    height: 36px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sidebar-step.active .step-num {
    background: #fec901;
    color: #1e1e1e;
}

.step-info {
    display: flex;
    flex-direction: column;
}

.step-info strong {
    font-size: 0.95rem;
    color: #1e1e1e;
}

.step-info span {
    font-size: 0.8rem;
    color: #7a7a7a;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eef0f3;
    margin-top: 40px;
}

.secure-badge i { font-size: 1.5rem; color: #fec901; }
.secure-badge strong { display: block; font-size: 0.85rem; }
.secure-badge span { font-size: 0.75rem; color: #7a7a7a; }

/* منطقة الاستمارة الرئيسية */
.form-main-area {
    flex: 1;
    padding: 40px;
}

.wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eef0f3;
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.step-counter { font-weight: 700; font-size: 0.95rem; }

.progress-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

#progress-text { font-size: 0.85rem; font-weight: 700; }

.progress-bar-bg {
    width: 140px;
    height: 6px;
    background: #eef0f3;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #fec901;
    transition: width 0.4s ease;
}

/* لوحات الخطوات */
.form-step-panel {
    display: none;
    animation: slideUp 0.4s ease-in-out;
}

.form-step-panel.active { display: block; }

.panel-main-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.panel-sub-title { font-size: 0.9rem; color: #7a7a7a; margin-bottom: 25px; }

/* الهيكلة الشبكية للحقول */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.form-group.full-width { grid-column: span 2; }

.form-group label { font-size: 0.9rem; font-weight: 700; color: #3a3a3a; }
.form-group label .required { color: #de350b; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    background: #fafafa;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #fec901;
    background: #fff;
}

/* الكروت الخاصة بالـ Radio و Checkbox */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 5px;
}

.options-grid.binary { grid-template-columns: 1fr 1fr; max-width: 300px; }

.radio-card, .checkbox-card {
    border: 1px solid #eef0f3;
    padding: 14px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
}

.radio-card:hover, .checkbox-card:hover { border-color: #d1d5db; }

.radio-card input:checked + span, .checkbox-card input:checked + span {
    font-weight: 700;
}

/* الحقول الشرطية */
.conditional-box {
    display: none;
    background: #fdfdfd;
    border: 1px dashed #fec901;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

.conditional-input { display: none; margin-top: 10px; }

/* أزرار التنقل السفلى */
.wizard-footer-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #eef0f3;
    padding-top: 25px;
}

.nav-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: all 0.2s ease;
}

.prev-btn { background: #eef0f3; color: #4a4a4a; }
.prev-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.next-btn { background: #fec901; color: #1e1e1e; }
.next-btn:hover { background: #e5b500; }

@keyframes slideUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* التوافق مع شاشات الجوال */
@media (max-width: 850px) {
    .wizard-wrapper { flex-direction: column; }
    .steps-sidebar { width: 100%; border-left: none; border-bottom: 1px solid #eef0f3; display: none;}
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
}
/* صندوق تنبيه الأمان الاحترافي داخل الخطوة الثالثة */
.security-notice-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f4f6f9;
    border-right: 4px solid #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.security-notice-box .notice-icon i {
    font-size: 1.4rem;
    color: #1e1e1e;
}

.security-notice-box .notice-text strong {
    display: block;
    font-size: 0.95rem;
    color: #1e1e1e;
    margin-bottom: 4px;
    font-weight: 700;
}

.security-notice-box .notice-text span {
    font-size: 0.85rem;
    color: #555555;
    line-height: normal;
}

/* لون مخصص لزر بدء التنفيذ تمييزاً له */
.nav-btn.next-btn.exec-color {
    background-color: #fec901;
    color: #1e1e1e;
}

.nav-btn.next-btn.exec-color:hover {
    background-color: #e5b500;
}

/* عند اختيار "لا شيء جاهز حالياً" يتم تمييزه بخلفية داكنة خفيفة */
#none-ready:checked + span {
    color: #de350b;
    font-weight: 700;
}

.back-home-btnfff{ display: none ;}
.ffffffff{ display: none ;}
.success-card-container .fa-solid.fa-circle-check {display: none ;
}
@media(max-width:767px){
   .success-card-container i.fa-solid.fa-circle-check {    display: block  !important;
}
    .footer-col.links-col {display: none ;}
    .footer-col.contact-col {display: none ;}
    
    
    .ffffffff{ display: flex !important;         margin-top: 19px;
        padding: 0px 33px;}
    .panel-main-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 29px;
    text-align: center;
}
.back-home-btn{width: 100%;}
.back-home-btnfff{    background: #ffffff;
    border: 1px solid #000000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* background-color: #fec901; */
    color: #1e1e1e;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
    width: 100%;
        display: flex !important;
}
.success-desc {
    font-size: 12px;
    color: #707070;
    line-height: normal;
}
    .success-icon-side{ display: none ;}
    .form-group label {
   font-size: 11px;
        border-color: #FFCE59;
        padding: 12px 9px;
        height: 48px;
        line-height: 1;
}
    
    .progress-bar-bg {
    width: 100%;
 
}
.options-grid {
  
    grid-template-columns: repeat(auto-fill, minmax(47%, 2fr));
    gap: 3px;
}

.form-grid {
   
    gap: 0;
}
  
    .form-content-box {
    padding: 0px !important;
}
.wizard-header {
    display: inline !important;
}
.form-main-area {
    padding: 9px !important;
}
.footer-col.about-col img {
    margin: auto;
}

.nav-btn {
    padding: 12px 17px;
  
}
.tab-card {

    flex-direction: row-reverse;    padding: 30px 4px 5px;

}

.tab-title {
    font-size: 13px;margin-bottom: 0;

}
.tab-description {
    font-size: 12px;        margin: 0px;
    
}
.tab-icon {
    font-size: 25px;
    margin: 10px;
}
   .feature-text {
    font-size: 9px;
} 
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 2px;
}

.form-group input, .form-group textarea {

    width: 100%;
}

input[type="radio"] ,input[type="checkbox"]{
    width: auto;
}
}


i.fa-solid.fa-arrow-left {
    transform: scaleX(-1) !important;
}


.rtl i.fa-solid.fa-arrow-left {
    transform: scaleX(1) !important;
}



i.fa-solid.fa-arrow-right {
    transform: scaleX(-1) !important;
}

.rtl i.fa-solid.fa-arrow-right {
    transform: scaleX(1) !important;
}