/* تنسيقات شريط التنقل (Navbar) */
.navbar {
    background-color: #FFFFFF;
    /* تمت إزالة color: white; من هنا */
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
	top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-right: 25px;
}

.nav-links a {
    color: #000000; /* تم تصحيح الكود السداسي للون الأسود */
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f1c40f; /* لون أصفر عند التمرير أو للرابط النشط */
}

/* تعديل تنسيق الجسم لمنع المحتوى من الاختباء تحت الـ Navbar الثابت */
body {
    padding-top: 80px; /* يجب أن يكون هذا الارتفاع أكبر قليلاً من ارتفاع الـ Navbar */
    font-family: 'Arial', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

/* بقية الأنماط من الكود السابق تضاف هنا */
/* ... */

.contact-container {
    width: 90%;
    max-width: 600px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-container h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-container p {
    font-size: 1.1em;
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* تنسيق بطاقات التواصل */
.contact-card {
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-card a {
    color: white;
    text-decoration: none;
    display: block;
}

.contact-card i {
    font-size: 3em;
    margin-bottom: 15px;
}

.contact-card h2 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.contact-card p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ألوان البطاقات */
.telegram-card {
    background-color: #3498db; /* أزرق */
}

.email-card {
    background-color: #e74c3c; /* أحمر */
}
/* يمكن إضافة بطاقات أخرى بألوان مختلفة */
.telegram-card-extra {
    background-color: #2ecc71; /* أخضر */
}
.email-card-extra {
    background-color: #f1c40f; /* أصفر */
}