/* تنسيق القسم والحاوية */
.ebpt2-why-us {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: var(--ebpt2-space-xl);
    background-color: var(--ebpt2-white);
    padding: var(--ebpt2-space-xl) 0;
}

.ebpt2-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--ebpt2-space-md);
}

/* العنوان الرئيسي وكلمة التمييز */
.ebpt2-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: bold;
    color: var(--ebpt2-secondary);
}

.ebpt2-title-highlight {
    color: var(--ebpt2-primary);
}

/* الخط السفلي الأنيق للعنوان  */
.ebpt2-underline {
    width: 80px;
    height: 2px;
    background-color: var(--ebpt2-secondary);
    position: relative;
}

.ebpt2-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: var(--ebpt2-space-xl);
    max-width: var(--ebpt2-container-width);
    width: calc(100vw - 2em);
    margin: 0 auto;
}

/* تصميم البطاقة الأساسي (الميلان والخلفية) */
.ebpt2-card {
    display: flex;
    flex-direction: column;
    width: 440px;
    /* background-color: color-mix(in srgb, var(--ebpt2-primary) 5%, var(--ebpt2-white)); */
    transform: skewX(-6deg);
    transition: var(--ebpt2-transition);
    overflow: hidden;
    box-shadow: 0 15px 30px color-mix(in srgb, var(--ebpt2-primary) 10%, transparent);

    /* لمنع أي خروج للعناصر عن حواف الميلان */
}

/* عكس الميلان للمحتوى الداخلي ليصبح مستقيماً */
.ebpt2-card-header>*,
.ebpt2-card-body>* {
    transform: skewX(12deg);
}

/* رأس البطاقة الملون (الجزء العلوي) */
.ebpt2-card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ebpt2-secondary);
    padding: var(--ebpt2-space-sm);
    transition: var(--ebpt2-transition);
}

/* الرقم التعريفي بديل الأيقونة */
.ebpt2-card-num {
    font-size: clamp(4rem, 5vw, 6em);
    font-weight: 700;
    color: var(--ebpt2-dark);
    line-height: 1;
    opacity: 0.8;
}

/* جسد البطاقة (الجزء السفلي الذي يحتوي على النصوص) */
.ebpt2-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--ebpt2-space-xs);
    padding: var(--ebpt2-space-sm);
    flex-grow: 1;
}

/* عنوان البطاقة الجذاب */
.ebpt2-card-title {
    font-size: clamp(var(--ebpt2-fs-lg), 3vw, var(--ebpt2-fs-xl));
    font-weight: 700;
    color: var(--ebpt2-dark);
    margin: 0;
}

/* وصف البطاقة الأنيق */
.ebpt2-card-desc {
    font-size: var(--ebpt2-fs-base);
    font-weight: 300;
    line-height: 1.6;
    color: var(--ebpt2-black);
    margin: 0;
}

/* تأثيرات التمرير (Hover Effects) */
.ebpt2-card:hover {
    transform: skewX(-12deg) translateY(-10px);

}

.ebpt2-card:hover .ebpt2-card-header {
    background-color: var(--ebpt2-primary);
}

.ebpt2-card:hover .ebpt2-card-num {
    color: var(--ebpt2-white);
    opacity: 1;
}

@media (max-width:375px) {
    .ebpt2-card {
        display: flex;
        flex-direction: column;
        width: calc(100% - 2em);
    }
}

@media (max-width:320px) {
    .ebpt2-card {
        display: flex;
        flex-direction: column;
        width: calc(100% - 2em);
    }
}