/* استيراد خط عربي (مثال: Cairo) */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

.about-us-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.about-us-section .about-us-container {
    /* تصميم أساسي لـ Grid بصفين: المحتوى والصورة */
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* المحتوى (Text) 1fr مقابل الصورة 1.1fr (لتبدو الصورة أعرض قليلاً) */
    gap: var(--space-xl);
    margin: 0 auto;
    align-items: center;
}

/* ----------------------------------
   1. تنسيق الخطوط والألوان والمسافات
   ---------------------------------- */

.text-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: start;
    justify-content: center;
}



.about-us-container h3 {
    color: var(--middleColor);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
}

.text-content p {
    color: var(--middleColor);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.text-content .first-intro-text {
    font-size: 16px;
    font-weight: 800;
    color: var(--primaryColor);
}

.text-content .second-intro-text {
    font-size: 16px;
    color: var(--middleColor);

}

.contact-prompt {
    font-weight: 700;
    font-size: 17px;
    color: var(--middleColor);
}


/* ----------------------------------
   4. شكل الـ li (علامة الصح )
   ---------------------------------- */

.about-us-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: start;
    justify-content: center;
    padding: 0;
}

.about-us-list li {
    position: relative;
    color: var(--middleColor);
    font-size: 17px;
    line-height: 1.6;
}


.about-us-list li i {
    color: white;
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    align-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    right: 0;
    top: 0;
}



.button-container {
    width: 100%;
    align-self: center;
}

.cta-button {

    display: inline-block;
    background-color: var(--primaryColor);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;

    font-size: 18px;
    font-weight: 700;

    width: 100%;
    max-width: 250px;

    box-shadow: 0 4px 10px var(--primaryColor);

    transition: background-color 0.3s;
    line-height: 1.2;
}

.cta-button:hover {
    background-color: var(--primaryColor);

}

.cta-button .phone-number {
    display: block;

    font-size: 14px;
    font-weight: 400;
}

.about-us-section .dots {
    position: absolute;
    left: 5%;
    bottom: 20px;
    display: grid;
    grid-template-columns: repeat(8, 15px);
    grid-template-rows: repeat(4, 15px);
    gap: 5px;
    /* المسافة بين النقاط */
}

.about-us-section .dots span {
    width: 6px;
    height: 6px;
    background: var(--helperColor);
    border-radius: 50%;
    display: inline-block;
}

@media (max-width: 992px) {
    .about-us-section .about-us-container {

        grid-template-columns: 1fr;
        gap: 30px;
    }

    .text-content {
        order: 2;

    }

    .image-content {
        order: 1;

    }

    .about-us-section h3 {
        font-size: 32px;
    }
}


@media (max-width: 576px) {

    .about-us-section h3 {
        font-size: 28px;
    }

    .text-content p,
    .services-list li {
        font-size: 15px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 16px;
        max-width: 100%;
    }

    .moving-dots-container {

        display: none;
    }
}