section.about-us {
    padding: 80px 5px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    text-align: center;
    color: white;
}

section.about-us .container {
    max-width: 100%;
    margin: 0 auto;
}



.about-us-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 0;
    color: #f9f9f9;
}

.founder-section {
    margin-top: 50px;
    padding: 50px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #003049;
}

.founder-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 30px;
}

.founder-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.founder-image img:hover {
    transform: scale(1.1);
}

.founder-info {
    max-width: 700px;
    text-align: right;
    font-size: 18px;
    color: #003049;
}
/* استعلامات الوسائط لجعل الصفحة متجاوبة */

/* الهواتف المحمولة */
@media only screen and (max-width: 600px) {

    .about-us-head {
        font-size: 28px;
    }

    .about-us-text {
        font-size: 16px;
    }

    .founder-section h2 {
        font-size: 24px;
    }

    .founder-details {
        flex-direction: column;
        align-items: center;
    }

    .founder-image img {
        width: 200px;
        height: 200px;
    }

    .founder-info {
        max-width: 90%;
        font-size: 16px;
        text-align: center;
    }
}

/* الأجهزة اللوحية */
@media only screen and (min-width: 601px) and (max-width: 1024px) {

    .about-us-head {
        font-size: 34px;
    }

    .founder-section h2 {
        font-size: 28px;
    }

    .founder-details {
        flex-direction: row;
        justify-content: space-around;
    }

    .founder-image img {
        width: 220px;
        height: 220px;
    }

    .founder-info {
        max-width: 80%;
        font-size: 18px;
    }
}

/* الشاشات الكبيرة (أجهزة الكمبيوتر المكتبية) */
@media only screen and (min-width: 1025px) {

    .about-us-head {
        font-size: 40px;
    }

    .founder-section h2 {
        font-size: 32px;
    }

    .founder-details {
        flex-direction: row;
        justify-content: center;
    }

    .founder-image img {
        width: 250px;
        height: 250px;
    }

    .founder-info {
        max-width: 700px;
        font-size: 18px;
    }
}

/****************************************************/
/* قسم نبذة عن الشركة */
.about-company {
    padding: 60px 20px;
    background-color: #f1f1f1;
    text-align: center;
}

.about-company .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-company p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #003049;
}

.company-values {
    margin-top: 40px;
    text-align: right;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.company-values h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #003049;
}

.company-values ul {
    list-style-type: none;
    padding: 0;
}

.company-values ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #003049;
}

.company-values ul li strong {
    color: #f77f00;
}

/* استعلامات الوسائط لجعل الصفحة متجاوبة */

/* الهواتف المحمولة */
@media only screen and (max-width: 600px) {

    .about-company p {
        font-size: 16px;
    }

    .company-values h3 {
        font-size: 22px;
    }

    .company-values ul li {
        font-size: 14px;
    }

}

/* الأجهزة اللوحية */
@media only screen and (min-width: 601px) and (max-width: 1024px) {

    .about-company p {
        font-size: 17px;
    }

    .company-values h3 {
        font-size: 26px;
    }

    .company-values ul li {
        font-size: 15px;
    }
}