/* إعدادات عامة */
body {
    direction: rtl !important;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* شريط التنقل */
.navbar {
    padding: 0 !important;
    background: #ffffff;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    margin: 0;
}

.logo-img {
    height: 50px;
}

/* اسم الموقع */
.navbar-name {
    direction: rtl !important;
    color: #253f60;
    font-size: 40px !important;
    font-weight: bolder;
    margin: 0 1vh 2vh 0;
    padding: 0;
}

/* روابط النافبار */
.nav-item a {
    color: #5c938d !important;
    font-style: italic;
    font-size: large;
    cursor: pointer;
    transition: 0.3s;
}

.nav-item:hover a {
    color: #426680;
    text-decoration: underline;
}

/* قسم الأيقونات (اليسار) */
.navbar .left {
    direction: ltr;
    /* اتجاه النص للأيقونات من اليسار لليمين */
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 1vh 0;
}

/* كل أيقونة داخل القسم */
.navbar .left .icol {
    padding: 1vh;
    font-size: 20px;
    color: #253f60;
    cursor: pointer;
}

.navbar .left .icol:hover {
    color: #afb2b5;
    transition: 0.3s;
}

/* لتجميع الأيقونات التي تحتوي على نقطة تنبيه */
.navbar .left .icol .conta {
    position: relative;
}

/* النقطة الحمراء فوق جرس الإشعارات */
.navbar .left .icol .conta .dotted {
    position: absolute;
    top: 2px;
    right: -4px;
    color: #e10909;
    font-size: 11px;
}

/* زر القائمة المنسدلة */
.navbar-toggler {
    border-color: white;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}


/* ==== Footer ==== */
.ender {
    margin-top: 20px;
    padding: 10px 0;
    direction: rtl !important;
    color: white;
    background-image:
            radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
            linear-gradient(135deg, #033024, #109263);
    background-size: 20px 20px, cover;
    background-repeat: repeat;
    position: relative;
    overflow: hidden;
}

.brand-name {
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f4a261 !important;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    text-decoration: none;
    color: var(--most-color);
    transition: 0.3s;
}

.footer-links a:hover {
    color: #5c938d;
    text-decoration: underline;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.btn-success,
.btn-primary {
    background-color: #34ce99 !important;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background-color: #a9b1b7;
}

.developer-link {
    display: inline-block;
    color: #f4a261;
    font-weight: 500;
    text-decoration: underline;
    transition: 0.3s;
    margin-top: 10px;
}

.developer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* شعار واتسفي الهيدر */
.whatsapp-icon .conta {
    background-color: #25D366;
    border-radius: 50%;
    padding: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.whatsapp-icon i.fab.fa-whatsapp {
    color: white;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.whatsapp-icon .dotted {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 7px;
    color: red;
}

/* تأثير الهوفر */
.whatsapp-icon:hover .conta {
    background-color: #1ebe5d; /* درجة أغمق من الأخضر */
    transform: scale(1.05);
}

.whatsapp-icon:hover i.fab.fa-whatsapp {
    transform: scale(1.1);
}


a.whatsapp-icon {
    all: unset;
    display: inline-block;
    cursor: pointer;
}