
section {
    text-align: justify;
    padding: 30px;
    margin: 20px auto;
    max-width: 800px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

h2 {
    color: #6a1b9a;
    border-bottom: 3px solid #ab47bc;
    padding-bottom: 10px;
    font-size: 2em;
    margin-bottom: 20px;
    animation: fadeInLeft 1s ease-in-out;
}

/* أنماط قسم المقدمة */
section.intro {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #275551, #F9C5D1); /* تدرج بين التكنولوجي والأنثوي */
    color: rgb(0, 0, 0);
    border-radius: 15px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

section.intro h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

section.intro p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #030303;
}

/* أنماط للقائمة (ul) */
ul.pr {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

/* أنماط لعناصر القائمة (li) */
ul.pr li {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* تأثيرات عند التمرير على العناصر (li) */
ul.pr li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* أنماط للروابط داخل العناصر (li) */
ul.pr li a {
    color: #275551; /* لون تكنولوجي */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

ul.pr li a:hover {
    color: #F9C5D1; /* لون أنثوي */
    text-decoration: underline;
}

a {
    color: #6a1b9a;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #ab47bc;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

