/* الأنماط الأساسية للشريط التنقل والأيقونات */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #FE830D;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-item {
    padding: 0 50px;
    font-size: 70px;
    

}

a {
    color: white;
    text-decoration: none;
}

/* أنماط الأيقونات وروابط وسائل التواصل الاجتماعي */
.social-media {
    list-style-type: none;
    padding: 0 30px;
    margin: 0;
    display: flex;
    font-size:xx-large;
}

.social-media li {
    margin: 0 20px;
}

/* إضافة تأثير التموج (Ripple Effect) عند التحويل بالماوس */
.social-media a {
    position: relative;
    transition: color 0.3s;
}

.social-media a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
}

.social-media a:hover {
    color: rgb(238, 191, 4) /* تغيير اللون عند التحويل بالماوس */
}

.social-media a:hover:after {
    transform: scale(2);
    opacity: 0;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.a4-card {
    max-width: 210mm;
    margin: 20px auto;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.image-container {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.image-container img {
    width: 100%;
    height: auto;
}

.navigation {
    text-align: center;
    margin: 10px;
}

.prev-button,
.next-button {
    background-color: #007bff;
    color: white;
    border-radius: 40%;
    padding: 10px 20px;
    margin: 0 55px;
    font-size: 70px;
    cursor: pointer;
}

.prev-button:hover,
.next-button:hover {
    background-color:#FE830D;
}










-------------------

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.footer {
    background-color:#242222;
    color: white;
    text-align: center;
    padding: 20px;
}

.social-icons {
    list-style-type: none;
    padding: 0 50px;
    margin: 0 ;
}

.social-icons li {
    display: inline;
    margin: 0 10px;
}

.social-icons a {
    color: white;
    text-decoration: none;
}

/* تخصيص حجم الصور */
.social-icons img {
    width: 80px; /* حجم الصورة المناسب لأيقونات وسائل التواصل الاجتماعي الخاصة بك */
    height: 80px; /* حجم الصورة المناسب لأيقونات وسائل التواصل الاجتماعي الخاصة بك */
}

.social-icons a:hover {
    color: #007bff; /* تغيير اللون عند التحويل بالماوس */
}




/* تخصيص الأنماط للشاشات الصغيرة (متجاوب) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .nav-list {
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        padding: 10px 0;
    }

    .social-icons {
        margin-top: 20px;
        justify-content: center;
    }
}
