:root {
    /* Hero Section Colors (ebhro11) */
    --ebhro11-color-primary: #00045F;
    --ebhro11-color-accent: #E83A15;
    --ebhro11-color-accent-hover: #c72c0e;
    --ebhro11-color-white: #ffffff;
    --ebhro11-color-black: #000000;
    --ebhro11-text-main: #ffffff;
    --ebhro11-bg-overlay: rgba(0, 0, 0, 0.342);
    --ebhro11-btn-whatsapp-bg: #E83A15;
    --ebhro11-btn-whatsapp-text: #ffffff;
}

/* ==========================================================================
           02. HERO SECTION (ebhro11) - MOBILE FIRST
           ========================================================================== */
.ebhro11-hero-service {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background-image: url('../img/blog-details-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    /* يمنع اختفاء المحتوى خلف الهيدر الثابت */
    padding-bottom: 60px;
}

/* طبقة حماية داكنة لضمان مقروئية النص العالية */
.ebhro11-hero-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--ebhro11-bg-overlay);
    z-index: 1;
}

.ebhro11-container-service {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    /* gap: 15px; */
}

/* العنوان الرئيسي العريض */
.ebhro11-title-service {
    color: var(--ebhro11-color-white);
    font-size: clamp(1.6rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.8;
    width: 100%;
    /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); */
}

.ebhro11-image-wrapper-service {
    width: 100%;
    height: auto;
}

.ebhro11-image-service {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ==========================================================================
           03. DESKTOP MEDIA QUERIES (شاشات الحاسوب الكبيرة)
           ========================================================================== */
@media (min-width: 992px) {
    .ebhro11-container-service {

        flex-direction: row;
    }

    .ebhro11-title-service {
        width: 60%;
        /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); */
    }

    .ebhro11-image-wrapper-service {
        width: 35%;
        height: auto;
    }
}

/* ############################# */
/* ############################# */
/* ############################# */

:root {
    /* Highly specific and expressive variables for every color element */
    --ebblog-article-bg-color: #ffffff;

    --ebblog-main-title-text-color: #00045F;
    --ebblog-sub-title-text-color: #00045F;

    --ebblog-paragraph-text-color: #00045F;

    --ebblog-list-item-text-color: #00045F;
    --ebblog-list-bullet-color: #00045F;

    /* Used the light blue requested as a subtle background accent for lists */
    --ebblog-list-item-bg-color: #EDF5FF;
}

/* Main Section Wrapper */
.ebblog-article-section {
    background-color: var(--ebblog-article-bg-color);
    direction: rtl;
    /* Sets Arabic text direction correctly */
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 50px;
    /* Primary spacing between massive blocks */
    padding: 40px 20px;
    width: 100%;
    text-align: start;
}

/* Individual Content Blocks */
.ebblog-content-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    /* width: 100%; */
    /* Spacing between headings, paragraphs, and lists */
}

/* Sub-blocks for nested topics (e.g., inside 'What we offer') */
.ebblog-sub-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Tighter spacing for sub-sections */
}

/* Typography & Titles */
.ebblog-main-title {
    color: var(--ebblog-main-title-text-color);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    line-height: 1.4;
}

.ebblog-sub-title {
    color: var(--ebblog-sub-title-text-color);
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 700;
    line-height: 1.4;
}

.ebblog-paragraph {
    color: var(--ebblog-paragraph-text-color);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    font-weight: 500;
}

/* Lists styling strictly using flex and gap */
.ebblog-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Spacing between list items */
    list-style: none;
    /* Removing default HTML bullets to custom design them */
    padding: 0;
    margin: 0;
}

.ebblog-list-item {
    color: var(--ebblog-list-item-text-color);
    /* background-color: var(--ebblog-list-item-bg-color); */
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    /* line-height: 1.7; */
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    /* Spacing between the bullet and the text */
    padding-inline: 15px;
    border-radius: 8px;
}

/* Custom bullet using the pseudo-element */
.ebblog-list-item::before {
    content: "•";
    color: var(--ebblog-list-bullet-color);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1;
    /* Keeps the bullet aligned with the first line of text */
    /* margin-top: -5px;z */
    /* Slight optical adjustment for Arabic fonts */
}

@media (min-width:992px) {
    .ebblog-content-block {
        width: 70%;

    }
}

/* #################### */
/* #################### */
/* #################### */

:root {
    /* Specific expressive variables for every color */
    --ebsect7-background-color: #ffffff;

    --ebsect7-main-title-text-color: #00045F;
    --ebsect7-subtitle-text-color: #00045F;

    --ebsect7-card-title-text-color: #00045F;
}

/* Main Section Wrapper */
.ebsect7-wrapper {
    background-color: var(--ebsect7-background-color);
    direction: rtl;
    /* Sets Arabic text direction */
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Replacing inner margins with flex gap */
    gap: 70px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Area Container */
.ebsect7-header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    /* Space between title and subtitle */
}

.ebsect7-main-title {
    color: var(--ebsect7-main-title-text-color);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.4;
}

.ebsect7-subtitle {
    color: var(--ebsect7-subtitle-text-color);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    line-height: 1.5;
    opacity: 0.85;
    /* Slight visual hierarchy for the subtitle */
}

/* Cards Flex Container */
.ebsect7-cards-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* Wraps items on smaller screens */
    justify-content: center;
    gap: 40px;
    /* Consistent spacing between cards */
    width: 100%;
}

/* Individual Card Items */
.ebsect7-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    /* Spacing between the image and the card title */
    width: 100%;
    max-width: 480px;
}

.ebsect7-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    /* Keeps images consistently shaped */
    object-fit: cover;
    display: block;
}

.ebsect7-card-title {
    color: var(--ebsect7-card-title-text-color);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}