/*Write your custom style or CSS code here*/
/* اجبار القوائم على RTL */
.plan-box ul {
    direction: rtl !important;
    text-align: right !important;
    list-style-position: inside !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
}

/* توحيد المسافات بين السطور */
.plan-box ul li {
    margin-bottom: 6px !important;
    line-height: 1.6 !important;
    white-space: normal !important;
}

/* منع العناصر من النزول للأسفل */
.plan-box {
    min-height: 650px !important;
}

/* جعل العناوين منسقة */
.plan-box h2 {
    text-align: center !important;
}

/* زر اطلب الآن */
.plan-box .price-box,
.plan-box button,
.plan-box a {
    text-align: center !important;
    display: block !important;
    margin-top: 15px !important;
}

/* معالجة الكسر في أول عنصر */
.plan-box ul li:first-child {
    margin-top: 0 !important;
}
/* زر اللغة + العملة ثابت */
.tt-footer-bottom ul.list-inline {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    background: #222;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.tt-footer-bottom ul.list-inline .btn {
    color: #fff !important;
}
/* كروت tt-promo */
.tt-promo {
    position: relative;
    overflow: hidden;
}

/* الإطار العلوي المتحرك بقوس قزح */
.tt-promo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;

    /* تدرج قوس قزح الحقيقي */
    background: linear-gradient(
        90deg,
        red,
        orange,
        yellow,
        green,
        cyan,
        blue,
        violet,
        red
    );

    background-size: 400% 100%;
    animation: rainbowMove 15s linear infinite;
}

/* الحركة */
@keyframes rainbowMove {
    0%   { background-position: 0% 0; }
    100% { background-position: 400% 0; }
}

