/* الحاوية الرئيسية */
.pps-box {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 675px;
    margin: 0 auto;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background: #000; /* خلفية احتياطية فقط */
}

/* الشريحة */
.pps-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    box-sizing: border-box;
}

/* الشريحة النشطة */
.pps-slide.active {
    display: flex;
}

/* المحتوى */
.pps-inner {
    position: relative;
    color: #ffffff !important;
    width: 100%;
    max-width: 850px;
    /* إضافة ظل للنصوص لضمان القراءة في حال كانت الصورة فاتحة بعد حذف الطبقة السوداء */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.pps-inner h4 { font-size: 1.2rem; margin: 0 0 10px; color: #fff !important; }
.pps-inner h1 { font-size: 3rem; font-weight: 900; margin: 0 0 25px; line-height: 1.2; color: #fff !important; }
.pps-inner p.desc { font-size: 1.2rem; opacity: 1; line-height: 1.6; margin-bottom: 30px; color: #fff !important; }

/* صف البيانات */
.pps-data-row { display: flex; gap: 40px; margin-bottom: 35px; }
.pps-data-item { display: flex; align-items: center; gap: 12px; }
.pps-data-item .dashicons { font-size: 32px; width: 32px; height: 32px; filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5)); }
.pps-info-text strong { display: block; font-size: 1.2rem; color: #fff; }
.pps-info-text small { font-size: 1rem; font-weight: bold; text-shadow: none; }

/* الأزرار */
.pps-btns { display: flex; align-items: center; gap: 20px; text-shadow: none; }
.pps-v-pulse {
    width: 65px; height: 65px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff !important; text-decoration: none;
    animation: ppsWap 1.5s infinite;
}
.pps-b-link {
    padding: 15px 40px; border-radius: 5px;
    font-weight: bold; color: #fff !important; text-decoration: none;
    font-size: 1.1rem;
}

/* سهم التحكم */
.pps-ctrl {
    position: absolute;
    bottom: 30px; left: 30px;
    z-index: 999;
    background: #ff5a6e;
    border: none; color: #fff;
    width: 55px; height: 55px;
    cursor: pointer; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

@keyframes ppsWap {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
    100% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
}